Logo Lanfrica
  • Home
  • Atlas
  • Insights
  • Docs
  • Sign in

© 2026 Lanfrica. All rights reserved. All copyrights of the resources shown on the Lanfrica website belong to the original copyright holders, unless explicitly stated otherwise.

etsebo-zm-nsr/openimis-be-zm_etl_zispis_py

Domain:

socioeconomic

Record type:

software
Creator:
ets
Host:
openIMIS backend ETL connector for ZISPIS (Zambia Social Registry). Thin connector over the api_etl core. # Zambia Social Registry — ZISPIS ETL connector `openimis-be-zm_etl_zispis` pulls individual and household records from the ZISPIS MIS into openIMIS. It is a **connector**: it owns only what is ZISPIS-specific — how that API paginates, how its fields map, and its own credentials. The sink, record linkage, sync state, scheduling, auth and HTTP plumbing all come from the shared `api_etl` core, so behaviour that must not diverge between sources (national-ID normalisation, household grouping, identity matching) has exactly one implementation. ## Layout | File | Purpose | |---|---| | `apps.py` | `DEFAULT_CONFIG` + registration into the `api_etl` registry | | `source.py` | offset pagination + incremental watermark parameter | | `adapter.py` | named type; the mapping itself is configuration | | `service.py` | binds source + adapter; everything else inherited | ## Install ```json { "name": "zm_etl_zispis", "pip": "-e /path/to/openimis-be-zm_etl_zispis_py" } ``` Must be listed **after** `api_etl` in `openimis.json`. ## Configure Edit the `zm_etl_zispis` `ModuleConfiguration` row. Never put a real credential in it — that table lands in every database backup. Use `"env:VAR_NAME"` and set the variable in the deployment environment: ```json { "auth": { "username": "zm-registry", "password": "env:ZISPIS_API_PASSWORD" }, "source": { "url": "zispis.example" } } ``` Config is deep-merged over the defaults, so a partial override keeps its siblings. ## Rights `953101` — trigger the ZISPIS sync. Granted to *IMIS Administrator* by migration `0001`.

Visit

github.com

Similar

etsebo-zm-nsr/openimis-be-zm_etl_kobo_py

etsebo-zm-nsr/openimis-be-zm_etl_kobo_py

openIMIS backend ETL connector for KoboToolbox (Zambia Social Registry). Thin connector over the api