A python software development kit with basic examples for using the
Project description
About
This SDK is meant to help users with basic queries to WattTime’s API (version 3), and to get data returned in specific formats (e.g., JSON, pandas, csv).
Users must first register for access to the WattTime API here.
Full documentation of WattTime's API, along with response samples and information about available endpoints is also available.
Configuration
The SDK can be installed as a python package, we recommend using an environment manager such as miniconda or venv.
git clone git@github.com:WattTime/watttime-python-client.git
pip install watttime-python-client/
Once registered for the WattTime API, you may set your credentials as environment variables to avoid passing these during class initialization:
# linux or mac
export WATTTIME_USER=<your WattTime API username>
export WATTTIME_PASSWORD=<your WattTime API password>
Once you have set your credentials as environment variables, you can omit passing username
and password
when instantiating sdk objects. For instance, in the example below, you could replace the second line with
wt_myaccess = WattTimeMyAccess()
Using the SDK
Users may first want to query the /v3/my-access
endpoint using the WattTimeMyAccess
class to get a dataframe of regions and signal types available to them:
from watttime import WattTimeMyAccess
wt_myaccess = WattTimeMyAccess(username, password)
# return a nested json describing signals and regions you have access to
wt_myaccess.get_access_json()
# return a pandas dataframe describing signals and regions you have access to
wt_myaccess.get_access_pandas()
Once you confirm your access, you may wish to request data for a particular balancing authority:
from watttime import WattTimeHistorical
wt_hist = WattTimeHistorical(username, password)
# get data as a pandas dataframe
moers = wt_hist.get_historical_pandas(
start = '2022-01-01 00:00Z', # ISO 8601 format, UTC
end = '2023-01-01 00:00Z', # ISO 8601 format, UTC
region = 'CAISO_NORTH',
signal_type = 'co2_moer' # ['co2_moer', 'co2_aoer', 'health_damage', etc.]
)
# save data as a csv -> ~/watttime_historical_csvs/<region>_<signal_type>_<start>_<end>.csv
wt_hist.get_historical_csv(
start = '2022-01-01 00:00Z', # ISO 8601 format, UTC
end = '2023-01-01 00:00Z', # ISO 8601 format, UTC
region = 'CAISO_NORTH',
signal_type = 'co2_moer' # ['co2_moer', 'co2_aoer', 'health_damage', etc.]
)
You could also combine these classes to iterate through all regions where you have access to data:
from watttime import WattTimeMyAccess, WattTimeHistorical
import pandas as pd
wt_myaccess = WattTimeMyAccess(username, password)
wt_hist = WattTimeHistorical(username, password)
access_df = wt_myaccess.get_access_pandas()
moers = pd.DataFrame()
moer_regions = access_df.loc[access_df['signal_type'] == 'co2_moer', 'region'].unique()
for region in moer_regions:
region_df = wt_hist.get_historical_pandas(
start = '2022-01-01 00:00Z',
end = '2023-01-01 00:00Z',
region = region,
signal_type = 'co2_moer'
)
moers = pd.concat([moers, region_df], axis='rows')
You can also use the SDK to request a current forecast for some signal types, such as co2_moer and health_damage:
from watttime import WattTimeForecast
wt_forecast = WattTimeForecast(username, password)
forecast = wt_forecast.get_forecast_json(
region = 'CAISO_NORTH',
signal_type = 'health_damage'
)
Methods also exist to request historical forecasts, however these responses may be slower as the volume of data can be significant:
hist_forecasts = wt_forecast.get_historical_forecast_json(
start = '2022-12-01 00:00+00:00',
end = '2022-12-31 23:59+00:00',
region = 'CAISO_NORTH',
signal_type = 'health_damage'
)
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
File details
Details for the file watttime-1.0.tar.gz
.
File metadata
- Download URL: watttime-1.0.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e24b67005c45f23e5f112e4742aa418456acd066aa19a62e6551c3062ec2cbbc |
|
MD5 | 35fbfe87463ca6801f51dc4d91154007 |
|
BLAKE2b-256 | 3236ee9433aecfc934a705bf3ef25cae374ae3fc403c68ac96c8e43450de67b5 |
File details
Details for the file watttime-1.0-py3-none-any.whl
.
File metadata
- Download URL: watttime-1.0-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42de8338b104e50420b5daaf294374909af3974769fc202436b8afa006fdc8e6 |
|
MD5 | 89fb94cd32931aa02033b6fd734818d8 |
|
BLAKE2b-256 | 64990bf7c2c403b01d5817d9314991a6f84f18a7b76f761a39ab5d9937bd032d |