-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apart from operating a single charge station, the Charge Amps API also allows controlling (part) of an organization's fleet of charge stations and users. Since this is most likely an uncommon usecase, I placed it behind a feature flag "organisations". This does not add support for CLI flags for accessing the API, but would be a nice future addition.
- Loading branch information
1 parent
c1e1a9b
commit e6b71b8
Showing
6 changed files
with
386 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,24 @@ This repository contains a Python module for the Charge Amps' electric vehicle c | |
|
||
The module is developed by [Kirei AB](https://www.kirei.se) and is not supported by [Charge Amps AB](https://chargeamps.com). | ||
|
||
## How to use | ||
|
||
The simplest way is to install via `pip`, as in: | ||
|
||
``` | ||
pip install chargeamps | ||
``` | ||
|
||
If you need access to the organisation API calls, you need to specify this feature upon installation: | ||
|
||
``` | ||
pip install chargeamps["organisations"] | ||
``` | ||
|
||
## External API Key | ||
|
||
You need an API key to use the Charge Amps external API. Contact [Charge Amps Support](mailto:[email protected]) for extensive API documentation and API key. | ||
|
||
|
||
## References | ||
|
||
- [Charge Amps External REST API](https://eapi.charge.space/swagger/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.