Skip to content

Commit dfab8c3

Browse files
committed
chore: update dir from src to myeia
1 parent 606e54c commit dfab8c3

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To find all EIA Datasets visit [API Dashboard](https://www.eia.gov/opendata/brow
2525
# How to use
2626

2727
```python
28-
from myeia import API
28+
from myeia.api import API
2929

3030
eia = API()
3131
```
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
from src.version import __version__
3+
from myeia.version import __version__
44

55
with open("README.md", "r") as ld:
66
long_description = ld.read()

tests/test_myeia.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import pandas as pd
22

3-
from src import myeia
3+
from myeia.api import API
44

55

66
def test_get_data():
7-
eia = myeia.API()
7+
eia = API()
88
df = eia.get_data(route="natural-gas/pri/fut", series="RNGC1", frequency="daily")
99
assert isinstance(df, pd.DataFrame)

0 commit comments

Comments
 (0)