Python Client for the IsoStream API
Project description
isostream
ISOStream API
A simple wrapper around the ISOStream API that produces JSON or well formated pandas DataFrames from query results. The the API client, methods, inputs and responses and all dynamically created from the OpenAPI specification of the IsoStream REST API.
Installation
You can install the library with:
pip install isostream
Quickstart
The ISOStream client is dynamically generated from the OpenAPI specification from the ISOStream API. See the ISOStream API Documentation for more details. All of the REST API endpoints available on client as methods.
`` from isostream import IsoStream
client = IsoStream("<your_api_key_>")
df = client.dalmp_node(node="WESTERN HUB", start="2021-01-01", end="2021-02-01", iso="PJM") ``
All string timestamps can also be provided as datetime objects.
To see a list of available API methods: `` client.api_methods()
or filter by a specific keyword to see only relevant methods:
client.api_methods(filter="dalmp") ``
By default, the client returns all queries in appropriated typed and logically pivoted pandas DataFrames.
You can alter this behavior with the 'as_df' and 'pivot' flags:
raw = client.meta_nodes(iso="PJM", as_df=False)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file isostream-1.0.1.tar.gz.
File metadata
- Download URL: isostream-1.0.1.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f88059d24593aeaf72aa4b8867e4d28d4b1d9d0f867d12f6e06a8bb5a51b685
|
|
| MD5 |
637fd3bf613f18e0a58f00341138d14e
|
|
| BLAKE2b-256 |
7e08842df57012b5db56eb6f0bd62a010062e45555ae428d4e02b151e3815c1b
|