No project description provided
Project description
🍕 Dodo IS API Wrapper
Installation
Via pip:
pip install dodo-is-api
Via poetry:
poetry add dodo-is-api
📝 Changelog is here.
🧪 Usage:
🌩️ Synchronous version:
from datetime import datetime
from uuid import UUID
import httpx
from dodo_is_api import models
from dodo_is_api.connection.synchronous import DodoISAPIConnection
def main():
access_token = 'your access token'
country_code = models.CountryCode.RU
from_date = datetime(2004, 10, 7)
to_date = datetime(2004, 10, 7, 23)
units = [UUID('ec81831c-b8a7-4ba8-a6aa-7ae7d0c4e0bb')]
with httpx.Client() as http_client:
connection = DodoISAPIConnection(
http_client=http_client,
access_token=access_token,
country_code=country_code,
)
stop_sales = connection.get_stop_sales_by_products(
from_date=from_date,
to_date=to_date,
units=units,
)
print(stop_sales)
if __name__ == '__main__':
main()
⚡️ Asynchronous version:
import asyncio
from datetime import datetime
from uuid import UUID
import httpx
from dodo_is_api import models
from dodo_is_api.connection.asynchronous import AsyncDodoISAPIConnection
async def main():
access_token = 'your access token'
country_code = models.CountryCode.RU
from_date = datetime(2004, 10, 7)
to_date = datetime(2004, 10, 7, 23)
units = [UUID('ec81831c-b8a7-4ba8-a6aa-7ae7d0c4e0bb')]
with httpx.AsyncClient() as http_client:
connection = AsyncDodoISAPIConnection(
http_client=http_client,
access_token=access_token,
country_code=country_code,
)
stop_sales = await connection.get_stop_sales_by_products(
from_date=from_date,
to_date=to_date,
units=units,
)
print(stop_sales)
if __name__ == '__main__':
asyncio.run(main())
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 Distribution
dodo_is_api-0.7.0.tar.gz
(9.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dodo_is_api-0.7.0.tar.gz.
File metadata
- Download URL: dodo_is_api-0.7.0.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.7 Darwin/22.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0cdbb9d430b64f63611c750dd55c685499cf2dc21972dce4abed481555ecded
|
|
| MD5 |
1fe3f03112864c2e46bf2ec9b0e425d7
|
|
| BLAKE2b-256 |
eec77dc8aa3e7808b1f5a978a07bc72c3be66aeb9fcbfb92f202bd4df26e8e6c
|
File details
Details for the file dodo_is_api-0.7.0-py3-none-any.whl.
File metadata
- Download URL: dodo_is_api-0.7.0-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.7 Darwin/22.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36d42bd78bb86b2b84c99375a3578585dc31c653351733d656fc4f9645baa605
|
|
| MD5 |
8c35a487aaacc4fe319e090f5509f93a
|
|
| BLAKE2b-256 |
d7fcfe6e8a78a20b3c184b9d6407711a40bad98cc4df5ba9b171c86b6027e886
|