| # | section | partner | is_total | is_section_total | year | period_start | value | unit | status |
|---|---|---|---|---|---|---|---|---|---|
| loading... | |||||||||
| COLUMN | TYPE | DESCRIPTION | UNIT |
|---|---|---|---|
| section | string | One of the nine SITC sections, or `Total Imports`, which the source prints in the same column as the sections it sums | - |
| partner | string | One of ten named countries, `Rest of the world`, or `Total` for the row's own printed total | - |
| is_total | bool | True for every row of the `Total Imports` section. Summing value without filtering on this returns exactly twice the import bill | - |
| is_section_total | bool | True for the row's printed `Total` column, which is the sum of its eleven partner columns | - |
| year | int64 | Calendar year the goods were imported in | - |
| period_start | date | First day of that calendar year | - |
| value | float64 | The figure as printed, in thousands of Kenya shillings | - |
| unit | string | Always ksh_thousand | - |
| status | string | final, or provisional for a year the source marks with an asterisk | - |
import imibare as imi
df = imi.load("ke.knbs.imports-by-sitc.annual")
print(df.head()) import duckdb
duckdb.sql("""
ATTACH 'https://catalog.cloudflarestorage.com/imibare-data'
AS imi (TYPE ICEBERG, READ_ONLY)
""")
duckdb.sql("SELECT * FROM imi.ke_knbs_imports-by-sitc_annual LIMIT 10").show() curl -L "https://api.imibare.org/v1/data/ke.knbs.imports-by-sitc.annual/download" \
-o "ke.knbs.imports-by-sitc.annual.parquet" # List all datasets
curl "https://api.imibare.org/v1/datasets"
# Get metadata for this dataset
curl "https://api.imibare.org/v1/datasets/ke.knbs.imports-by-sitc.annual" Every version is a change in the data, and every one is retained; snapshots are never overwritten. Each entry is a dated Parquet snapshot in the dataset's versions/ archive.
- 2026-08-26 Aug 26, 2026 LATEST1,200 rows · 15.4 KB · initial version
imibare contributors. (2026). Import Values by SITC Section and Principal Country of Origin [Data set]. imibare. v2026-08-26. https://imibare.org/datasets/ke.knbs.imports-by-sitc.annual
@dataset{imibare_ke_knbs_imports-by-sitc_annual, author = {imibare contributors}, title = {Import Values by SITC Section and Principal Country of Origin}, year = {2026}, publisher = {imibare}, version = {v2026-08-26}, url = {https://imibare.org/datasets/ke.knbs.imports-by-sitc.annual} }
imibare contributors. Import Values by SITC Section and Principal Country of Origin. v2026-08-26. imibare, 2026. https://imibare.org/datasets/ke.knbs.imports-by-sitc.annual.
imibare contributors. Import Values by SITC Section and Principal Country of Origin. v2026-08-26, imibare, 2026, https://imibare.org/datasets/ke.knbs.imports-by-sitc.annual.