Note: You are looking at a static snapshot of documentation related to Robot Framework automations. The most recent documentation is at https://robocorp.com/docs

Download the raw, unfiltered traffic data

To produce the traffic data work items for the consumer robot, you need first to get your hands on the raw source data. You open the producer.robot file and implement the download logic there:

producer.robot:

*** Settings *** Documentation Inhuman Insurance, Inc. Artificial Intelligence System robot. ... Produces traffic data work items. Library RPA.HTTP *** Tasks *** Produce traffic data work items Download traffic data *** Keywords *** Download traffic data Download ... https://github.com/robocorp/inhuman-insurance-inc/raw/main/RS_198.json ... ${OUTPUT_DIR}${/}traffic.json ... overwrite=True

Downloading the JSON file to the output folder (using the convenient ${OUTPUT_DIR} variable) enables viewing that file in the Control Room artifacts section.

You run the producer task. The traffic.json file is downloaded and stored inside the output folder. Now you have the raw data available!