Python SDK for interacting with the Evolve App Server
Project description
Evolve App Server Python Client
This library provides a wrapper to the Evolve App Server's API, allowing users of the evolve SDK to authenticate with the Evolve App Server and upload studies.
Usage
from geojson import FeatureCollection
from zepben.eas import EasClient, Study, Result, Section, GeoJsonOverlay
eas_client = EasClient(
host="<host>",
port=1234,
client_id="<client_id>",
username="<username>",
password="<password>",
client_secret="<client_secret>"
)
eas_client.upload_study(
Study(
name="<study name>",
description="<study description>",
tags=["<tag>", "<tag2>"],
results=[
Result(
name="<result_name>",
geo_json_overlay=GeoJsonOverlay(
data=FeatureCollection( ... ),
styles=["style1"]
),
sections=Section(
type="TABLE",
name="<table name>",
description = "<table description>",
columns=[
{ "key": "<column 1 key>", "name": "<column 1 name>" },
{ "key": "<column 2 key>", "name": "<column 2 name>" },
],
data=[
{ "<column 1 key>": "<column 1 row 1 value>", "<column 2 key>": "<column 2 row 1 value>" },
{ "<column 1 key>": "<column 1 row 2 value>", "<column 2 key>": "<column 2 row 2 value>" }
]
)
)
],
styles=[
{
"id": "style1",
# other Mapbox GL JS style properties
}
]
)
)
eas_client.close()
AsyncIO
Asyncio is also supported using aiohttp. A session will be created for you when you create an EasClient if not provided via the session
parameter to EasClient.
To use the asyncio API use async_upload_study
like so:
from aiohttp import ClientSession
from geojson import FeatureCollection
from zepben.eas import EasClient, Study, Result, Section, GeoJsonOverlay
async def upload():
eas_client = EasClient(
host="<host>",
port=1234,
client_id="<client_id>",
username="<username>",
password="<password>",
client_secret="<client_secret>",
session=ClientSession(...)
)
await eas_client.async_upload_study(
Study(
name="<study name>",
description="<study description>",
tags=["<tag>", "<tag2>"],
results=[
Result(
name="<result_name>",
geo_json_overlay=GeoJsonOverlay(
data=FeatureCollection( ... ),
styles=["style1"]
),
sections=Section(
type="TABLE",
name="<table name>",
description = "<table description>",
columns=[
{ "key": "<column 1 key>", "name": "<column 1 name>" },
{ "key": "<column 2 key>", "name": "<column 2 name>" },
],
data=[
{ "<column 1 key>": "<column 1 row 1 value>", "<column 2 key>": "<column 2 row 1 value>" },
{ "<column 1 key>": "<column 1 row 2 value>", "<column 2 key>": "<column 2 row 2 value>" }
]
)
)
],
styles=[
{
"id": "style1",
# other Mapbox GL JS style properties
}
]
)
)
await eas_client.aclose()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file zepben.eas-0.15.0-py3-none-any.whl
.
File metadata
- Download URL: zepben.eas-0.15.0-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fe4b13bcd0aa634438a8eab843abc10ed2b48241a3aaea928244d89ad4ae382 |
|
MD5 | 7fb75869057cc39f8112023de5fcbef7 |
|
BLAKE2b-256 | 12b6288449245b692cdaa9ac94c641fb2ad77bf91f2e5abdb57f9bb8d1d1a4fb |