Releases: philsv/myeia
Releases · philsv/myeia
0.4.6
Changes:
- Updated tests to remove dependency on external API calls by introducing mocked API responses.
- Adjusted GitHub Actions to use the mocked data for PRs originating from forked branches.
- Implemented a secret scanner to prevent the accidental inclusion of API keys in request/response mocks.
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
Add functionality for multiple facet search
Breaking Change:
- get_series_via_route is no longer able to handle multiple series
You can still create your own for loop outside of the function.
For example:
data = []
for item in ["RNGC1", "RNGC2"]:
df = eia.get_series_via_route(
route="natural-gas/pri/fut",
series=item,
frequency="daily",
facet="series",
)
data.append(df)
df = pd.concat(data, axis=1)
df.head()