Client + lifecycle¶
The async Dhis2Client is the entry point for every DHIS2 call. It owns the httpx connection pool, performs the version handshake on connect, binds the matching generated accessors, and exposes raw HTTP escape hatches for endpoints that don't have a typed wrapper yet.
When to reach for it¶
- Standalone PyPI use (no profile system) — instantiate
Dhis2Client(base_url, auth=...)directly. - Inside
dhis2w-coreintegrations — the canonical path isdhis2w_core.client_context.open_client(profile), which returns the sameDhis2Clientbut wraps profile resolution + cleanup. - Subclassing or wrapping for a custom workflow (the class is a
BaseModel-free regular async class, not frozen).
Worked example — standalone library use¶
import asyncio
from dhis2w_client import BasicAuth, Dhis2Client, RetryPolicy
import httpx
async def main() -> None:
"""Connect to DHIS2 via plain Basic auth + a retry policy + bigger pool."""
async with Dhis2Client(
base_url="https://play.im.dhis2.org/dev-2-43",
auth=BasicAuth("admin", "district"),
retry_policy=RetryPolicy(), # 429/5xx + connection errors
http_limits=httpx.Limits(max_connections=20, max_keepalive_connections=10),
) as client:
print(f"version_key = {client.version_key}") # 'v42' / 'v43' / 'v41'
print(f"raw_version = {client.raw_version}") # '2.43.0' etc.
me = await client.system.me()
print(f"as {me.username} ({me.displayName})")
asyncio.run(main())
Worked example — workspace-integrated use (dhis2w-core)¶
from dhis2w_core.client_context import open_client
from dhis2w_core.profile import profile_from_env
async with open_client(profile_from_env()) as client:
me = await client.system.me()
The two paths return the same Dhis2Client; open_client just resolves the profile + chooses the matching AuthProvider for you. Every example under examples/v42/client/ uses this form because the workspace has profiles configured.
Raw HTTP escape hatches¶
When an endpoint doesn't have a typed wrapper yet (or you want the literal wire shape for debugging), drop down to:
await client.get_raw(path, params=...)->dict[str, Any]await client.post_raw(path, body=..., params=...)->dict[str, Any]await client.put_raw(path, body=...)->dict[str, Any]await client.patch_raw(path, body=...)->dict[str, Any]await client.delete_raw(path)->dict[str, Any]await client.get(path, model=MyBaseModel)-> typed via your own pydantic modelawait client.get_response(path, params=..., extra_headers=...)->httpx.Response(no raise on 4xx/5xx)
Keep the use of raw helpers narrow — every typed accessor client.X.Y() is preferable for production code (the typed return is what makes the rest of the codebase work). The architecture page Client library covers the lifecycle states (unconnected -> connecting -> connected -> closed) and how connect() binds the version-specific accessors.
get_response is the only helper that bypasses the 4xx/5xx raise in _request. Use it when a non-2xx is a fact you want to report rather than an exception — health-checkers, SSO / proxy-page detection via Content-Type, or reverse-proxied routes under /api/routes/<code>/run/... where a 502 means "DHIS2 reached, downstream didn't".
Constructor knobs for non-default lifecycles¶
The defaults (verify=True, full version probe on connect(), raise on 4xx/5xx) suit typed-accessor flows. Three opt-in kwargs unlock other shapes:
verify: bool | str = True— TLS certificate verification. Threaded through the main httpx pool plus the canonical-URL and DHIS2-shape probes. PassFalsefor self-signed staging boxes or a path to a custom CA bundle.skip_version_probe: bool = False— whenTrue,connect()opens the HTTP pool without the canonical-URL probe or the/api/system/inforound-trip and returns.version_key,raw_version, andresourcesraise on access (the generated tree never binds), so only the raw-path methods (get_raw,post_raw,get_response, etc.) are usable. Suits health-checkers that want to report on those endpoints, very-low-privilege PATs that can't read/api/system/info, and tests injecting a mock transport.
See examples/v42/client/health_check.py for the full health-checker pattern.
client
¶
Async DHIS2 client with pluggable auth and version-aware generated dispatch.
Classes¶
Dhis2Client
¶
Async DHIS2 client for v42 (the canonical baseline); version is discovered via /api/system/info on connect.
This class's accessor attributes (self.metadata, self.apps, etc.)
are typed against the v42 hand-written tree (dhis2w_client.v42.*).
At runtime, connect() calls dhis2w_client._dispatch.rebind_accessors_for_version
which swaps the instances for v41 / v43 versions when the server
differs — so behaviour is correct, but the static types stay v42.
For static-type purity against a non-v42 server, import the per-version class explicitly:
from dhis2w_client.v43 import Dhis2Client # v43-typed accessors
from dhis2w_client.v41 import Dhis2Client # v41-typed accessors
The top-level from dhis2w_client import Dhis2Client re-exports this
v42 class for backwards compatibility — the runtime dispatch keeps it
correct against v41 / v43 stacks; only the static type chain is
v42-flavoured.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 | |
Attributes¶
base_url
property
¶
Root URL of the connected DHIS2 instance.
version_key
property
¶
Return the generated-client version key (e.g. "v42"); requires connect().
raw_version
property
¶
Return the raw version string reported by the server (e.g. "2.42.0").
resources
property
¶
Return the version-bound generated Resources accessor; requires connect().
system_cache
property
¶
Per-client TTL cache for system-level reads; None when caching is disabled.
Functions¶
__init__(base_url, auth, *, timeout=30.0, connect_timeout=60.0, allow_version_fallback=False, version=None, allow_version_mismatch=False, retry_policy=None, http_limits=None, system_cache_ttl=300.0, verify=True, skip_version_probe=False)
¶
Build a client. Call connect() or use as an async context manager before API calls.
version defaults to Dhis2.V42 — the workspace targets v42 and v43.
Set Dhis2.V43 to pin to v43 explicitly, or pass None to let the
client auto-detect via /api/system/info on connect(). Pinning
skips that round-trip and fails fast on a server version with no
matching generated module.
retry_policy (default: no retries) enables exponential-backoff
retries on transient failures — connection errors plus the status
codes listed on RetryPolicy.retry_statuses (default 429 / 502 /
503 / 504). Non-idempotent methods (POST, PATCH) are exempt unless
the policy sets retry_non_idempotent=True. See
dhis2w_client.retry.RetryPolicy for tuning knobs.
http_limits overrides the httpx connection-pool defaults (100
max connections, 20 keepalive). Raise them for high-concurrency
batch workflows; lower them to protect a small DHIS2 instance
from a large asyncio.gather. See
docs/architecture/client.md for guidance.
system_cache_ttl (default 300 s) caps how long cached system-level
reads (client.system.info(), the default categoryCombo UID, and
per-key system settings) stay fresh before the next call refetches.
Pass None to disable the cache entirely. connect() primes the
cache from the info fetch it already performs, so the first
client.system.info() after connect costs zero round-trips.
verify controls TLS certificate verification on every internal
httpx.AsyncClient (the main pool plus the canonical-URL and
DHIS2-shape probes). Pass False to disable verification (only
safe against self-signed staging boxes) or a path to a custom CA
bundle. Default True.
skip_version_probe (default False) opens the HTTP pool without
the two probes connect() normally runs (canonical-URL resolution
plus /api/system/info for version detection). Useful for
health-checkers that want to report on those endpoints rather
than have them raise, very-low-privilege PATs that can't read
/api/system/info, and tests that inject a mock transport. With
this flag set, version_key, raw_version, and resources raise
on access — only get_raw, post_raw, get_response, and
friends are usable.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |
__aenter__()
async
¶
__aexit__(exc_type, exc, tb)
async
¶
connect()
async
¶
Open the HTTP pool and bind the generated module matching the remote version.
With skip_version_probe=True, skips canonical-URL resolution and
the /api/system/info round-trip — leaves version_key,
raw_version, and resources unset (they raise on access) and
returns once the pool is open.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
close()
async
¶
get_raw(path, params=None)
async
¶
Raw GET returning parsed JSON; used internally and as an escape hatch.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
get_response(path, *, params=None, extra_headers=None)
async
¶
No-raise GET returning the raw httpx.Response; escape hatch for caller-side status logic.
Skips the 4xx/5xx raise block in _request so callers can inspect
status / headers / non-JSON bodies themselves. The auth header is
still applied. Use when:
- A 4xx / 5xx is a fact you want to report (health-checkers).
- You need the raw
Content-Type(SSO / proxy-page detection). - You're calling a reverse-proxied route under
/api/routes/<code>/run/...where a 502 means "DHIS2 reached, downstream didn't" rather than "API error".
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
get(path, model, params=None)
async
¶
Typed GET returning an instance of model parsed from JSON.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
post(path, body, *, model, params=None)
async
¶
Typed POST returning an instance of model parsed from JSON.
Used most often with model=WebMessageResponse to parse
/api/metadata envelopes into the typed summary shape without
a trailing WebMessageResponse.model_validate(raw) at the
call site.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
put(path, body, *, model, params=None)
async
¶
Typed PUT returning an instance of model parsed from JSON.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
patch(path, body, *, model, params=None, content_type='application/json-patch+json')
async
¶
Typed PATCH returning an instance of model parsed from JSON.
Used with model=WebMessageResponse for metadata patches so the
call site doesn't need a trailing WebMessageResponse.model_validate(raw).
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
delete(path, *, model, params=None)
async
¶
Typed DELETE returning an instance of model parsed from JSON.
Most callers use model=WebMessageResponse since DHIS2 deletes
return the standard envelope.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
post_raw(path, body=None, *, params=None)
async
¶
Raw POST returning parsed JSON.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
put_raw(path, body=None, *, params=None)
async
¶
Raw PUT returning parsed JSON.
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
delete_raw(path, *, params=None)
async
¶
Raw DELETE returning parsed JSON (or empty dict).
Source code in packages/dhis2w-client/src/dhis2w_client/v42/client.py
patch_raw(path, body, *, params=None, content_type='application/json-patch+json')
async
¶
Raw PATCH returning parsed JSON. Defaults to JSON Patch (RFC 6902) content type.