Sample Python Project for creating a new Python Async Client for a new API
Project description
Python Async API Client
This have in mind to start developing API clients for Home Assistant to be 100% asynchronous
How to Use it?
Fork this repository by using it as a template.
Structure
This package provides good defaults for any API client code that is split on the following modules:
errors.py
: module that define the custom errors the API and/or client would be returning to their users.model.py
: definition of the API data model. All returned objects from the clients would be defined here.client.py
: the logic around calling the API
Development
To start developing with this package, fork it, create a virtual environment and install all the dependencies needed for development.
python3 -m venv .venv
source .venv/bin/activate
pip install '.[dev]'
Best Practices
This package provides already an skeleton with some best practices when starting developing your API client.
- 100% async from the start: Home Assistant runs its main logic using an asynchronous engine, and having 3rd party clients running async can have performance benefits and ease of integration on new and existing components.
- A
aiohttp.ClientSession
should always to be a constructor argument (so a session and connection pool can be shared between multiple clients). The template already provides a class constructor to create the Client without any initialClientSession
in case it is not available. - The output of each API endpoint is a typed
Model
that is build as a dataclass and can be parsed from a JSON response or a nested dictionary. This ensures the consumer of the API outputs can take benefits from the benefits dataclasses provide like readaibility on its structure and field types. - The whole library is annotated with Python types so type checkers can help us detect errors early on rather than at runtime.
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
Built Distribution
Close
Hashes for project_async-0.0.1rc78.post1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d167f4b95c37138c5a061cad1d61fbce19b47a27e2d18f45d5ac85f50d2b98a0 |
|
MD5 | 5bffac9160124151459b749cfa41197e |
|
BLAKE2b-256 | e85eb0837bb31daf6d6c7e8b198d4fde9b7ffcc4a7d2da04183dafc577c98a39 |
Close
Hashes for project_async-0.0.1rc78.post1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 961582172bf90d1a174e368e21c77826654bf79b6ba5a5c75e3d53ebc07a26d3 |
|
MD5 | 13c22ccbcffccb5f993ac4bd3a691736 |
|
BLAKE2b-256 | ec33e92a8db2843e07df0c261fe92f8bda1dc1adf093e691d1ba0b52f3baaca4 |