Skip to content

End-to-end recipes

The end-to-end category covers full pipelines that compose every layer of the SDK: query → persist → analyse → render a report.

ID Title Runtime API key
RECIPE-111 India exports to report 4 – 8 s no
RECIPE-113 HS explorer to Markdown 4 – 8 s no

Path

  1. RECIPE-111India exports to report. Fetch India's 2022 exports, persist to Parquet, drill into the top-10 partners and HS chapters, render a Markdown report.
  2. RECIPE-113HS explorer to Markdown. Fetch HS-2 trade data for India, group by chapter, render a hierarchical Markdown table.

Run them all

for recipe in recipes/end_to_end/*.py; do
    UN_COMTRADE_MOCK=1 python "$recipe"
done

Next steps