-
Notifications
You must be signed in to change notification settings - Fork 79
OdkCentralAsync
svcfmtm edited this page Jul 29, 2024
·
4 revisions
::: 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
- 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()