Skip to content

Releases: philsv/myeia

0.4.6

21 Oct 00:35
Compare
Choose a tag to compare

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

08 Oct 07:54
Compare
Choose a tag to compare

Changes:

  • message for 403 errors.
  • backoff giveup condition.
  • Imported the API module into the package namespace.
  • Added a check for the presence of "NA" values in the DataFrame column specified by data_identifier.

0.4.4

25 Aug 21:42
Compare
Choose a tag to compare

Small change

0.4.3

25 Aug 21:40
Compare
Choose a tag to compare

Small change

0.4.2

22 Aug 22:09
Compare
Choose a tag to compare

Fix date issue for get_series()

0.4.1

01 Aug 20:50
Compare
Choose a tag to compare

Small changes

0.4.0

01 Aug 20:45
Compare
Choose a tag to compare

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()

0.3.6

31 May 21:59
Compare
Choose a tag to compare

Handle different kinds of facets

0.3.5

08 Sep 13:39
Compare
Choose a tag to compare

Fix facet bug

0.3.4

05 Sep 16:52
24d079b
Compare
Choose a tag to compare

Small changes