pychargecloud
Fetches data about public ev charge points from chargecloud.de
Used by Home Assistant Chargecloud Integration
Example:
import sys
import chargecloudapi
import aiohttp
import asyncio
import logging
async def main():
async with aiohttp.ClientSession() as session:
api = chargecloudapi.Api(session)
locations = await api.location_by_evse_id("DECCH*ECCH1800155EBG*2")
print(locations)
if __name__ == "__main__":
logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)
loop = asyncio.new_event_loop()
loop.run_until_complete(main())
See also src/main.py
Dev notes
To make a new release, use GitHub website and draft a release manually. Make sure the version number in pyproject.toml matches the new tag. GitHub Actions will publish it to pypi.
Release files for pychargecloud 0.2.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pychargecloud-0.2.6.tar.gz | 16.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pychargecloud-0.2.6-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 34.1 kB
Release files / pychargecloud-0.2.6.tar.gz
| Download URL | pychargecloud-0.2.6.tar.gz |
|---|---|
| Size | 16.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dc9a8c00691f3a963a96436c240be0c075e1152c38252dfefbc131a6817fd8ca
|
|
BLAKE2b-256 checksum How to use checksums |
474cf91f9728bdf03c2bc68a14a0302ab4cf63ee052e2f6c38cdb9f6421c660d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.23
|
Release files / pychargecloud-0.2.6-py3-none-any.whl
| Download URL | pychargecloud-0.2.6-py3-none-any.whl |
|---|---|
| Size | 17.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
65850391e38864b87b16ec1c6cfc10cb238d7c4369fb504ac74d76eac780fd26
|
|
BLAKE2b-256 checksum How to use checksums |
3a7d5e80c261ace609a610b924e9017b4446235c24b15658c839847f7a267937
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.23
|