Skip to content

OdkCentralAsync

svcfmtm edited this page Jul 29, 2024 · 4 revisions

OdkCentral

::: osm_fieldwork.OdkCentralAsync.OdkCentral options: show_source: false heading_level: 3

::: osm_fieldwork.OdkCentralAsync.OdkProject options: show_source: false heading_level: 3

::: osm_fieldwork.OdkCentralAsync.OdkDataset options: show_source: false heading_level: 3

Usage Example

  • An async context manager must be used (async with).
from osm_fieldwork.OdkCentralAsync import OdkProject

async with OdkProject(
    url="http://server.com",
    user="[email protected]",
    passwd="password",
) as odk_central:
    projects = await odk_central.listProjects()
Clone this wiki locally