Skip to content

Commit c336708

Browse files
authored
Merge pull request #198 from r24mille/142_fix_nvenergyclient
Fixes NVEnergyClient
2 parents 0a1f080 + 1668fc8 commit c336708

9 files changed

+147718
-3869
lines changed

pyiso/nvenergy.py

+6-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
except ImportError:
99
from urllib.error import HTTPError
1010
import pytz
11-
import calendar
1211

1312

1413
class NVEnergyClient(BaseClient):
@@ -97,16 +96,14 @@ def data_url(self, ts, mode=None):
9796
url_file = ts.strftime('tomorrow.htm')
9897
mode = 'tomorrow'
9998
elif mode == 'alternate':
100-
url_file = ts.strftime('native_system_load_and_ties_Y_for_%m_%d_%Y_.html')
99+
url_file = ts.strftime('native%%20system%%20load%%20and%%20ties_Y%m_%d_%Y.html')
101100
mode = 'recent'
102101
elif (ts.month == today.month and ts.year == today.year) or (today-this_day).days < 2:
103-
url_file = ts.strftime('native_system_load_and_ties_for_%m_%d_%Y_.html')
102+
url_file = ts.strftime('native%%20system%%20load%%20and%%20ties%m_%d_%Y.html')
104103
mode = 'recent'
105104
else:
106-
dummy, month_length = calendar.monthrange(ts.year, ts.month)
107-
url_file = 'Monthly_Ties_and_Loads_L_from_%02d_%02d_%04d_to_%02d_%02d_%04d_.html' % (
108-
ts.month, 1, ts.year,
109-
ts.month, month_length, ts.year
105+
url_file = 'Monthly%%20Ties%%20and%%20Loads_L%02d_%02d_%04d.html' % (
106+
ts.month, 1, ts.year
110107
)
111108
mode = 'historical'
112109

@@ -144,11 +141,11 @@ def fetch_df(self, this_date, url=None, mode=None):
144141
# pull one day of data out of full df
145142
full_df = dfs[1]
146143
date_row_idx = np.where(full_df.index == datestr)[0][0]
147-
df = full_df.iloc[date_row_idx:date_row_idx+13]
144+
df = full_df.iloc[date_row_idx:date_row_idx+14]
148145

149146
# set and slice header
150147
df.columns = df.iloc[1]
151-
df = df[2:]
148+
df = df[3:]
152149

153150
# return
154151
return df, mode

tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def fixture_path(ba_name, filename):
1515
def read_fixture(ba_name, filename, as_bytes=False):
1616
"""
1717
:param str ba_name: The balancing authority module name.
18-
:param str filename: The fixture file you wish to load.
18+
:param str filename: The fixture file (interpreted as a raw string literal) you wish to load.
1919
:param bool as_bytes: Indicates whether file should open with 'read bytes' mode.
2020
:return: The file's content.
2121
"""

tests/fixtures/nvenergy/Monthly Ties and Loads_L11_01_2017.html

+136,884
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)