diff --git a/config/zones/KR.yaml b/config/zones/KR.yaml index 4d4e428ed9..48cecdb1df 100644 --- a/config/zones/KR.yaml +++ b/config/zones/KR.yaml @@ -80,6 +80,7 @@ contributors: - alixunderplatz - IV1T3 - gadakast + - consideRatio country: KR delays: production: 5 diff --git a/config/zones/MX.yaml b/config/zones/MX.yaml index 676b21e9d9..aae7ec526c 100644 --- a/config/zones/MX.yaml +++ b/config/zones/MX.yaml @@ -55,6 +55,7 @@ capacity: value: 7320.0 contributors: - scriptator + - consideRatio country: MX emissionFactors: direct: diff --git a/parsers/CENACE.py b/parsers/CENACE.py index 5548ea75e7..78d5436cd3 100644 --- a/parsers/CENACE.py +++ b/parsers/CENACE.py @@ -142,9 +142,18 @@ def fetch_csv_for_date(dt, session: Session | None = None): # cleanup and parse the data df.columns = df.columns.str.strip() + + # transform 01-24 entries where 24 means 00 the next day df["Hora"] = df["Hora"].apply(lambda x: "00" if int(x) == 24 else f"{int(x):02d}") df["Dia"] = pd.to_datetime(df["Dia"], format="%d/%m/%Y") df.loc[df["Hora"] == "00", "Dia"] = df["Dia"] + pd.Timedelta(days=1) + + # The hour column has been seen at least once (3rd Nov 2024) to include 1-25 + # hours rather than the expected 1-24, due to this, we are for now dropping + # such entries if they show up + df = df.drop(df[df["Hora"] == "25"].index) + + # create datetime objects df["Dia"] = df["Dia"].dt.strftime("%d/%m/%Y") df["instante"] = pd.to_datetime(df["Dia"] + " " + df["Hora"], format="%d/%m/%Y %H") df["instante"] = df["instante"].dt.tz_localize(TIMEZONE) diff --git a/parsers/KPX.py b/parsers/KPX.py index 1a16c08142..8566604051 100644 --- a/parsers/KPX.py +++ b/parsers/KPX.py @@ -27,6 +27,12 @@ "https://new.kpx.or.kr/powerSource.es?mid=a10606030000&device=chart" ) +#### Classification of New & Renewable Energy Sources #### +# +# Source: https://cms.khnp.co.kr/eng/content/563/main.do?mnCd=EN040101 +# New energy: Hydrogen, Fuel Cell, Coal liquefied or gasified energy, and vacuum residue gasified energy, etc. +# Renewable: Solar, Wind power, Water power, ocean energy, Geothermal, Bio energy, etc. +# PRODUCTION_MAPPING = { "coal": "coal", "localCoal": "coal", @@ -34,16 +40,21 @@ "oil": "oil", "nuclearPower": "nuclear", "waterPower": "hydro", + "windPower": "wind", "sunlight": "solar", "newRenewable": "unknown", } - -STORAGE_MAPPING = {"raisingWater": "hydro"} - -#### Classification of New & Renewable Energy Sources #### -# Source: https://cms.khnp.co.kr/eng/content/563/main.do?mnCd=EN040101 -# New energy: Hydrogen, Fuel Cell, Coal liquefied or gasified energy, and vacuum residue gasified energy, etc. -# Renewable: Solar, Wind power, Water power, ocean energy, Geothermal, Bio energy, etc. +STORAGE_MAPPING = { + "raisingWater": "hydro", +} +IGNORE_LIST = [ + "ppa", + "btm", + "newRenewablePlusWindPower", + "once", + "regDate", + "seq", +] @use_proxy(country_code="KR") @@ -53,6 +64,7 @@ def fetch_consumption( target_datetime: datetime | None = None, logger: Logger = getLogger(__name__), ) -> list[dict]: + session = session or Session() if target_datetime: raise ParserException( "KPX.py", @@ -61,28 +73,27 @@ def fetch_consumption( ) logger.debug(f"Fetching consumption data from {REAL_TIME_URL}") - session = session or Session() response = session.get(REAL_TIME_URL, verify=False) - assert response.status_code == 200 + assert response.ok soup = BeautifulSoup(response.text, "html.parser") - consumption_title = soup.find("th", string=re.compile(r"\s*현재부하\s*")) - consumption_val = float( - consumption_title.find_next_sibling().text.split()[0].replace(",", "") - ) - consumption_date_list = soup.find("p", {"class": "info_top"}).text.split(" ")[:2] - consumption_date_list[0] = consumption_date_list[0].replace(".", "-").split("(")[0] - consumption_date = datetime.strptime( - " ".join(consumption_date_list), "%Y-%m-%d %H:%M" - ).replace(tzinfo=TIMEZONE) + # value_text looks like: 64,918 MW + value_text = soup.find("td", {"id": "load"}).text + value = float(value_text.split()[0].replace(",", "")) + + # dt_text looks like: 2025.01.05(일) 23:10 새로고침 + dt_text = soup.find("p", {"class": "info_top"}).text + dt_parts = dt_text.split(" ")[:2] + dt_string = dt_parts[0].split("(")[0] + " " + dt_parts[1] + dt = datetime.strptime(dt_string, "%Y.%m.%d %H:%M").replace(tzinfo=TIMEZONE) consumption_list = TotalConsumptionList(logger) consumption_list.append( zoneKey=zone_key, - datetime=consumption_date, + datetime=dt, source=KR_SOURCE, - consumption=consumption_val, + consumption=value, ) return consumption_list.to_list() @@ -96,6 +107,7 @@ def fetch_price( target_datetime: datetime | None = None, logger: Logger = getLogger(__name__), ) -> list[dict]: + session = session or Session() now = datetime.now(tz=TIMEZONE) target_datetime = ( now if target_datetime is None else target_datetime.astimezone(TIMEZONE) @@ -111,9 +123,8 @@ def fetch_price( ) logger.debug(f"Fetching price data from {PRICE_URL}") - session = session or Session() response = session.get(PRICE_URL, verify=False) - assert response.status_code == 200 + assert response.ok price_list = PriceList(logger) @@ -154,15 +165,8 @@ def parse_chart_prod_data( production_list = ProductionBreakdownList(logger) # Extract object with data - data_source = re.search(r"var ictArr = (\[\{.+\}\]);", raw_data).group(1) - # Un-quoted keys ({key:"value"}) are valid JavaScript but not valid JSON (which requires {"key":"value"}). - # Will break if other keys than these are introduced. Alternatively, use a JSON5 library (JSON5 allows un-quoted keys) - data_source = re.sub( - r'"(localCoal|newRenewable|oil|once|gas|nuclearPower|coal|regDate|raisingWater|waterPower|seq)"', - r'"\1"', - data_source, - ) - json_obj = json.loads(data_source) + json_string = re.search(r"var ictArr = (\[\{.+\}\]);", raw_data).group(1) + json_obj = json.loads(json_string) for item in json_obj: if item["regDate"] == "0": @@ -175,7 +179,7 @@ def parse_chart_prod_data( production_mix = ProductionMix() storage_mix = StorageMix() for item_key, item_value in item.items(): - if item_key == "regDate": + if item_key in IGNORE_LIST: continue elif item_key in PRODUCTION_MAPPING: production_mix.add_value( @@ -235,8 +239,7 @@ def get_historical_prod_data( logger.debug(f"Fetching production data from {HISTORICAL_PRODUCTION_URL}") res = session.post(HISTORICAL_PRODUCTION_URL, payload) - - assert res.status_code == 200 + assert res.ok return parse_chart_prod_data(res.text, zone_key, logger) @@ -249,6 +252,7 @@ def fetch_production( target_datetime: datetime | None = None, logger: Logger = getLogger(__name__), ) -> list[dict]: + session = session or Session() first_available_date = datetime(2021, 12, 22, 0, 0, 0, tzinfo=TIMEZONE) if target_datetime is not None and target_datetime < first_available_date: raise ParserException( @@ -257,12 +261,10 @@ def fetch_production( zone_key, ) - session = session or Session() if target_datetime is None: production_list = get_real_time_prod_data( zone_key=zone_key, session=session, logger=logger ) - else: production_list = get_historical_prod_data( zone_key=zone_key, diff --git a/parsers/test/__snapshots__/test_KPX.ambr b/parsers/test/__snapshots__/test_KPX.ambr index 5438ec17ce..6fc0482c26 100644 --- a/parsers/test/__snapshots__/test_KPX.ambr +++ b/parsers/test/__snapshots__/test_KPX.ambr @@ -1,10038 +1,11637 @@ # serializer version: 1 -# name: test_fetch_consumption +# name: test_fetch_consumption_realtime list([ dict({ - 'consumption': 78866.0, - 'datetime': datetime.datetime(2023, 9, 13, 17, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'consumption': 64918.0, + 'datetime': datetime.datetime(2025, 1, 5, 23, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'source': 'new.kpx.or.kr', 'sourceType': , 'zoneKey': 'KR', }), ]) # --- -# name: test_production_historical +# name: test_fetch_production_realtime list([ dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22908.953, - 'gas': 13844.6, - 'hydro': 903.194, - 'nuclear': 21038.2, - 'oil': 233.421, + 'coal': 14191.075, + 'gas': 21242.1, + 'hydro': 38.1576, + 'nuclear': 24132.1, + 'oil': 361.51, 'solar': 0.0, - 'unknown': 3591.31, + 'unknown': 3212.03, + 'wind': 440.859, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -516.098, + 'hydro': -1168.98, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22938.433, - 'gas': 13555.1, - 'hydro': 896.427, - 'nuclear': 21011.6, - 'oil': 232.243, + 'coal': 14190.524, + 'gas': 20873.5, + 'hydro': 36.1821, + 'nuclear': 24183.2, + 'oil': 361.527, 'solar': 0.0, - 'unknown': 3585.74, + 'unknown': 3214.68, + 'wind': 470.42, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -589.946, + 'hydro': -1165.73, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23041.143, - 'gas': 13276.3, - 'hydro': 916.608, - 'nuclear': 21025.6, - 'oil': 232.751, + 'coal': 14269.455, + 'gas': 20567.0, + 'hydro': 36.0934, + 'nuclear': 24169.9, + 'oil': 361.922, 'solar': 0.0, - 'unknown': 3580.93, + 'unknown': 3198.27, + 'wind': 461.526, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -340.346, + 'hydro': -1163.87, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23081.68, - 'gas': 13092.5, - 'hydro': 913.775, - 'nuclear': 21037.4, - 'oil': 233.916, + 'coal': 14152.906, + 'gas': 20524.3, + 'hydro': 36.0887, + 'nuclear': 24157.8, + 'oil': 361.538, 'solar': 0.0, - 'unknown': 3578.75, + 'unknown': 3181.6, + 'wind': 466.664, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -339.555, + 'hydro': -1038.83, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22909.484, - 'gas': 12739.8, - 'hydro': 916.159, - 'nuclear': 21036.2, - 'oil': 233.141, + 'coal': 14328.314, + 'gas': 20407.2, + 'hydro': 36.0563, + 'nuclear': 24189.1, + 'oil': 362.933, 'solar': 0.0, - 'unknown': 3585.31, + 'unknown': 3173.52, + 'wind': 478.882, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -316.703, + 'hydro': -693.423, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22966.015, - 'gas': 12579.7, - 'hydro': 916.721, - 'nuclear': 21020.4, - 'oil': 233.234, + 'coal': 14329.32, + 'gas': 20069.5, + 'hydro': 36.0797, + 'nuclear': 24170.2, + 'oil': 362.799, 'solar': 0.0, - 'unknown': 3589.98, + 'unknown': 3170.81, + 'wind': 463.816, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -329.967, + 'hydro': -691.803, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22810.238, - 'gas': 12370.4, - 'hydro': 916.446, - 'nuclear': 21037.5, - 'oil': 232.829, + 'coal': 14340.718, + 'gas': 19835.6, + 'hydro': 36.2887, + 'nuclear': 24199.9, + 'oil': 361.121, 'solar': 0.0, - 'unknown': 3587.11, + 'unknown': 3180.16, + 'wind': 462.251, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -305.277, + 'hydro': -694.062, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22660.447, - 'gas': 12195.8, - 'hydro': 915.268, - 'nuclear': 21039.3, - 'oil': 232.736, + 'coal': 14346.741, + 'gas': 19896.6, + 'hydro': 36.2017, + 'nuclear': 24151.4, + 'oil': 362.47, 'solar': 0.0, - 'unknown': 3597.75, + 'unknown': 3163.46, + 'wind': 468.733, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -303.092, + 'hydro': -399.7, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22802.104, - 'gas': 12057.4, - 'hydro': 917.746, - 'nuclear': 21029.8, - 'oil': 232.921, + 'coal': 14397.983, + 'gas': 19803.7, + 'hydro': 36.1953, + 'nuclear': 24147.0, + 'oil': 362.279, 'solar': 0.0, - 'unknown': 3600.07, + 'unknown': 3165.69, + 'wind': 461.708, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -335.48, + 'hydro': -399.101, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22701.316, - 'gas': 11852.1, - 'hydro': 914.957, - 'nuclear': 21031.1, - 'oil': 232.963, + 'coal': 14358.304, + 'gas': 19471.2, + 'hydro': 36.165, + 'nuclear': 24121.1, + 'oil': 362.252, 'solar': 0.0, - 'unknown': 3601.07, + 'unknown': 3164.28, + 'wind': 464.734, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -312.628, + 'hydro': -397.705, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22672.138, - 'gas': 11671.5, - 'hydro': 915.434, - 'nuclear': 21039.4, - 'oil': 233.214, + 'coal': 14350.904, + 'gas': 19210.3, + 'hydro': 36.1917, + 'nuclear': 24166.3, + 'oil': 361.124, 'solar': 0.0, - 'unknown': 3602.41, + 'unknown': 3171.72, + 'wind': 460.769, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -313.871, + 'hydro': -396.587, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 0, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 0, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22629.656, - 'gas': 11507.0, - 'hydro': 915.273, - 'nuclear': 21037.6, - 'oil': 233.604, + 'coal': 14435.728, + 'gas': 18670.9, + 'hydro': 36.1654, + 'nuclear': 24166.0, + 'oil': 362.496, 'solar': 0.0, - 'unknown': 3600.5, + 'unknown': 3177.62, + 'wind': 453.833, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -199.764, + 'hydro': -395.35, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22680.822, - 'gas': 11554.4, - 'hydro': 917.218, - 'nuclear': 21029.6, - 'oil': 232.666, + 'coal': 14471.603, + 'gas': 18609.3, + 'hydro': 36.2448, + 'nuclear': 24157.6, + 'oil': 362.67, 'solar': 0.0, - 'unknown': 3584.35, + 'unknown': 3175.42, + 'wind': 456.347, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': -243.001, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22596.407, - 'gas': 11538.1, - 'hydro': 915.729, - 'nuclear': 21030.7, - 'oil': 233.454, + 'coal': 14475.367, + 'gas': 18661.9, + 'hydro': 36.3584, + 'nuclear': 24156.1, + 'oil': 360.827, 'solar': 0.0, - 'unknown': 3583.21, + 'unknown': 3173.46, + 'wind': 450.406, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.30742, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22662.533, - 'gas': 11496.0, - 'hydro': 918.72, - 'nuclear': 21035.8, - 'oil': 232.218, + 'coal': 14494.358, + 'gas': 18465.5, + 'hydro': 36.2203, + 'nuclear': 24162.9, + 'oil': 361.19, 'solar': 0.0, - 'unknown': 3573.55, + 'unknown': 3175.65, + 'wind': 465.948, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': 13.6875, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22513.185, - 'gas': 11290.9, - 'hydro': 916.142, - 'nuclear': 21032.2, - 'oil': 232.794, + 'coal': 14614.655, + 'gas': 18171.0, + 'hydro': 39.3681, + 'nuclear': 24167.3, + 'oil': 362.781, 'solar': 0.0, - 'unknown': 3578.28, + 'unknown': 3172.11, + 'wind': 467.07, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': 263.156, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22523.333, - 'gas': 11000.5, - 'hydro': 918.401, - 'nuclear': 21022.5, - 'oil': 232.961, + 'coal': 14649.917, + 'gas': 17903.9, + 'hydro': 39.2688, + 'nuclear': 24150.6, + 'oil': 361.823, 'solar': 0.0, - 'unknown': 3565.86, + 'unknown': 3169.61, + 'wind': 473.956, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': 319.661, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22584.408, - 'gas': 11000.1, - 'hydro': 923.6, - 'nuclear': 21024.3, - 'oil': 233.034, + 'coal': 14691.644, + 'gas': 18197.8, + 'hydro': 39.3378, + 'nuclear': 24178.0, + 'oil': 362.212, 'solar': 0.0, - 'unknown': 3558.27, + 'unknown': 3162.46, + 'wind': 469.297, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50762, + 'hydro': 750.092, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22556.164, - 'gas': 10939.0, - 'hydro': 921.644, - 'nuclear': 21017.8, - 'oil': 233.258, + 'coal': 14758.653, + 'gas': 18476.2, + 'hydro': 39.3844, + 'nuclear': 24169.7, + 'oil': 362.154, 'solar': 0.0, - 'unknown': 3559.68, + 'unknown': 3169.86, + 'wind': 463.928, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.30742, + 'hydro': 1122.33, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22591.473, - 'gas': 10969.8, - 'hydro': 921.963, - 'nuclear': 21013.4, - 'oil': 233.464, + 'coal': 14676.438, + 'gas': 18811.1, + 'hydro': 39.3406, + 'nuclear': 24166.4, + 'oil': 362.113, 'solar': 0.0, - 'unknown': 3552.51, + 'unknown': 3163.81, + 'wind': 461.985, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.30742, + 'hydro': 1445.14, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22531.011, - 'gas': 10821.3, - 'hydro': 917.243, - 'nuclear': 21024.7, - 'oil': 233.445, + 'coal': 14776.08, + 'gas': 19150.4, + 'hydro': 39.3972, + 'nuclear': 24179.5, + 'oil': 362.655, 'solar': 0.0, - 'unknown': 3549.66, + 'unknown': 3170.49, + 'wind': 447.686, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.999805, + 'hydro': 1764.86, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22612.05, - 'gas': 10769.7, - 'hydro': 925.234, - 'nuclear': 21020.0, - 'oil': 232.55, + 'coal': 14694.186, + 'gas': 19086.6, + 'hydro': 39.3567, + 'nuclear': 24140.2, + 'oil': 362.72, 'solar': 0.0, - 'unknown': 3543.52, + 'unknown': 3175.53, + 'wind': 431.951, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.09966, + 'hydro': 1772.93, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22437.457, - 'gas': 10520.8, - 'hydro': 917.516, - 'nuclear': 21024.1, - 'oil': 233.215, + 'coal': 14647.789, + 'gas': 18789.5, + 'hydro': 39.3555, + 'nuclear': 24150.0, + 'oil': 362.101, 'solar': 0.0, - 'unknown': 3541.2, + 'unknown': 3177.2, + 'wind': 426.055, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.899951, + 'hydro': 1768.77, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 1, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 1, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22580.309, - 'gas': 10555.8, - 'hydro': 929.261, - 'nuclear': 21024.3, - 'oil': 232.677, + 'coal': 14733.222, + 'gas': 18719.4, + 'hydro': 39.2489, + 'nuclear': 24186.4, + 'oil': 362.519, 'solar': 0.0, - 'unknown': 3547.21, + 'unknown': 3182.56, + 'wind': 432.408, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 342.369, + 'hydro': 1952.31, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22748.751, - 'gas': 10613.8, - 'hydro': 922.483, - 'nuclear': 21028.0, - 'oil': 232.472, + 'coal': 14693.522, + 'gas': 18862.6, + 'hydro': 39.326, + 'nuclear': 24172.7, + 'oil': 361.968, 'solar': 0.0, - 'unknown': 3623.64, + 'unknown': 3187.62, + 'wind': 430.339, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 631.47, + 'hydro': 2104.96, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22790.83, - 'gas': 10728.1, - 'hydro': 918.194, - 'nuclear': 21027.0, - 'oil': 233.074, + 'coal': 14740.635, + 'gas': 18588.2, + 'hydro': 39.2935, + 'nuclear': 24169.1, + 'oil': 362.311, 'solar': 0.0, - 'unknown': 3635.64, + 'unknown': 3186.8, + 'wind': 436.087, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 641.114, + 'hydro': 2139.49, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22835.378, - 'gas': 10230.1, - 'hydro': 918.713, - 'nuclear': 21019.2, - 'oil': 232.943, + 'coal': 14735.524, + 'gas': 18774.6, + 'hydro': 39.4017, + 'nuclear': 24147.3, + 'oil': 362.954, 'solar': 0.0, - 'unknown': 3643.75, + 'unknown': 3187.13, + 'wind': 440.094, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 639.205, + 'hydro': 2362.89, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22973.235, - 'gas': 9954.98, - 'hydro': 920.206, - 'nuclear': 21011.1, - 'oil': 233.13, + 'coal': 14784.575, + 'gas': 18670.2, + 'hydro': 39.3569, + 'nuclear': 24176.9, + 'oil': 362.97, 'solar': 0.0, - 'unknown': 3644.67, + 'unknown': 3185.98, + 'wind': 423.166, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 637.734, + 'hydro': 2362.84, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22868.857, - 'gas': 10116.1, - 'hydro': 916.905, - 'nuclear': 21022.5, - 'oil': 233.043, + 'coal': 14682.459, + 'gas': 18336.4, + 'hydro': 39.2663, + 'nuclear': 24167.1, + 'oil': 362.396, 'solar': 0.0, - 'unknown': 3658.83, + 'unknown': 3185.55, + 'wind': 407.889, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 659.42, + 'hydro': 2362.9, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22761.722, - 'gas': 10383.8, - 'hydro': 920.219, - 'nuclear': 21006.0, - 'oil': 232.87, + 'coal': 14788.176, + 'gas': 18301.8, + 'hydro': 39.3441, + 'nuclear': 24171.9, + 'oil': 363.39, 'solar': 0.0, - 'unknown': 3667.92, + 'unknown': 3182.78, + 'wind': 414.812, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 845.45, + 'hydro': 2367.05, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22846.713, - 'gas': 10453.0, - 'hydro': 925.53, - 'nuclear': 21009.2, - 'oil': 233.608, + 'coal': 14807.431, + 'gas': 18604.8, + 'hydro': 39.617, + 'nuclear': 24138.1, + 'oil': 363.116, 'solar': 0.0, - 'unknown': 3665.5, + 'unknown': 3184.28, + 'wind': 416.764, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1165.58, + 'hydro': 2796.41, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22862.853, - 'gas': 10366.4, - 'hydro': 918.127, - 'nuclear': 21013.3, - 'oil': 233.967, + 'coal': 14695.139, + 'gas': 18450.2, + 'hydro': 39.4541, + 'nuclear': 24178.6, + 'oil': 362.282, 'solar': 0.0, - 'unknown': 3669.83, + 'unknown': 3190.45, + 'wind': 397.973, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1185.96, + 'hydro': 2798.87, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23086.51, - 'gas': 10386.3, - 'hydro': 928.378, - 'nuclear': 21000.6, - 'oil': 234.501, + 'coal': 14788.887, + 'gas': 18321.5, + 'hydro': 39.3653, + 'nuclear': 24177.2, + 'oil': 362.544, 'solar': 0.0, - 'unknown': 3679.21, + 'unknown': 3191.95, + 'wind': 405.127, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1523.29, + 'hydro': 2788.74, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23060.001, - 'gas': 10409.3, - 'hydro': 922.15, - 'nuclear': 20993.0, - 'oil': 233.943, + 'coal': 14695.884, + 'gas': 18175.4, + 'hydro': 39.3838, + 'nuclear': 24151.4, + 'oil': 361.964, 'solar': 0.0, - 'unknown': 3688.4, + 'unknown': 3194.68, + 'wind': 410.883, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1548.74, + 'hydro': 2789.84, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22996.375, - 'gas': 10255.8, - 'hydro': 916.227, - 'nuclear': 21010.4, - 'oil': 233.809, + 'coal': 14695.67, + 'gas': 17937.5, + 'hydro': 39.363, + 'nuclear': 24169.7, + 'oil': 320.95, 'solar': 0.0, - 'unknown': 3693.8, + 'unknown': 3193.64, + 'wind': 427.397, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1550.86, + 'hydro': 2792.56, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 2, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 2, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22752.437, - 'gas': 10013.8, - 'hydro': 905.551, - 'nuclear': 20991.4, - 'oil': 233.371, + 'coal': 14805.29, + 'gas': 17934.9, + 'hydro': 39.4119, + 'nuclear': 24134.4, + 'oil': 305.934, 'solar': 0.0, - 'unknown': 3703.1, + 'unknown': 3193.79, + 'wind': 439.239, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1227.1, + 'hydro': 2784.84, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22703.064, - 'gas': 9986.0, - 'hydro': 920.526, - 'nuclear': 20983.0, - 'oil': 232.101, + 'coal': 14705.931, + 'gas': 18006.2, + 'hydro': 39.4556, + 'nuclear': 24212.0, + 'oil': 279.553, 'solar': 0.0, - 'unknown': 3715.19, + 'unknown': 3191.97, + 'wind': 451.587, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1221.35, + 'hydro': 2793.69, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22644.175, - 'gas': 9871.57, - 'hydro': 914.427, - 'nuclear': 20974.4, - 'oil': 233.94, + 'coal': 14718.189, + 'gas': 18006.2, + 'hydro': 39.4651, + 'nuclear': 24149.0, + 'oil': 290.725, 'solar': 0.0, - 'unknown': 3718.35, + 'unknown': 3189.44, + 'wind': 459.863, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1223.54, + 'hydro': 2789.91, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22598.767, - 'gas': 9940.93, - 'hydro': 919.945, - 'nuclear': 20959.5, - 'oil': 232.953, + 'coal': 14582.49, + 'gas': 18003.0, + 'hydro': 39.4675, + 'nuclear': 24151.2, + 'oil': 288.24, 'solar': 0.0, - 'unknown': 3728.66, + 'unknown': 3193.77, + 'wind': 462.49, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1225.07, + 'hydro': 2791.12, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22565.326, - 'gas': 10045.3, - 'hydro': 919.4, - 'nuclear': 20986.7, - 'oil': 233.711, + 'coal': 14827.51, + 'gas': 17955.3, + 'hydro': 39.4332, + 'nuclear': 24144.9, + 'oil': 291.148, 'solar': 0.0, - 'unknown': 3737.59, + 'unknown': 3203.45, + 'wind': 466.616, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1223.0, + 'hydro': 3060.05, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22483.343, - 'gas': 9987.6, - 'hydro': 912.955, - 'nuclear': 20981.8, - 'oil': 233.46, + 'coal': 14710.301, + 'gas': 18175.1, + 'hydro': 39.4767, + 'nuclear': 24197.0, + 'oil': 290.235, 'solar': 0.0, - 'unknown': 3750.42, + 'unknown': 3195.73, + 'wind': 465.351, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1226.11, + 'hydro': 3100.4, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22579.889, - 'gas': 10102.7, - 'hydro': 919.885, - 'nuclear': 20965.3, - 'oil': 233.364, + 'coal': 14722.374, + 'gas': 18190.4, + 'hydro': 39.411, + 'nuclear': 24171.4, + 'oil': 289.782, 'solar': 0.0, - 'unknown': 3763.87, + 'unknown': 3199.28, + 'wind': 479.103, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1556.91, + 'hydro': 3098.65, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22600.16, - 'gas': 10148.5, - 'hydro': 915.215, - 'nuclear': 20962.8, - 'oil': 233.653, + 'coal': 14572.086, + 'gas': 18054.0, + 'hydro': 39.4818, + 'nuclear': 24165.9, + 'oil': 289.824, 'solar': 0.0, - 'unknown': 3777.19, + 'unknown': 3197.2, + 'wind': 494.02, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1576.82, + 'hydro': 3101.26, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22894.034, - 'gas': 10120.0, - 'hydro': 921.237, - 'nuclear': 20969.8, - 'oil': 233.114, + 'coal': 14696.645, + 'gas': 17773.0, + 'hydro': 39.4472, + 'nuclear': 24158.3, + 'oil': 290.177, 'solar': 0.0, - 'unknown': 3779.67, + 'unknown': 3203.43, + 'wind': 492.103, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1583.7, + 'hydro': 3093.01, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22960.917, - 'gas': 10091.0, - 'hydro': 914.431, - 'nuclear': 20966.6, - 'oil': 233.036, + 'coal': 14823.097, + 'gas': 17861.3, + 'hydro': 39.5763, + 'nuclear': 24165.5, + 'oil': 291.794, 'solar': 0.0, - 'unknown': 3797.79, + 'unknown': 3207.68, + 'wind': 488.163, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1973.77, + 'hydro': 3084.37, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22939.481, - 'gas': 10287.4, - 'hydro': 918.869, - 'nuclear': 20960.3, - 'oil': 233.838, + 'coal': 14726.755, + 'gas': 17964.4, + 'hydro': 39.3303, + 'nuclear': 24145.7, + 'oil': 290.261, 'solar': 0.0, - 'unknown': 3798.08, + 'unknown': 3211.85, + 'wind': 489.994, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1974.83, + 'hydro': 3094.06, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22945.114, - 'gas': 10188.4, - 'hydro': 916.919, - 'nuclear': 20947.6, - 'oil': 233.387, + 'coal': 14636.741, + 'gas': 18028.6, + 'hydro': 39.4254, + 'nuclear': 24178.1, + 'oil': 289.872, 'solar': 0.0, - 'unknown': 3807.87, + 'unknown': 3213.14, + 'wind': 492.009, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1973.13, + 'hydro': 3097.81, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 3, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 3, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22858.257, - 'gas': 10053.7, - 'hydro': 914.063, - 'nuclear': 20985.6, - 'oil': 232.425, + 'coal': 14701.459, + 'gas': 17916.9, + 'hydro': 39.3915, + 'nuclear': 24161.6, + 'oil': 291.226, 'solar': 0.0, - 'unknown': 3804.7, + 'unknown': 3215.35, + 'wind': 497.072, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1973.54, + 'hydro': 3091.93, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22813.236, - 'gas': 10154.9, - 'hydro': 915.895, - 'nuclear': 20981.2, - 'oil': 233.123, - 'solar': 13.2724, - 'unknown': 3809.74, + 'coal': 14748.136, + 'gas': 17857.0, + 'hydro': 47.3072, + 'nuclear': 24190.6, + 'oil': 290.64, + 'solar': 0.0, + 'unknown': 3211.28, + 'wind': 510.679, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1977.58, + 'hydro': 3088.26, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22693.475, - 'gas': 10201.8, - 'hydro': 916.49, - 'nuclear': 20955.6, - 'oil': 232.885, - 'solar': 14.3104, - 'unknown': 3806.17, + 'coal': 14729.739, + 'gas': 17944.8, + 'hydro': 48.7064, + 'nuclear': 24153.9, + 'oil': 290.467, + 'solar': 0.0, + 'unknown': 3214.07, + 'wind': 512.051, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1974.98, + 'hydro': 3121.96, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22890.955, - 'gas': 10053.5, - 'hydro': 912.207, - 'nuclear': 20961.6, - 'oil': 233.855, - 'solar': 14.3104, - 'unknown': 3808.91, + 'coal': 14722.703, + 'gas': 18350.0, + 'hydro': 48.8873, + 'nuclear': 24182.5, + 'oil': 290.046, + 'solar': 0.0, + 'unknown': 3213.25, + 'wind': 513.986, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1967.6, + 'hydro': 3423.24, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22952.471, - 'gas': 10111.0, - 'hydro': 913.066, - 'nuclear': 20962.4, - 'oil': 233.099, - 'solar': 13.9313, - 'unknown': 3813.08, + 'coal': 14697.844, + 'gas': 18161.6, + 'hydro': 49.2758, + 'nuclear': 24158.3, + 'oil': 290.102, + 'solar': 0.0, + 'unknown': 3212.61, + 'wind': 506.656, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1964.76, + 'hydro': 3420.25, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22704.578, - 'gas': 9998.75, - 'hydro': 910.253, - 'nuclear': 20966.0, - 'oil': 233.72, - 'solar': 13.1479, - 'unknown': 3818.03, + 'coal': 14699.083, + 'gas': 18190.5, + 'hydro': 50.1568, + 'nuclear': 24172.3, + 'oil': 289.5, + 'solar': 0.0, + 'unknown': 3203.26, + 'wind': 502.092, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1966.67, + 'hydro': 3417.15, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22751.1, - 'gas': 10068.3, - 'hydro': 913.646, - 'nuclear': 20960.3, - 'oil': 233.557, - 'solar': 14.2535, - 'unknown': 3822.17, + 'coal': 14640.634, + 'gas': 18097.8, + 'hydro': 48.9218, + 'nuclear': 24183.5, + 'oil': 289.247, + 'solar': 0.0, + 'unknown': 3203.92, + 'wind': 488.416, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1965.06, + 'hydro': 3418.97, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23002.691, - 'gas': 10200.6, - 'hydro': 916.09, - 'nuclear': 20957.3, - 'oil': 234.468, - 'solar': 13.877, - 'unknown': 3821.88, + 'coal': 14716.59, + 'gas': 18302.0, + 'hydro': 47.8385, + 'nuclear': 24190.8, + 'oil': 290.495, + 'solar': 0.0, + 'unknown': 3200.8, + 'wind': 490.07, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1968.35, + 'hydro': 3409.69, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22982.019, - 'gas': 10318.3, - 'hydro': 913.666, - 'nuclear': 20962.2, - 'oil': 233.952, - 'solar': 13.7207, - 'unknown': 3820.72, + 'coal': 14680.718, + 'gas': 18303.0, + 'hydro': 48.9115, + 'nuclear': 24149.4, + 'oil': 290.341, + 'solar': 0.0, + 'unknown': 3195.86, + 'wind': 483.873, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1963.73, + 'hydro': 3412.79, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22792.641, - 'gas': 10203.0, - 'hydro': 908.195, - 'nuclear': 20965.5, - 'oil': 234.134, - 'solar': 14.1723, - 'unknown': 3816.82, + 'coal': 14719.983, + 'gas': 18398.0, + 'hydro': 49.7902, + 'nuclear': 24158.4, + 'oil': 291.257, + 'solar': 0.0, + 'unknown': 3195.83, + 'wind': 478.861, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1968.08, + 'hydro': 3410.77, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22781.908, - 'gas': 10172.8, - 'hydro': 908.601, - 'nuclear': 20972.8, - 'oil': 233.51, - 'solar': 13.9179, - 'unknown': 3817.51, + 'coal': 14637.215, + 'gas': 18260.6, + 'hydro': 48.265, + 'nuclear': 24185.7, + 'oil': 289.287, + 'solar': 0.0, + 'unknown': 3197.83, + 'wind': 488.814, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1967.17, + 'hydro': 3413.35, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22931.14, - 'gas': 10362.2, - 'hydro': 911.604, - 'nuclear': 20981.3, - 'oil': 234.021, - 'solar': 13.2749, - 'unknown': 3819.66, + 'coal': 14695.546, + 'gas': 18396.5, + 'hydro': 48.0326, + 'nuclear': 24157.2, + 'oil': 289.397, + 'solar': 0.0, + 'unknown': 3200.93, + 'wind': 494.634, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1961.68, + 'hydro': 3408.92, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 4, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 4, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22854.252, - 'gas': 10387.5, - 'hydro': 910.003, - 'nuclear': 20989.6, - 'oil': 233.764, - 'solar': 14.8167, - 'unknown': 3816.58, + 'coal': 14630.773, + 'gas': 18657.9, + 'hydro': 48.31, + 'nuclear': 24184.3, + 'oil': 289.645, + 'solar': 0.0, + 'unknown': 3194.68, + 'wind': 492.765, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1965.51, + 'hydro': 3412.64, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22941.884, - 'gas': 10259.4, - 'hydro': 915.017, - 'nuclear': 20961.4, - 'oil': 233.913, - 'solar': 14.3421, - 'unknown': 3819.89, + 'coal': 14609.153, + 'gas': 18411.7, + 'hydro': 49.6208, + 'nuclear': 24175.1, + 'oil': 289.317, + 'solar': 0.0, + 'unknown': 3194.66, + 'wind': 505.327, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1958.83, + 'hydro': 2984.03, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22993.939, - 'gas': 10446.5, - 'hydro': 913.565, - 'nuclear': 20969.3, - 'oil': 234.046, - 'solar': 21.5336, - 'unknown': 3824.07, + 'coal': 14688.644, + 'gas': 18392.9, + 'hydro': 48.1514, + 'nuclear': 24144.8, + 'oil': 290.073, + 'solar': 0.0, + 'unknown': 3193.37, + 'wind': 497.255, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1962.18, + 'hydro': 2973.38, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23057.661, - 'gas': 10618.2, - 'hydro': 904.875, - 'nuclear': 20981.5, - 'oil': 233.882, - 'solar': 20.6069, - 'unknown': 3826.77, + 'coal': 14621.345, + 'gas': 18321.7, + 'hydro': 49.1691, + 'nuclear': 24153.9, + 'oil': 289.584, + 'solar': 0.0, + 'unknown': 3190.7, + 'wind': 502.937, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1963.77, + 'hydro': 2978.18, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22762.978, - 'gas': 10340.2, - 'hydro': 899.208, - 'nuclear': 21011.9, - 'oil': 234.061, - 'solar': 20.8437, - 'unknown': 3813.24, + 'coal': 14769.89, + 'gas': 18274.1, + 'hydro': 48.0088, + 'nuclear': 24166.6, + 'oil': 290.08, + 'solar': 0.0, + 'unknown': 3200.84, + 'wind': 497.331, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1548.86, + 'hydro': 2969.85, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23009.264, - 'gas': 10470.5, - 'hydro': 905.958, - 'nuclear': 20990.1, - 'oil': 233.101, - 'solar': 20.6732, - 'unknown': 3813.21, + 'coal': 14569.166, + 'gas': 18086.1, + 'hydro': 48.0314, + 'nuclear': 24186.3, + 'oil': 290.068, + 'solar': 0.0, + 'unknown': 3200.82, + 'wind': 470.329, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1545.28, + 'hydro': 2663.12, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22808.523, - 'gas': 10626.6, - 'hydro': 901.12, - 'nuclear': 20988.2, - 'oil': 234.32, - 'solar': 20.3991, - 'unknown': 3838.96, + 'coal': 14576.728, + 'gas': 17674.6, + 'hydro': 47.5713, + 'nuclear': 24149.4, + 'oil': 290.037, + 'solar': 0.0, + 'unknown': 3209.24, + 'wind': 469.556, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1546.0, + 'hydro': 2335.84, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22801.413, - 'gas': 10615.6, - 'hydro': 901.758, - 'nuclear': 20987.1, - 'oil': 233.922, - 'solar': 20.8724, - 'unknown': 3833.91, + 'coal': 14626.859, + 'gas': 17513.7, + 'hydro': 48.9161, + 'nuclear': 24198.8, + 'oil': 291.21, + 'solar': 0.0, + 'unknown': 3200.67, + 'wind': 457.452, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1545.11, + 'hydro': 2075.62, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22853.189, - 'gas': 10810.3, - 'hydro': 903.4, - 'nuclear': 20988.5, - 'oil': 233.233, - 'solar': 20.6112, - 'unknown': 3837.88, + 'coal': 14773.405, + 'gas': 17563.2, + 'hydro': 48.9603, + 'nuclear': 24159.7, + 'oil': 291.127, + 'solar': 0.0, + 'unknown': 3262.01, + 'wind': 438.202, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1543.86, + 'hydro': 2074.13, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23064.794, - 'gas': 10925.9, - 'hydro': 909.948, - 'nuclear': 20956.3, - 'oil': 233.556, - 'solar': 20.4901, - 'unknown': 3840.72, + 'coal': 14770.749, + 'gas': 17315.3, + 'hydro': 47.8982, + 'nuclear': 24153.1, + 'oil': 290.285, + 'solar': 0.0, + 'unknown': 3292.84, + 'wind': 435.451, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1542.06, + 'hydro': 1766.12, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22961.33, - 'gas': 10947.6, - 'hydro': 907.209, - 'nuclear': 20982.7, - 'oil': 234.543, - 'solar': 20.4734, - 'unknown': 3842.84, + 'coal': 14669.963, + 'gas': 17071.8, + 'hydro': 49.5586, + 'nuclear': 24149.9, + 'oil': 290.915, + 'solar': 0.0, + 'unknown': 3299.37, + 'wind': 422.452, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1541.33, + 'hydro': 1173.91, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22847.785, - 'gas': 11038.7, - 'hydro': 901.711, - 'nuclear': 20986.6, - 'oil': 234.307, - 'solar': 20.7031, - 'unknown': 3838.8, + 'coal': 14677.046, + 'gas': 17269.1, + 'hydro': 50.4952, + 'nuclear': 24174.4, + 'oil': 290.556, + 'solar': 0.0, + 'unknown': 3300.97, + 'wind': 412.971, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1542.14, + 'hydro': 1136.19, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 5, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 5, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22704.194, - 'gas': 11238.6, - 'hydro': 901.749, - 'nuclear': 21001.0, - 'oil': 233.171, - 'solar': 20.7771, - 'unknown': 3845.59, + 'coal': 14656.166, + 'gas': 16730.1, + 'hydro': 48.1058, + 'nuclear': 24167.2, + 'oil': 290.891, + 'solar': 0.0, + 'unknown': 3305.23, + 'wind': 396.479, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1543.37, + 'hydro': 639.264, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22913.381, - 'gas': 11449.5, - 'hydro': 927.439, - 'nuclear': 20984.7, - 'oil': 233.47, - 'solar': 20.4454, - 'unknown': 3838.42, + 'coal': 14607.146, + 'gas': 16677.6, + 'hydro': 48.689, + 'nuclear': 24175.7, + 'oil': 289.901, + 'solar': 8.2849, + 'unknown': 3314.66, + 'wind': 383.186, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1539.31, + 'hydro': 639.917, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23026.936, - 'gas': 11830.9, - 'hydro': 944.4, - 'nuclear': 20994.8, - 'oil': 233.067, - 'solar': 20.7108, - 'unknown': 3850.87, + 'coal': 14777.451, + 'gas': 16834.6, + 'hydro': 49.4709, + 'nuclear': 24168.9, + 'oil': 291.073, + 'solar': 8.28808, + 'unknown': 3324.62, + 'wind': 377.016, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1542.4, + 'hydro': 638.587, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22863.35, - 'gas': 11902.0, - 'hydro': 930.89, - 'nuclear': 20995.9, - 'oil': 233.031, - 'solar': 21.1791, - 'unknown': 3849.52, + 'coal': 14686.697, + 'gas': 16870.2, + 'hydro': 47.7793, + 'nuclear': 24192.9, + 'oil': 290.735, + 'solar': 7.60632, + 'unknown': 3328.11, + 'wind': 370.587, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1215.03, + 'hydro': 639.103, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22876.532, - 'gas': 12087.2, - 'hydro': 930.786, - 'nuclear': 21012.3, - 'oil': 232.192, - 'solar': 21.3822, - 'unknown': 3847.7, + 'coal': 14644.128, + 'gas': 16841.0, + 'hydro': 49.1992, + 'nuclear': 24158.0, + 'oil': 290.446, + 'solar': 8.19936, + 'unknown': 3330.64, + 'wind': 399.828, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1213.15, + 'hydro': 381.401, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22811.51, - 'gas': 12184.7, - 'hydro': 931.446, - 'nuclear': 20995.9, - 'oil': 231.933, - 'solar': 22.2722, - 'unknown': 3851.76, + 'coal': 14673.976, + 'gas': 16758.6, + 'hydro': 49.4636, + 'nuclear': 24171.8, + 'oil': 290.783, + 'solar': 8.10165, + 'unknown': 3327.75, + 'wind': 393.711, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 908.016, + 'hydro': 380.61, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22777.535, - 'gas': 12385.7, - 'hydro': 933.499, - 'nuclear': 20989.3, - 'oil': 231.372, - 'solar': 24.3191, - 'unknown': 3850.6, + 'coal': 14679.67, + 'gas': 16945.6, + 'hydro': 50.5755, + 'nuclear': 24175.1, + 'oil': 289.892, + 'solar': 7.63886, + 'unknown': 3333.13, + 'wind': 402.175, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 906.428, + 'hydro': 380.259, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22820.481, - 'gas': 12623.1, - 'hydro': 933.495, - 'nuclear': 21005.2, - 'oil': 232.082, - 'solar': 28.7164, - 'unknown': 3863.03, + 'coal': 14594.354, + 'gas': 16964.6, + 'hydro': 49.3215, + 'nuclear': 24184.4, + 'oil': 288.793, + 'solar': 7.75512, + 'unknown': 3335.56, + 'wind': 399.935, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 905.752, + 'hydro': 380.61, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22905.216, - 'gas': 12924.5, - 'hydro': 930.044, - 'nuclear': 20987.4, - 'oil': 231.623, - 'solar': 40.576, - 'unknown': 3864.4, + 'coal': 14671.482, + 'gas': 17219.9, + 'hydro': 50.0124, + 'nuclear': 24167.5, + 'oil': 289.915, + 'solar': 8.52564, + 'unknown': 3332.31, + 'wind': 398.118, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 907.837, + 'hydro': 380.61, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22821.618, - 'gas': 13079.4, - 'hydro': 932.116, - 'nuclear': 21005.1, - 'oil': 231.889, - 'solar': 56.2159, - 'unknown': 3850.35, + 'coal': 14727.151, + 'gas': 17165.3, + 'hydro': 48.4085, + 'nuclear': 24157.2, + 'oil': 290.743, + 'solar': 7.99887, + 'unknown': 3338.66, + 'wind': 398.172, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 907.772, + 'hydro': 379.863, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23069.908, - 'gas': 13161.6, - 'hydro': 946.032, - 'nuclear': 21003.1, - 'oil': 232.754, - 'solar': 77.6794, - 'unknown': 3854.44, + 'coal': 14772.489, + 'gas': 17262.6, + 'hydro': 50.0722, + 'nuclear': 24138.6, + 'oil': 290.03, + 'solar': 8.23244, + 'unknown': 3350.17, + 'wind': 403.184, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 903.596, + 'hydro': 379.863, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23056.439, - 'gas': 13448.3, - 'hydro': 933.88, - 'nuclear': 21008.3, - 'oil': 231.58, - 'solar': 104.674, - 'unknown': 3850.27, + 'coal': 14602.203, + 'gas': 17302.5, + 'hydro': 48.6016, + 'nuclear': 24174.7, + 'oil': 289.822, + 'solar': 8.34948, + 'unknown': 3345.03, + 'wind': 410.254, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 905.15, + 'hydro': 381.401, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 6, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 6, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23111.071, - 'gas': 13883.5, - 'hydro': 929.089, - 'nuclear': 21014.5, - 'oil': 232.687, - 'solar': 137.396, - 'unknown': 3846.07, + 'coal': 14727.253, + 'gas': 17106.5, + 'hydro': 49.6315, + 'nuclear': 24154.0, + 'oil': 290.832, + 'solar': 7.75305, + 'unknown': 3352.17, + 'wind': 412.101, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 904.614, + 'hydro': 379.116, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22916.071, - 'gas': 14017.6, - 'hydro': 923.634, - 'nuclear': 21014.7, - 'oil': 231.82, - 'solar': 175.106, - 'unknown': 3828.28, + 'coal': 14679.925, + 'gas': 17126.5, + 'hydro': 48.0471, + 'nuclear': 24135.2, + 'oil': 291.207, + 'solar': 8.62396, + 'unknown': 3352.27, + 'wind': 383.169, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 579.317, + 'hydro': -4.87793, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23111.008, - 'gas': 14329.0, - 'hydro': 943.322, - 'nuclear': 21008.6, - 'oil': 232.139, - 'solar': 221.164, - 'unknown': 3816.92, + 'coal': 14750.532, + 'gas': 17295.8, + 'hydro': 49.3261, + 'nuclear': 24141.4, + 'oil': 290.711, + 'solar': 8.53475, + 'unknown': 3353.47, + 'wind': 372.979, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 376.478, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23229.201, - 'gas': 14512.1, - 'hydro': 934.1, - 'nuclear': 21006.3, - 'oil': 232.339, - 'solar': 272.013, - 'unknown': 3811.15, + 'coal': 14839.293, + 'gas': 17600.1, + 'hydro': 49.317, + 'nuclear': 24177.1, + 'oil': 290.701, + 'solar': 8.45652, + 'unknown': 3356.54, + 'wind': 395.363, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 375.524, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23268.339, - 'gas': 14674.6, - 'hydro': 933.921, - 'nuclear': 21023.5, - 'oil': 232.299, - 'solar': 325.857, - 'unknown': 3804.44, + 'coal': 14657.483, + 'gas': 17693.5, + 'hydro': 49.0114, + 'nuclear': 24166.7, + 'oil': 290.964, + 'solar': 8.94349, + 'unknown': 3360.59, + 'wind': 401.083, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 376.271, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23272.622, - 'gas': 14942.8, - 'hydro': 932.331, - 'nuclear': 21008.3, - 'oil': 232.326, - 'solar': 374.01, - 'unknown': 3787.41, + 'coal': 14588.903, + 'gas': 17498.6, + 'hydro': 48.1119, + 'nuclear': 24149.5, + 'oil': 290.516, + 'solar': 8.68265, + 'unknown': 3359.37, + 'wind': 422.309, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 376.466, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23395.793, - 'gas': 15193.3, - 'hydro': 936.885, - 'nuclear': 21023.0, - 'oil': 232.488, - 'solar': 425.773, - 'unknown': 3776.64, + 'coal': 14744.932, + 'gas': 17479.6, + 'hydro': 49.1244, + 'nuclear': 24151.2, + 'oil': 291.013, + 'solar': 8.55931, + 'unknown': 3360.5, + 'wind': 424.279, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 375.875, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23449.431, - 'gas': 15641.6, - 'hydro': 943.498, - 'nuclear': 21008.9, - 'oil': 232.489, - 'solar': 483.597, - 'unknown': 3761.29, + 'coal': 14700.32, + 'gas': 17286.0, + 'hydro': 48.7974, + 'nuclear': 24166.5, + 'oil': 291.117, + 'solar': 9.22994, + 'unknown': 3360.49, + 'wind': 424.484, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 375.883, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23495.594, - 'gas': 15513.2, - 'hydro': 929.45, - 'nuclear': 21007.7, - 'oil': 232.946, - 'solar': 543.612, - 'unknown': 3746.04, + 'coal': 14693.073, + 'gas': 17477.4, + 'hydro': 48.0983, + 'nuclear': 24149.4, + 'oil': 290.409, + 'solar': 8.07907, + 'unknown': 3355.67, + 'wind': 434.858, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -2.60625, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23549.854, - 'gas': 15750.1, - 'hydro': 934.109, - 'nuclear': 21025.0, - 'oil': 232.581, - 'solar': 605.583, - 'unknown': 3736.41, + 'coal': 14536.17, + 'gas': 17256.1, + 'hydro': 47.9, + 'nuclear': 24160.8, + 'oil': 289.84, + 'solar': 8.8211, + 'unknown': 3364.44, + 'wind': 446.586, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23378.999, - 'gas': 15960.1, - 'hydro': 933.739, - 'nuclear': 21015.0, - 'oil': 233.097, - 'solar': 662.125, - 'unknown': 3721.42, + 'coal': 14713.636, + 'gas': 17291.6, + 'hydro': 48.8649, + 'nuclear': 24180.9, + 'oil': 290.589, + 'solar': 9.27977, + 'unknown': 3368.23, + 'wind': 452.669, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.30742, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23563.134, - 'gas': 16148.9, - 'hydro': 934.341, - 'nuclear': 21015.6, - 'oil': 231.761, - 'solar': 726.851, - 'unknown': 3713.81, + 'coal': 14667.559, + 'gas': 17580.9, + 'hydro': 48.7882, + 'nuclear': 24172.4, + 'oil': 289.872, + 'solar': 9.13717, + 'unknown': 3366.41, + 'wind': 463.027, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.999805, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 7, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 7, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23535.486, - 'gas': 16333.2, - 'hydro': 935.443, - 'nuclear': 21010.5, - 'oil': 232.995, - 'solar': 793.448, - 'unknown': 3698.33, + 'coal': 14636.139, + 'gas': 17853.3, + 'hydro': 49.5613, + 'nuclear': 24173.4, + 'oil': 289.345, + 'solar': 9.47443, + 'unknown': 3361.25, + 'wind': 468.075, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23799.813, - 'gas': 16786.0, - 'hydro': 1029.96, - 'nuclear': 21003.3, - 'oil': 232.01, - 'solar': 866.994, - 'unknown': 3682.35, + 'coal': 14761.259, + 'gas': 18016.5, + 'hydro': 113.055, + 'nuclear': 24157.5, + 'oil': 290.073, + 'solar': 9.87947, + 'unknown': 3363.52, + 'wind': 474.854, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.79961, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24029.552, - 'gas': 17295.6, - 'hydro': 1041.29, - 'nuclear': 21015.9, - 'oil': 232.238, - 'solar': 928.233, - 'unknown': 3668.94, + 'coal': 14665.232, + 'gas': 17810.0, + 'hydro': 353.224, + 'nuclear': 24173.3, + 'oil': 290.366, + 'solar': 11.041, + 'unknown': 3362.45, + 'wind': 478.814, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24094.418, - 'gas': 17573.2, - 'hydro': 1033.38, - 'nuclear': 21007.4, - 'oil': 232.348, - 'solar': 1031.01, - 'unknown': 3623.31, + 'coal': 14723.398, + 'gas': 17544.4, + 'hydro': 449.797, + 'nuclear': 24166.0, + 'oil': 293.08, + 'solar': 15.0904, + 'unknown': 3356.18, + 'wind': 494.362, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.899707, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24312.984, - 'gas': 17914.5, - 'hydro': 1038.94, - 'nuclear': 21012.6, - 'oil': 232.773, - 'solar': 1113.68, - 'unknown': 3602.88, + 'coal': 14799.977, + 'gas': 17797.6, + 'hydro': 409.347, + 'nuclear': 24171.6, + 'oil': 291.128, + 'solar': 18.3638, + 'unknown': 3354.46, + 'wind': 508.457, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.899707, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24216.765, - 'gas': 18084.6, - 'hydro': 1018.38, - 'nuclear': 21002.8, - 'oil': 232.331, - 'solar': 1203.87, - 'unknown': 3576.59, + 'coal': 14743.577, + 'gas': 17830.4, + 'hydro': 371.559, + 'nuclear': 24161.4, + 'oil': 290.246, + 'solar': 24.3175, + 'unknown': 3362.0, + 'wind': 508.579, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.09966, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24194.405, - 'gas': 18597.7, - 'hydro': 1033.72, - 'nuclear': 21012.7, - 'oil': 231.759, - 'solar': 1286.55, - 'unknown': 3542.12, + 'coal': 14678.755, + 'gas': 18015.8, + 'hydro': 392.474, + 'nuclear': 24189.5, + 'oil': 291.626, + 'solar': 34.629, + 'unknown': 3356.71, + 'wind': 515.061, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40728, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24245.197, - 'gas': 19118.7, - 'hydro': 1034.47, - 'nuclear': 21017.9, - 'oil': 232.242, - 'solar': 1360.22, - 'unknown': 3531.96, + 'coal': 14649.989, + 'gas': 18245.0, + 'hydro': 391.526, + 'nuclear': 24173.9, + 'oil': 294.834, + 'solar': 45.4197, + 'unknown': 3355.11, + 'wind': 522.871, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.999805, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24431.668, - 'gas': 19637.3, - 'hydro': 1038.85, - 'nuclear': 21018.9, - 'oil': 232.642, - 'solar': 1443.77, - 'unknown': 3519.0, + 'coal': 14717.842, + 'gas': 18499.0, + 'hydro': 392.857, + 'nuclear': 24182.0, + 'oil': 292.057, + 'solar': 60.0754, + 'unknown': 3347.44, + 'wind': 535.399, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.09966, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24323.158, - 'gas': 19788.6, - 'hydro': 1022.21, - 'nuclear': 21019.2, - 'oil': 232.688, - 'solar': 1541.51, - 'unknown': 3488.88, + 'coal': 14773.479, + 'gas': 18711.1, + 'hydro': 418.665, + 'nuclear': 24128.4, + 'oil': 291.557, + 'solar': 81.5168, + 'unknown': 3340.59, + 'wind': 526.627, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.09966, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24403.508, - 'gas': 19988.9, - 'hydro': 1024.22, - 'nuclear': 21028.6, - 'oil': 232.251, - 'solar': 1656.12, - 'unknown': 3456.22, + 'coal': 14733.828, + 'gas': 18748.7, + 'hydro': 403.837, + 'nuclear': 24168.2, + 'oil': 291.471, + 'solar': 97.46, + 'unknown': 3338.49, + 'wind': 548.63, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.20732, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24314.961, - 'gas': 19883.6, - 'hydro': 1014.86, - 'nuclear': 21007.5, - 'oil': 232.501, - 'solar': 1745.01, - 'unknown': 3444.12, + 'coal': 14744.424, + 'gas': 18881.6, + 'hydro': 402.98, + 'nuclear': 24172.7, + 'oil': 291.656, + 'solar': 121.118, + 'unknown': 3342.07, + 'wind': 591.885, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -201.754, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 8, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 8, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24339.798, - 'gas': 20176.3, - 'hydro': 1021.87, - 'nuclear': 21015.7, - 'oil': 233.106, - 'solar': 1822.87, - 'unknown': 3430.76, + 'coal': 14655.684, + 'gas': 18909.1, + 'hydro': 401.236, + 'nuclear': 24161.7, + 'oil': 289.86, + 'solar': 148.736, + 'unknown': 3334.82, + 'wind': 570.176, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -199.469, + 'hydro': 20.957, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24298.768, - 'gas': 20135.7, - 'hydro': 1005.86, - 'nuclear': 21007.1, - 'oil': 232.718, - 'solar': 1919.27, - 'unknown': 3406.77, + 'coal': 14567.097, + 'gas': 18982.3, + 'hydro': 466.645, + 'nuclear': 24156.5, + 'oil': 289.308, + 'solar': 181.836, + 'unknown': 3332.79, + 'wind': 556.178, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -201.007, + 'hydro': 32.6088, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24294.466, - 'gas': 20480.5, - 'hydro': 981.258, - 'nuclear': 21019.3, - 'oil': 232.66, - 'solar': 2007.82, - 'unknown': 3384.27, + 'coal': 14795.776, + 'gas': 18687.9, + 'hydro': 511.24, + 'nuclear': 24139.5, + 'oil': 290.883, + 'solar': 213.058, + 'unknown': 3327.95, + 'wind': 568.06, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -199.469, + 'hydro': -29.7058, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24299.535, - 'gas': 20421.7, - 'hydro': 983.337, - 'nuclear': 21021.6, - 'oil': 231.773, - 'solar': 2119.28, - 'unknown': 3345.61, + 'coal': 14588.011, + 'gas': 18448.6, + 'hydro': 536.358, + 'nuclear': 24175.1, + 'oil': 290.972, + 'solar': 239.274, + 'unknown': 3322.17, + 'wind': 567.861, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -409.921, + 'hydro': -18.3879, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24310.564, - 'gas': 20299.3, - 'hydro': 983.098, - 'nuclear': 21020.3, - 'oil': 232.527, - 'solar': 2262.66, - 'unknown': 3297.6, + 'coal': 14720.534, + 'gas': 18773.3, + 'hydro': 554.47, + 'nuclear': 24136.1, + 'oil': 290.041, + 'solar': 291.485, + 'unknown': 3340.71, + 'wind': 568.236, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -420.585, + 'hydro': -58.8004, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24325.17, - 'gas': 20355.3, - 'hydro': 988.446, - 'nuclear': 21010.1, - 'oil': 230.906, - 'solar': 2386.14, - 'unknown': 3259.45, + 'coal': 14817.175, + 'gas': 18872.4, + 'hydro': 544.932, + 'nuclear': 24183.9, + 'oil': 291.617, + 'solar': 304.006, + 'unknown': 3359.1, + 'wind': 590.229, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -417.664, + 'hydro': -42.4511, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24252.843, - 'gas': 20354.7, - 'hydro': 976.448, - 'nuclear': 21028.6, - 'oil': 231.732, - 'solar': 2489.65, - 'unknown': 3237.67, + 'coal': 14681.176, + 'gas': 19007.0, + 'hydro': 549.084, + 'nuclear': 24182.1, + 'oil': 290.886, + 'solar': 316.577, + 'unknown': 3357.15, + 'wind': 594.327, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -417.583, + 'hydro': -32.3917, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24240.619, - 'gas': 20354.8, - 'hydro': 989.42, - 'nuclear': 21005.1, - 'oil': 233.347, - 'solar': 2594.14, - 'unknown': 3209.98, + 'coal': 14709.72, + 'gas': 19190.6, + 'hydro': 569.188, + 'nuclear': 24161.9, + 'oil': 291.496, + 'solar': 356.198, + 'unknown': 3350.46, + 'wind': 573.938, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -418.582, + 'hydro': -64.1956, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24226.206, - 'gas': 20239.9, - 'hydro': 971.37, - 'nuclear': 21016.8, - 'oil': 233.094, - 'solar': 2712.31, - 'unknown': 3201.04, + 'coal': 14826.476, + 'gas': 19157.3, + 'hydro': 557.728, + 'nuclear': 24165.1, + 'oil': 292.214, + 'solar': 392.004, + 'unknown': 3346.1, + 'wind': 572.116, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -417.125, + 'hydro': -37.2565, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23955.794, - 'gas': 20123.9, - 'hydro': 959.183, - 'nuclear': 21005.5, - 'oil': 232.779, - 'solar': 2796.3, - 'unknown': 3187.1, + 'coal': 14718.005, + 'gas': 19201.8, + 'hydro': 548.785, + 'nuclear': 24159.2, + 'oil': 291.624, + 'solar': 427.566, + 'unknown': 3334.8, + 'wind': 554.453, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -411.681, + 'hydro': -23.5994, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23965.175, - 'gas': 20147.9, - 'hydro': 966.191, - 'nuclear': 21017.8, - 'oil': 233.21, - 'solar': 2944.3, - 'unknown': 3159.69, + 'coal': 14761.946, + 'gas': 19193.9, + 'hydro': 544.703, + 'nuclear': 24157.9, + 'oil': 291.668, + 'solar': 482.627, + 'unknown': 3323.33, + 'wind': 564.087, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -416.756, + 'hydro': -37.8255, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23833.672, - 'gas': 20189.7, - 'hydro': 956.031, - 'nuclear': 21007.4, - 'oil': 231.385, - 'solar': 3044.42, - 'unknown': 3150.65, + 'coal': 14732.1, + 'gas': 19200.5, + 'hydro': 552.747, + 'nuclear': 24181.2, + 'oil': 290.887, + 'solar': 526.981, + 'unknown': 3313.78, + 'wind': 537.997, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -411.234, + 'hydro': -37.126, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 9, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 9, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23768.628, - 'gas': 19957.2, - 'hydro': 964.672, - 'nuclear': 21008.7, - 'oil': 233.416, - 'solar': 3127.01, - 'unknown': 3144.21, + 'coal': 14598.156, + 'gas': 19238.8, + 'hydro': 543.062, + 'nuclear': 24194.1, + 'oil': 290.392, + 'solar': 590.959, + 'unknown': 3303.8, + 'wind': 528.816, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -415.065, + 'hydro': -31.4571, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23572.387, - 'gas': 19850.4, - 'hydro': 882.371, - 'nuclear': 21008.8, - 'oil': 233.735, - 'solar': 3199.22, - 'unknown': 3122.56, + 'coal': 14608.99, + 'gas': 19326.6, + 'hydro': 552.608, + 'nuclear': 24170.3, + 'oil': 291.081, + 'solar': 609.008, + 'unknown': 3298.74, + 'wind': 521.126, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -412.934, + 'hydro': -160.866, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23315.242, - 'gas': 19683.6, - 'hydro': 874.296, - 'nuclear': 21033.2, - 'oil': 231.985, - 'solar': 3355.96, - 'unknown': 3079.66, + 'coal': 14653.176, + 'gas': 19471.9, + 'hydro': 554.788, + 'nuclear': 24149.4, + 'oil': 290.837, + 'solar': 650.243, + 'unknown': 3217.88, + 'wind': 512.349, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -405.847, + 'hydro': -281.161, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23262.46, - 'gas': 20171.2, - 'hydro': 886.226, - 'nuclear': 21011.0, - 'oil': 248.189, - 'solar': 3464.57, - 'unknown': 3043.96, + 'coal': 14552.653, + 'gas': 19267.8, + 'hydro': 546.776, + 'nuclear': 24170.1, + 'oil': 290.654, + 'solar': 705.779, + 'unknown': 3213.01, + 'wind': 508.621, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -214.761, + 'hydro': -353.571, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23283.227, - 'gas': 20375.8, - 'hydro': 898.505, - 'nuclear': 21004.9, - 'oil': 256.945, - 'solar': 3556.77, - 'unknown': 2996.99, + 'coal': 14586.284, + 'gas': 19049.6, + 'hydro': 557.535, + 'nuclear': 24138.1, + 'oil': 290.797, + 'solar': 764.141, + 'unknown': 3203.88, + 'wind': 560.983, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -220.824, + 'hydro': -361.701, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23357.071, - 'gas': 20443.5, - 'hydro': 895.03, - 'nuclear': 21020.2, - 'oil': 236.664, - 'solar': 3699.84, - 'unknown': 2874.35, + 'coal': 14807.574, + 'gas': 19181.6, + 'hydro': 554.33, + 'nuclear': 24143.8, + 'oil': 291.537, + 'solar': 816.334, + 'unknown': 3198.86, + 'wind': 560.831, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -219.816, + 'hydro': -374.004, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23180.094, - 'gas': 20277.2, - 'hydro': 886.669, - 'nuclear': 21018.8, - 'oil': 233.152, - 'solar': 3814.88, - 'unknown': 2840.05, + 'coal': 14716.001, + 'gas': 19082.3, + 'hydro': 553.042, + 'nuclear': 24156.6, + 'oil': 291.525, + 'solar': 882.947, + 'unknown': 3197.13, + 'wind': 573.087, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -218.743, + 'hydro': -352.37, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23068.843, - 'gas': 20204.1, - 'hydro': 877.879, - 'nuclear': 21031.6, - 'oil': 233.034, - 'solar': 3815.97, - 'unknown': 2847.5, + 'coal': 14586.907, + 'gas': 19060.6, + 'hydro': 527.095, + 'nuclear': 24186.3, + 'oil': 291.109, + 'solar': 926.827, + 'unknown': 3193.53, + 'wind': 565.107, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -216.93, + 'hydro': -353.985, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22909.01, - 'gas': 20269.6, - 'hydro': 879.457, - 'nuclear': 21031.1, - 'oil': 233.707, - 'solar': 3926.41, - 'unknown': 2819.86, + 'coal': 14617.462, + 'gas': 19027.3, + 'hydro': 547.133, + 'nuclear': 24189.8, + 'oil': 291.215, + 'solar': 980.047, + 'unknown': 3181.74, + 'wind': 570.113, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -216.923, + 'hydro': -363.405, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22916.342, - 'gas': 20475.9, - 'hydro': 901.524, - 'nuclear': 21024.9, - 'oil': 232.979, - 'solar': 3996.47, - 'unknown': 2800.78, + 'coal': 14730.209, + 'gas': 18984.8, + 'hydro': 548.364, + 'nuclear': 24155.4, + 'oil': 291.326, + 'solar': 966.747, + 'unknown': 3164.57, + 'wind': 569.466, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.30742, + 'hydro': -429.023, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22921.763, - 'gas': 20341.2, - 'hydro': 893.648, - 'nuclear': 21024.9, - 'oil': 232.906, - 'solar': 4082.28, - 'unknown': 2780.3, + 'coal': 14684.161, + 'gas': 18880.6, + 'hydro': 551.981, + 'nuclear': 24177.4, + 'oil': 291.051, + 'solar': 1023.56, + 'unknown': 3153.59, + 'wind': 575.572, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.999805, + 'hydro': -372.251, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22977.844, - 'gas': 20362.5, - 'hydro': 900.818, - 'nuclear': 21026.6, - 'oil': 232.82, - 'solar': 4158.27, - 'unknown': 2753.13, + 'coal': 14668.104, + 'gas': 18638.1, + 'hydro': 551.368, + 'nuclear': 24201.4, + 'oil': 291.103, + 'solar': 1028.12, + 'unknown': 3145.27, + 'wind': 575.756, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.899707, + 'hydro': -158.265, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 10, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 10, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22775.636, - 'gas': 20195.2, - 'hydro': 886.276, - 'nuclear': 21035.4, - 'oil': 234.384, - 'solar': 4251.71, - 'unknown': 2718.5, + 'coal': 14720.015, + 'gas': 18687.3, + 'hydro': 554.062, + 'nuclear': 24170.2, + 'oil': 291.089, + 'solar': 1109.2, + 'unknown': 3126.36, + 'wind': 584.038, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.20732, + 'hydro': -154.36, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22498.578, - 'gas': 20062.0, - 'hydro': 880.7, - 'nuclear': 21042.2, - 'oil': 238.784, - 'solar': 4286.65, - 'unknown': 2717.62, + 'coal': 14691.904, + 'gas': 18897.2, + 'hydro': 575.413, + 'nuclear': 24149.2, + 'oil': 290.622, + 'solar': 1157.5, + 'unknown': 3122.68, + 'wind': 593.176, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.09966, + 'hydro': -196.818, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22392.149, - 'gas': 19736.9, - 'hydro': 889.539, - 'nuclear': 21033.5, - 'oil': 241.662, - 'solar': 4390.68, - 'unknown': 2691.23, + 'coal': 14574.746, + 'gas': 19156.6, + 'hydro': 539.535, + 'nuclear': 24199.1, + 'oil': 290.803, + 'solar': 1126.6, + 'unknown': 3139.82, + 'wind': 605.18, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.999805, + 'hydro': -135.023, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22183.236, - 'gas': 19830.8, - 'hydro': 890.757, - 'nuclear': 21017.8, - 'oil': 236.698, - 'solar': 4437.31, - 'unknown': 2683.08, + 'coal': 14508.208, + 'gas': 19175.4, + 'hydro': 552.111, + 'nuclear': 24174.2, + 'oil': 291.294, + 'solar': 1136.23, + 'unknown': 3120.12, + 'wind': 616.152, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.20732, + 'hydro': -133.773, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21813.962, - 'gas': 19855.5, - 'hydro': 895.391, - 'nuclear': 21021.2, - 'oil': 238.121, - 'solar': 4582.73, - 'unknown': 2679.68, + 'coal': 14649.322, + 'gas': 18979.4, + 'hydro': 556.676, + 'nuclear': 24159.4, + 'oil': 292.115, + 'solar': 1204.19, + 'unknown': 3105.95, + 'wind': 613.635, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.20732, + 'hydro': -167.962, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21609.876, - 'gas': 19977.0, - 'hydro': 885.335, - 'nuclear': 21019.7, - 'oil': 246.419, - 'solar': 4673.27, - 'unknown': 2662.41, + 'coal': 14642.678, + 'gas': 18996.2, + 'hydro': 538.153, + 'nuclear': 24160.6, + 'oil': 291.422, + 'solar': 1266.43, + 'unknown': 3105.49, + 'wind': 628.683, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.30742, + 'hydro': -143.448, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21285.135, - 'gas': 19919.8, - 'hydro': 886.234, - 'nuclear': 21029.4, - 'oil': 264.923, - 'solar': 4795.46, - 'unknown': 2625.36, + 'coal': 14461.491, + 'gas': 19262.8, + 'hydro': 529.975, + 'nuclear': 24191.9, + 'oil': 291.298, + 'solar': 1323.38, + 'unknown': 3100.45, + 'wind': 643.012, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.10723, + 'hydro': -120.466, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21034.558, - 'gas': 19737.7, - 'hydro': 851.448, - 'nuclear': 21026.6, - 'oil': 263.223, - 'solar': 4796.81, - 'unknown': 2636.38, + 'coal': 14547.047, + 'gas': 19070.7, + 'hydro': 503.623, + 'nuclear': 24172.2, + 'oil': 291.901, + 'solar': 1332.42, + 'unknown': 3091.66, + 'wind': 662.512, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.20732, + 'hydro': -149.156, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20736.034, - 'gas': 19722.2, - 'hydro': 852.701, - 'nuclear': 21028.6, - 'oil': 237.513, - 'solar': 4795.74, - 'unknown': 2622.48, + 'coal': 14628.722, + 'gas': 18870.7, + 'hydro': 508.818, + 'nuclear': 24175.6, + 'oil': 291.597, + 'solar': 1365.31, + 'unknown': 3061.47, + 'wind': 655.937, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 8.22047, + 'hydro': -181.837, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20594.542, - 'gas': 19869.8, - 'hydro': 853.62, - 'nuclear': 21023.7, - 'oil': 233.146, - 'solar': 4820.04, - 'unknown': 2597.55, + 'coal': 14484.815, + 'gas': 18880.1, + 'hydro': 500.667, + 'nuclear': 24146.2, + 'oil': 291.377, + 'solar': 1328.74, + 'unknown': 3058.06, + 'wind': 664.504, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 327.974, + 'hydro': -141.792, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20498.104, - 'gas': 19668.3, - 'hydro': 849.806, - 'nuclear': 21009.0, - 'oil': 233.358, - 'solar': 4928.32, - 'unknown': 2583.43, + 'coal': 14610.64, + 'gas': 19033.3, + 'hydro': 497.856, + 'nuclear': 24139.6, + 'oil': 291.562, + 'solar': 1325.33, + 'unknown': 3050.36, + 'wind': 668.964, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 335.906, + 'hydro': -180.468, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20304.412, - 'gas': 19413.6, - 'hydro': 847.451, - 'nuclear': 21012.1, - 'oil': 233.415, - 'solar': 4916.27, - 'unknown': 2597.66, + 'coal': 14454.209, + 'gas': 19137.8, + 'hydro': 490.207, + 'nuclear': 24153.5, + 'oil': 290.838, + 'solar': 1271.88, + 'unknown': 3020.04, + 'wind': 660.095, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 360.997, + 'hydro': -126.47, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 11, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 11, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20119.292, - 'gas': 19505.0, - 'hydro': 849.896, - 'nuclear': 21021.6, - 'oil': 231.824, - 'solar': 4994.97, - 'unknown': 2572.76, + 'coal': 14596.9, + 'gas': 18915.0, + 'hydro': 516.52, + 'nuclear': 24162.3, + 'oil': 293.089, + 'solar': 1205.68, + 'unknown': 3031.19, + 'wind': 667.727, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 703.403, + 'hydro': -149.574, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 19933.018, - 'gas': 19412.6, - 'hydro': 850.273, - 'nuclear': 21021.4, - 'oil': 233.887, - 'solar': 5089.53, - 'unknown': 2545.3, + 'coal': 14595.607, + 'gas': 19094.8, + 'hydro': 430.18, + 'nuclear': 24150.8, + 'oil': 291.447, + 'solar': 1224.46, + 'unknown': 3043.51, + 'wind': 667.711, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 908.985, + 'hydro': 57.1039, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20067.798, - 'gas': 19312.8, - 'hydro': 882.901, - 'nuclear': 21038.8, - 'oil': 233.524, - 'solar': 5090.95, - 'unknown': 2566.43, + 'coal': 14686.684, + 'gas': 19035.6, + 'hydro': 416.175, + 'nuclear': 24161.7, + 'oil': 292.526, + 'solar': 1164.25, + 'unknown': 3029.43, + 'wind': 674.552, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1151.04, + 'hydro': 95.9953, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20002.405, - 'gas': 19321.2, - 'hydro': 890.994, - 'nuclear': 21014.0, - 'oil': 233.192, - 'solar': 5060.54, - 'unknown': 2622.9, + 'coal': 14615.159, + 'gas': 19153.8, + 'hydro': 411.622, + 'nuclear': 24169.4, + 'oil': 292.301, + 'solar': 1158.78, + 'unknown': 3026.13, + 'wind': 664.976, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1246.87, + 'hydro': 98.6626, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20163.36, - 'gas': 18932.9, - 'hydro': 914.288, - 'nuclear': 21025.6, - 'oil': 233.507, - 'solar': 5116.24, - 'unknown': 2629.92, + 'coal': 14654.952, + 'gas': 19043.2, + 'hydro': 414.848, + 'nuclear': 24153.0, + 'oil': 291.867, + 'solar': 1190.02, + 'unknown': 3016.21, + 'wind': 673.973, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1241.83, + 'hydro': 93.0684, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 19992.882, - 'gas': 19060.9, - 'hydro': 856.88, - 'nuclear': 21023.5, - 'oil': 234.224, - 'solar': 5172.4, - 'unknown': 2645.37, + 'coal': 14627.149, + 'gas': 18954.6, + 'hydro': 413.318, + 'nuclear': 24155.2, + 'oil': 290.886, + 'solar': 1249.97, + 'unknown': 3026.98, + 'wind': 678.07, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1269.8, + 'hydro': 108.86, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 19916.488, - 'gas': 19329.0, - 'hydro': 910.889, - 'nuclear': 21023.9, - 'oil': 233.693, - 'solar': 5206.12, - 'unknown': 2648.76, + 'coal': 14680.197, + 'gas': 19135.1, + 'hydro': 432.96, + 'nuclear': 24180.2, + 'oil': 290.742, + 'solar': 1373.18, + 'unknown': 3000.4, + 'wind': 660.871, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1655.73, + 'hydro': 298.502, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 19982.088, - 'gas': 19112.0, - 'hydro': 903.05, - 'nuclear': 21028.8, - 'oil': 234.993, - 'solar': 5201.7, - 'unknown': 2645.0, + 'coal': 14576.466, + 'gas': 19146.8, + 'hydro': 408.433, + 'nuclear': 24177.9, + 'oil': 291.033, + 'solar': 1364.36, + 'unknown': 2990.25, + 'wind': 658.96, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1651.46, + 'hydro': 301.387, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 19957.615, - 'gas': 19157.2, - 'hydro': 877.041, - 'nuclear': 21015.9, - 'oil': 235.598, - 'solar': 5224.77, - 'unknown': 2652.51, + 'coal': 14577.198, + 'gas': 19188.4, + 'hydro': 429.221, + 'nuclear': 24195.0, + 'oil': 290.692, + 'solar': 1352.64, + 'unknown': 2971.24, + 'wind': 678.654, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1650.43, + 'hydro': 303.134, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 19860.863, - 'gas': 19151.4, - 'hydro': 893.316, - 'nuclear': 21016.1, - 'oil': 234.692, - 'solar': 5172.07, - 'unknown': 2665.38, + 'coal': 14635.534, + 'gas': 19124.3, + 'hydro': 394.37, + 'nuclear': 24172.8, + 'oil': 291.477, + 'solar': 1392.76, + 'unknown': 2972.93, + 'wind': 679.101, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1653.71, + 'hydro': 288.461, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 19949.37, - 'gas': 19121.6, - 'hydro': 892.813, - 'nuclear': 21033.5, - 'oil': 235.0, - 'solar': 5192.14, - 'unknown': 2681.03, + 'coal': 14600.853, + 'gas': 19063.5, + 'hydro': 373.054, + 'nuclear': 24181.4, + 'oil': 291.232, + 'solar': 1378.99, + 'unknown': 2982.04, + 'wind': 693.453, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1651.1, + 'hydro': 300.964, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20120.64, - 'gas': 19183.4, - 'hydro': 917.62, - 'nuclear': 21009.2, - 'oil': 233.382, - 'solar': 5198.02, - 'unknown': 2705.32, + 'coal': 14698.863, + 'gas': 19327.3, + 'hydro': 390.183, + 'nuclear': 24175.2, + 'oil': 291.041, + 'solar': 1432.5, + 'unknown': 2960.5, + 'wind': 710.2, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1645.61, + 'hydro': 301.818, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 12, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 12, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20083.426, - 'gas': 19144.7, - 'hydro': 915.343, - 'nuclear': 21029.9, - 'oil': 233.265, - 'solar': 5293.94, - 'unknown': 2700.59, + 'coal': 14714.31, + 'gas': 19222.2, + 'hydro': 371.566, + 'nuclear': 24144.1, + 'oil': 291.346, + 'solar': 1422.53, + 'unknown': 2944.84, + 'wind': 704.391, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1653.16, + 'hydro': 283.424, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20289.844, - 'gas': 19427.9, - 'hydro': 917.044, - 'nuclear': 21017.5, - 'oil': 234.335, - 'solar': 5260.5, - 'unknown': 2749.34, + 'coal': 14686.642, + 'gas': 19242.3, + 'hydro': 370.812, + 'nuclear': 24175.2, + 'oil': 290.89, + 'solar': 1399.71, + 'unknown': 2958.97, + 'wind': 723.143, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1322.76, + 'hydro': 293.589, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20331.763, - 'gas': 19480.7, - 'hydro': 958.656, - 'nuclear': 21027.1, - 'oil': 233.905, - 'solar': 5248.5, - 'unknown': 2792.22, + 'coal': 14757.046, + 'gas': 19230.5, + 'hydro': 373.023, + 'nuclear': 24177.4, + 'oil': 290.839, + 'solar': 1372.99, + 'unknown': 2980.89, + 'wind': 701.737, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 703.152, + 'hydro': 287.116, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20472.564, - 'gas': 19681.1, - 'hydro': 961.688, - 'nuclear': 21034.4, - 'oil': 235.648, - 'solar': 5207.77, - 'unknown': 2833.81, + 'coal': 14759.703, + 'gas': 19452.9, + 'hydro': 373.245, + 'nuclear': 24182.4, + 'oil': 292.024, + 'solar': 1411.2, + 'unknown': 2990.37, + 'wind': 660.967, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 702.718, + 'hydro': 304.446, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20576.456, - 'gas': 19765.7, - 'hydro': 959.744, - 'nuclear': 21030.0, - 'oil': 235.95, - 'solar': 5244.68, - 'unknown': 2878.62, + 'coal': 14691.241, + 'gas': 19414.1, + 'hydro': 364.769, + 'nuclear': 24192.7, + 'oil': 290.438, + 'solar': 1486.77, + 'unknown': 2943.59, + 'wind': 654.307, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 702.062, + 'hydro': 306.963, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20652.643, - 'gas': 19973.1, - 'hydro': 959.823, - 'nuclear': 21032.0, - 'oil': 235.403, - 'solar': 5218.25, - 'unknown': 2929.4, + 'coal': 14622.655, + 'gas': 19364.9, + 'hydro': 370.814, + 'nuclear': 24163.0, + 'oil': 290.034, + 'solar': 1552.29, + 'unknown': 2908.14, + 'wind': 662.45, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 697.601, + 'hydro': 286.191, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20689.413, - 'gas': 19929.4, - 'hydro': 961.871, - 'nuclear': 21020.5, - 'oil': 235.427, - 'solar': 5188.62, - 'unknown': 2986.54, + 'coal': 14624.593, + 'gas': 19325.8, + 'hydro': 370.649, + 'nuclear': 24189.7, + 'oil': 290.46, + 'solar': 1548.21, + 'unknown': 2902.22, + 'wind': 663.923, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 374.381, + 'hydro': 426.89, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20663.463, - 'gas': 19680.9, - 'hydro': 942.44, - 'nuclear': 21041.0, - 'oil': 234.867, - 'solar': 5146.38, - 'unknown': 3015.54, + 'coal': 14628.759, + 'gas': 19252.7, + 'hydro': 364.851, + 'nuclear': 24170.9, + 'oil': 290.502, + 'solar': 1524.91, + 'unknown': 2889.73, + 'wind': 659.959, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.09966, + 'hydro': 427.049, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20567.591, - 'gas': 20271.7, - 'hydro': 957.865, - 'nuclear': 21015.9, - 'oil': 233.635, - 'solar': 5073.97, - 'unknown': 3041.91, + 'coal': 14613.539, + 'gas': 19589.4, + 'hydro': 366.027, + 'nuclear': 24152.6, + 'oil': 291.019, + 'solar': 1491.44, + 'unknown': 2883.16, + 'wind': 656.43, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.09966, + 'hydro': 425.892, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20509.298, - 'gas': 20468.5, - 'hydro': 952.908, - 'nuclear': 21035.1, - 'oil': 233.194, - 'solar': 5098.27, - 'unknown': 3034.28, + 'coal': 14763.469, + 'gas': 19525.7, + 'hydro': 374.16, + 'nuclear': 24183.8, + 'oil': 291.988, + 'solar': 1431.42, + 'unknown': 2886.26, + 'wind': 663.307, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -121.366, + 'hydro': 422.141, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20769.256, - 'gas': 20552.3, - 'hydro': 932.684, - 'nuclear': 21023.9, - 'oil': 234.202, - 'solar': 5077.93, - 'unknown': 3056.77, + 'coal': 14586.906, + 'gas': 19420.8, + 'hydro': 368.122, + 'nuclear': 24160.5, + 'oil': 291.326, + 'solar': 1387.12, + 'unknown': 2916.93, + 'wind': 672.089, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -136.321, + 'hydro': 422.061, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20775.139, - 'gas': 20490.2, - 'hydro': 923.415, - 'nuclear': 21033.4, - 'oil': 232.768, - 'solar': 5000.35, - 'unknown': 3091.02, + 'coal': 14559.597, + 'gas': 19161.7, + 'hydro': 367.153, + 'nuclear': 24151.7, + 'oil': 291.305, + 'solar': 1318.13, + 'unknown': 2959.87, + 'wind': 655.72, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -121.56, + 'hydro': 421.982, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 13, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 13, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20901.622, - 'gas': 20375.3, - 'hydro': 920.65, - 'nuclear': 21025.2, - 'oil': 234.687, - 'solar': 4960.38, - 'unknown': 3142.22, + 'coal': 14684.497, + 'gas': 19320.0, + 'hydro': 390.73, + 'nuclear': 24196.7, + 'oil': 291.732, + 'solar': 1320.97, + 'unknown': 2988.08, + 'wind': 635.004, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -122.748, + 'hydro': 422.54, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21076.323, - 'gas': 20493.4, - 'hydro': 928.62, - 'nuclear': 21016.2, - 'oil': 234.614, - 'solar': 4978.05, - 'unknown': 3160.94, + 'coal': 14727.884, + 'gas': 19379.0, + 'hydro': 386.912, + 'nuclear': 24159.1, + 'oil': 292.285, + 'solar': 1317.72, + 'unknown': 2989.81, + 'wind': 602.338, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -128.258, + 'hydro': 421.303, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21088.716, - 'gas': 20615.7, - 'hydro': 922.024, - 'nuclear': 21016.3, - 'oil': 241.185, - 'solar': 5016.2, - 'unknown': 3166.22, + 'coal': 14640.283, + 'gas': 19397.7, + 'hydro': 406.766, + 'nuclear': 24159.9, + 'oil': 291.58, + 'solar': 1325.67, + 'unknown': 2988.26, + 'wind': 608.524, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -125.284, + 'hydro': 425.334, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21162.083, - 'gas': 20710.3, - 'hydro': 896.256, - 'nuclear': 21031.9, - 'oil': 244.85, - 'solar': 5001.76, - 'unknown': 3181.12, + 'coal': 14594.745, + 'gas': 19224.7, + 'hydro': 416.258, + 'nuclear': 24168.8, + 'oil': 292.197, + 'solar': 1260.42, + 'unknown': 2996.7, + 'wind': 586.833, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -121.494, + 'hydro': 420.864, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21101.586, - 'gas': 20880.3, - 'hydro': 883.763, - 'nuclear': 21026.2, - 'oil': 246.499, - 'solar': 4960.57, - 'unknown': 3211.39, + 'coal': 14667.559, + 'gas': 19055.1, + 'hydro': 418.705, + 'nuclear': 24173.2, + 'oil': 292.396, + 'solar': 1216.71, + 'unknown': 2990.47, + 'wind': 571.947, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -120.729, + 'hydro': 421.224, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21037.362, - 'gas': 21116.1, - 'hydro': 882.38, - 'nuclear': 21025.3, - 'oil': 248.066, - 'solar': 4782.86, - 'unknown': 3283.17, + 'coal': 14675.042, + 'gas': 18993.9, + 'hydro': 387.632, + 'nuclear': 24170.2, + 'oil': 292.054, + 'solar': 1265.56, + 'unknown': 2970.39, + 'wind': 582.176, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -121.012, + 'hydro': 425.134, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20933.08, - 'gas': 21369.1, - 'hydro': 905.954, - 'nuclear': 21029.2, - 'oil': 249.847, - 'solar': 4798.94, - 'unknown': 3292.72, + 'coal': 14707.336, + 'gas': 19251.3, + 'hydro': 416.438, + 'nuclear': 24168.7, + 'oil': 291.359, + 'solar': 1228.62, + 'unknown': 2973.72, + 'wind': 588.008, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -123.551, + 'hydro': 421.782, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20845.932, - 'gas': 21266.1, - 'hydro': 873.253, - 'nuclear': 21041.2, - 'oil': 250.851, - 'solar': 4817.08, - 'unknown': 3300.53, + 'coal': 14761.128, + 'gas': 19320.5, + 'hydro': 410.303, + 'nuclear': 24161.7, + 'oil': 291.643, + 'solar': 1161.41, + 'unknown': 2967.43, + 'wind': 578.838, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -119.827, + 'hydro': 420.705, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20878.787, - 'gas': 21556.8, - 'hydro': 891.695, - 'nuclear': 21039.9, - 'oil': 253.451, - 'solar': 4734.68, - 'unknown': 3354.74, + 'coal': 14592.19, + 'gas': 19157.1, + 'hydro': 410.04, + 'nuclear': 24205.8, + 'oil': 290.39, + 'solar': 1135.47, + 'unknown': 2964.75, + 'wind': 581.741, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -122.252, + 'hydro': 425.453, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20633.238, - 'gas': 21799.6, - 'hydro': 889.43, - 'nuclear': 21028.4, - 'oil': 253.318, - 'solar': 4632.75, - 'unknown': 3407.11, + 'coal': 14628.428, + 'gas': 18947.9, + 'hydro': 410.453, + 'nuclear': 24173.7, + 'oil': 291.542, + 'solar': 1084.0, + 'unknown': 2991.5, + 'wind': 595.697, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -120.94, + 'hydro': 424.376, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20605.203, - 'gas': 21992.1, - 'hydro': 894.862, - 'nuclear': 21042.5, - 'oil': 254.126, - 'solar': 4566.15, - 'unknown': 3435.56, + 'coal': 14794.518, + 'gas': 18962.9, + 'hydro': 417.95, + 'nuclear': 24166.4, + 'oil': 295.164, + 'solar': 1079.87, + 'unknown': 3002.46, + 'wind': 580.94, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -122.814, + 'hydro': 419.149, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20681.5, - 'gas': 22130.5, - 'hydro': 915.617, - 'nuclear': 21026.0, - 'oil': 255.556, - 'solar': 4508.12, - 'unknown': 3492.45, + 'coal': 14869.41, + 'gas': 19227.0, + 'hydro': 412.898, + 'nuclear': 24178.2, + 'oil': 296.807, + 'solar': 1073.03, + 'unknown': 3009.28, + 'wind': 573.872, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -145.348, + 'hydro': 421.623, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 14, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 14, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20635.499, - 'gas': 22167.6, - 'hydro': 933.358, - 'nuclear': 21021.1, - 'oil': 261.015, - 'solar': 4469.12, - 'unknown': 3517.08, + 'coal': 14690.103, + 'gas': 19307.7, + 'hydro': 415.406, + 'nuclear': 24182.2, + 'oil': 295.367, + 'solar': 1071.62, + 'unknown': 2998.86, + 'wind': 574.368, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -123.9, + 'hydro': 422.381, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20667.562, - 'gas': 22052.2, - 'hydro': 917.015, - 'nuclear': 21031.1, - 'oil': 261.216, - 'solar': 4437.5, - 'unknown': 3516.72, + 'coal': 14767.304, + 'gas': 19194.9, + 'hydro': 415.165, + 'nuclear': 24183.3, + 'oil': 299.202, + 'solar': 1075.16, + 'unknown': 2993.25, + 'wind': 572.552, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -121.243, + 'hydro': 420.106, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20380.209, - 'gas': 22142.6, - 'hydro': 950.536, - 'nuclear': 21035.0, - 'oil': 269.401, - 'solar': 4373.81, - 'unknown': 3565.92, + 'coal': 14642.42, + 'gas': 19292.9, + 'hydro': 407.403, + 'nuclear': 24168.1, + 'oil': 305.483, + 'solar': 1058.1, + 'unknown': 2996.6, + 'wind': 537.308, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -120.939, + 'hydro': 421.423, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20400.596, - 'gas': 22385.7, - 'hydro': 982.388, - 'nuclear': 21031.2, - 'oil': 269.344, - 'solar': 4237.49, - 'unknown': 3593.17, + 'coal': 14749.979, + 'gas': 19480.2, + 'hydro': 413.989, + 'nuclear': 24182.1, + 'oil': 307.478, + 'solar': 1024.82, + 'unknown': 3039.79, + 'wind': 517.297, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -120.922, + 'hydro': 422.181, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20465.478, - 'gas': 22448.1, - 'hydro': 962.61, - 'nuclear': 21030.0, - 'oil': 268.787, - 'solar': 4187.71, - 'unknown': 3665.74, + 'coal': 14736.397, + 'gas': 19486.8, + 'hydro': 409.787, + 'nuclear': 24180.5, + 'oil': 309.334, + 'solar': 974.464, + 'unknown': 3077.17, + 'wind': 495.789, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -126.721, + 'hydro': 423.977, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20674.282, - 'gas': 22632.0, - 'hydro': 1014.95, - 'nuclear': 21028.0, - 'oil': 268.415, - 'solar': 4062.48, - 'unknown': 3678.88, + 'coal': 14632.976, + 'gas': 19548.3, + 'hydro': 400.153, + 'nuclear': 24187.2, + 'oil': 311.01, + 'solar': 939.301, + 'unknown': 3118.35, + 'wind': 508.195, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -129.043, + 'hydro': 421.343, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21100.148, - 'gas': 22615.5, - 'hydro': 1008.96, - 'nuclear': 21019.2, - 'oil': 267.968, - 'solar': 4019.99, - 'unknown': 3680.18, + 'coal': 14748.697, + 'gas': 19702.4, + 'hydro': 404.87, + 'nuclear': 24177.1, + 'oil': 321.131, + 'solar': 911.634, + 'unknown': 3127.4, + 'wind': 493.631, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -507.633, + 'hydro': 420.226, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 20974.627, - 'gas': 22289.6, - 'hydro': 977.948, - 'nuclear': 21012.7, - 'oil': 269.185, - 'solar': 3960.18, - 'unknown': 3699.52, + 'coal': 14782.228, + 'gas': 19810.9, + 'hydro': 373.912, + 'nuclear': 24167.1, + 'oil': 331.693, + 'solar': 895.852, + 'unknown': 3129.39, + 'wind': 491.481, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -905.932, + 'hydro': 421.263, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21087.523, - 'gas': 22225.1, - 'hydro': 1002.26, - 'nuclear': 21020.5, - 'oil': 269.466, - 'solar': 3830.49, - 'unknown': 3696.9, + 'coal': 14714.922, + 'gas': 19923.7, + 'hydro': 363.016, + 'nuclear': 24171.6, + 'oil': 340.562, + 'solar': 839.816, + 'unknown': 3122.47, + 'wind': 478.708, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -913.298, + 'hydro': 420.745, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21209.571, - 'gas': 22439.5, - 'hydro': 999.981, - 'nuclear': 21024.6, - 'oil': 269.124, - 'solar': 3744.75, - 'unknown': 3708.89, + 'coal': 14669.442, + 'gas': 20015.7, + 'hydro': 367.472, + 'nuclear': 24182.7, + 'oil': 341.375, + 'solar': 804.817, + 'unknown': 3128.93, + 'wind': 452.412, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -920.338, + 'hydro': 421.543, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21438.831, - 'gas': 22699.2, - 'hydro': 1001.73, - 'nuclear': 21018.4, - 'oil': 269.245, - 'solar': 3666.75, - 'unknown': 3720.5, + 'coal': 14727.603, + 'gas': 20131.5, + 'hydro': 371.867, + 'nuclear': 24188.1, + 'oil': 350.067, + 'solar': 757.541, + 'unknown': 3133.21, + 'wind': 465.97, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1075.33, + 'hydro': 420.226, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21557.544, - 'gas': 22784.1, - 'hydro': 1005.31, - 'nuclear': 21037.2, - 'oil': 275.435, - 'solar': 3494.94, - 'unknown': 3722.35, + 'coal': 14735.903, + 'gas': 20302.2, + 'hydro': 345.188, + 'nuclear': 24189.1, + 'oil': 356.305, + 'solar': 722.779, + 'unknown': 3138.56, + 'wind': 451.627, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1103.41, + 'hydro': 419.867, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 15, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 15, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21687.137, - 'gas': 22930.8, - 'hydro': 1001.21, - 'nuclear': 21042.5, - 'oil': 272.401, - 'solar': 3369.7, - 'unknown': 3726.69, + 'coal': 14783.994, + 'gas': 20642.5, + 'hydro': 286.442, + 'nuclear': 24173.0, + 'oil': 363.268, + 'solar': 702.94, + 'unknown': 3139.82, + 'wind': 450.143, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1146.95, + 'hydro': 420.346, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 21765.66, - 'gas': 22966.4, - 'hydro': 1003.42, - 'nuclear': 21025.0, - 'oil': 274.781, - 'solar': 3418.18, - 'unknown': 3730.55, + 'coal': 14872.376, + 'gas': 20491.9, + 'hydro': 313.574, + 'nuclear': 24179.8, + 'oil': 364.509, + 'solar': 657.667, + 'unknown': 3135.82, + 'wind': 432.687, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1145.72, + 'hydro': 418.311, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22134.453, - 'gas': 22687.9, - 'hydro': 970.734, - 'nuclear': 21034.3, - 'oil': 274.326, - 'solar': 3374.82, - 'unknown': 3735.24, + 'coal': 14753.859, + 'gas': 20184.7, + 'hydro': 361.895, + 'nuclear': 24184.5, + 'oil': 363.139, + 'solar': 664.524, + 'unknown': 3183.22, + 'wind': 430.974, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1101.39, + 'hydro': 419.149, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22312.844, - 'gas': 22920.9, - 'hydro': 963.291, - 'nuclear': 21024.8, - 'oil': 275.474, - 'solar': 3224.49, - 'unknown': 3758.45, + 'coal': 14735.697, + 'gas': 19945.2, + 'hydro': 341.57, + 'nuclear': 24167.8, + 'oil': 363.314, + 'solar': 616.197, + 'unknown': 3216.01, + 'wind': 408.765, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1147.8, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22438.734, - 'gas': 23003.0, - 'hydro': 969.377, - 'nuclear': 21038.4, - 'oil': 277.562, - 'solar': 3033.74, - 'unknown': 3916.69, + 'coal': 14800.104, + 'gas': 20045.9, + 'hydro': 372.413, + 'nuclear': 24162.7, + 'oil': 362.646, + 'solar': 543.873, + 'unknown': 3455.13, + 'wind': 411.999, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1344.36, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22626.833, - 'gas': 22967.8, - 'hydro': 966.654, - 'nuclear': 21020.5, - 'oil': 296.039, - 'solar': 2869.86, - 'unknown': 4004.88, + 'coal': 14792.244, + 'gas': 20253.8, + 'hydro': 340.453, + 'nuclear': 24162.8, + 'oil': 363.335, + 'solar': 485.55, + 'unknown': 3638.6, + 'wind': 397.056, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1341.93, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22790.516, - 'gas': 23153.9, - 'hydro': 966.915, - 'nuclear': 21035.4, - 'oil': 311.159, - 'solar': 2795.02, - 'unknown': 3998.73, + 'coal': 14819.097, + 'gas': 20360.4, + 'hydro': 363.175, + 'nuclear': 24188.5, + 'oil': 363.225, + 'solar': 460.607, + 'unknown': 3706.9, + 'wind': 386.257, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1200.94, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23072.195, - 'gas': 23084.9, - 'hydro': 1029.02, - 'nuclear': 21031.8, - 'oil': 330.133, - 'solar': 2676.43, - 'unknown': 4041.31, + 'coal': 14828.744, + 'gas': 20398.5, + 'hydro': 375.912, + 'nuclear': 24151.5, + 'oil': 363.111, + 'solar': 410.101, + 'unknown': 3725.18, + 'wind': 392.203, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1158.44, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23108.655, - 'gas': 23244.5, - 'hydro': 1051.41, - 'nuclear': 21040.6, - 'oil': 331.038, - 'solar': 2655.07, - 'unknown': 4020.09, + 'coal': 14702.896, + 'gas': 20502.0, + 'hydro': 371.888, + 'nuclear': 24155.9, + 'oil': 362.973, + 'solar': 386.596, + 'unknown': 3699.56, + 'wind': 375.616, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1027.02, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23290.401, - 'gas': 23321.6, - 'hydro': 1065.33, - 'nuclear': 21031.2, - 'oil': 332.266, - 'solar': 2569.48, - 'unknown': 4053.74, + 'coal': 14890.631, + 'gas': 20946.6, + 'hydro': 370.717, + 'nuclear': 24176.8, + 'oil': 363.216, + 'solar': 344.756, + 'unknown': 3698.05, + 'wind': 369.501, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1054.35, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23205.405, - 'gas': 23505.8, - 'hydro': 1059.62, - 'nuclear': 21004.5, - 'oil': 332.05, - 'solar': 2495.83, - 'unknown': 4066.04, + 'coal': 14919.984, + 'gas': 21313.6, + 'hydro': 370.003, + 'nuclear': 24170.2, + 'oil': 363.674, + 'solar': 307.627, + 'unknown': 3684.45, + 'wind': 373.273, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1037.2, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23297.478, - 'gas': 23533.2, - 'hydro': 1059.55, - 'nuclear': 21008.6, - 'oil': 331.45, - 'solar': 2360.98, - 'unknown': 4107.01, + 'coal': 14822.142, + 'gas': 21164.3, + 'hydro': 345.846, + 'nuclear': 24152.4, + 'oil': 363.661, + 'solar': 265.391, + 'unknown': 3656.47, + 'wind': 365.88, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1039.95, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 16, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 16, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23239.017, - 'gas': 23221.7, - 'hydro': 1043.44, - 'nuclear': 21009.4, - 'oil': 332.389, - 'solar': 2306.01, - 'unknown': 4100.21, + 'coal': 14850.87, + 'gas': 21714.0, + 'hydro': 365.679, + 'nuclear': 24164.2, + 'oil': 364.016, + 'solar': 223.414, + 'unknown': 3627.55, + 'wind': 359.138, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1264.01, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23507.726, - 'gas': 22950.6, - 'hydro': 1014.25, - 'nuclear': 21005.9, - 'oil': 332.291, - 'solar': 2208.98, - 'unknown': 4131.3, + 'coal': 14899.389, + 'gas': 22011.0, + 'hydro': 329.568, + 'nuclear': 24157.5, + 'oil': 364.31, + 'solar': 199.96, + 'unknown': 3592.4, + 'wind': 370.775, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1295.98, + 'hydro': -0.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23436.016, - 'gas': 22943.2, - 'hydro': 996.338, - 'nuclear': 21001.4, - 'oil': 331.942, - 'solar': 2123.1, - 'unknown': 4138.24, + 'coal': 14913.51, + 'gas': 22335.2, + 'hydro': 323.62, + 'nuclear': 24176.4, + 'oil': 363.478, + 'solar': 181.266, + 'unknown': 3554.01, + 'wind': 373.549, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1270.64, + 'hydro': -164.011, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23385.524, - 'gas': 23177.7, - 'hydro': 1000.92, - 'nuclear': 21007.7, - 'oil': 332.183, - 'solar': 1919.18, - 'unknown': 4210.38, + 'coal': 14910.99, + 'gas': 22304.7, + 'hydro': 328.215, + 'nuclear': 24145.2, + 'oil': 364.74, + 'solar': 144.13, + 'unknown': 3525.21, + 'wind': 356.858, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1277.06, + 'hydro': -393.721, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23556.282, - 'gas': 23153.8, - 'hydro': 1024.1, - 'nuclear': 20999.5, - 'oil': 331.491, - 'solar': 1760.64, - 'unknown': 4282.59, + 'coal': 14990.222, + 'gas': 22564.0, + 'hydro': 317.711, + 'nuclear': 24164.5, + 'oil': 363.766, + 'solar': 97.0092, + 'unknown': 3507.49, + 'wind': 345.267, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1306.59, + 'hydro': -519.969, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23794.602, - 'gas': 23199.4, - 'hydro': 1023.72, - 'nuclear': 21006.1, - 'oil': 331.888, - 'solar': 1654.15, - 'unknown': 4334.85, + 'coal': 15010.059, + 'gas': 22382.2, + 'hydro': 311.478, + 'nuclear': 24156.7, + 'oil': 363.315, + 'solar': 67.4273, + 'unknown': 3502.25, + 'wind': 342.304, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1306.89, + 'hydro': -522.492, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23828.465, - 'gas': 23328.3, - 'hydro': 999.186, - 'nuclear': 21007.6, - 'oil': 331.534, - 'solar': 1514.45, - 'unknown': 4360.17, + 'coal': 14972.617, + 'gas': 22764.9, + 'hydro': 325.164, + 'nuclear': 24164.3, + 'oil': 363.591, + 'solar': 0.0, + 'unknown': 3490.41, + 'wind': 343.144, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1291.63, + 'hydro': -529.515, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23924.36, - 'gas': 23286.7, - 'hydro': 998.604, - 'nuclear': 21015.0, - 'oil': 332.576, - 'solar': 1405.17, - 'unknown': 4423.32, + 'coal': 14961.186, + 'gas': 23010.9, + 'hydro': 325.283, + 'nuclear': 24144.2, + 'oil': 363.596, + 'solar': 0.0, + 'unknown': 3466.91, + 'wind': 365.388, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1293.88, + 'hydro': -535.731, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23881.682, - 'gas': 23244.8, - 'hydro': 998.337, - 'nuclear': 20999.6, - 'oil': 330.707, - 'solar': 1321.33, - 'unknown': 4433.77, + 'coal': 15051.158, + 'gas': 22779.4, + 'hydro': 318.778, + 'nuclear': 24134.7, + 'oil': 363.831, + 'solar': 17.1478, + 'unknown': 3420.95, + 'wind': 367.731, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1278.85, + 'hydro': -937.306, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23919.53, - 'gas': 23097.5, - 'hydro': 945.125, - 'nuclear': 21012.3, - 'oil': 332.131, - 'solar': 1236.3, - 'unknown': 4443.53, + 'coal': 15029.825, + 'gas': 23009.8, + 'hydro': 327.892, + 'nuclear': 24169.9, + 'oil': 362.026, + 'solar': 9.69618, + 'unknown': 3459.22, + 'wind': 375.927, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1276.55, + 'hydro': -939.786, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24209.082, - 'gas': 23214.9, - 'hydro': 955.911, - 'nuclear': 20991.7, - 'oil': 331.701, - 'solar': 1141.55, - 'unknown': 4457.89, + 'coal': 15014.545, + 'gas': 22861.9, + 'hydro': 325.953, + 'nuclear': 24131.2, + 'oil': 361.349, + 'solar': 15.624, + 'unknown': 3447.06, + 'wind': 373.002, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1306.85, + 'hydro': -1375.72, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24046.168, - 'gas': 23382.2, - 'hydro': 947.537, - 'nuclear': 21000.3, - 'oil': 331.603, - 'solar': 1044.35, - 'unknown': 4473.56, + 'coal': 15080.638, + 'gas': 23042.6, + 'hydro': 286.321, + 'nuclear': 24206.0, + 'oil': 363.082, + 'solar': 17.5567, + 'unknown': 3437.6, + 'wind': 367.37, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1275.85, + 'hydro': -1389.46, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 17, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 17, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23920.998, - 'gas': 23429.0, - 'hydro': 944.57, - 'nuclear': 21005.8, - 'oil': 331.694, - 'solar': 938.44, - 'unknown': 4495.42, + 'coal': 15164.055, + 'gas': 23097.6, + 'hydro': 280.46, + 'nuclear': 24183.2, + 'oil': 363.214, + 'solar': 20.6998, + 'unknown': 3418.34, + 'wind': 369.952, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1271.18, + 'hydro': -1388.93, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24070.109, - 'gas': 23412.3, - 'hydro': 854.475, - 'nuclear': 21017.3, - 'oil': 331.766, - 'solar': 827.543, - 'unknown': 4520.28, + 'coal': 15121.835, + 'gas': 23232.0, + 'hydro': 286.773, + 'nuclear': 24168.9, + 'oil': 363.602, + 'solar': 21.0216, + 'unknown': 3411.66, + 'wind': 369.12, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1285.29, + 'hydro': -1391.25, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24028.683, - 'gas': 23177.3, - 'hydro': 811.484, - 'nuclear': 20996.7, - 'oil': 333.226, - 'solar': 739.265, - 'unknown': 4527.9, + 'coal': 15045.283, + 'gas': 23109.4, + 'hydro': 285.458, + 'nuclear': 24174.1, + 'oil': 363.612, + 'solar': 22.8437, + 'unknown': 3404.82, + 'wind': 396.499, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1246.67, + 'hydro': -1374.12, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23989.188, - 'gas': 23102.9, - 'hydro': 838.787, - 'nuclear': 21007.5, - 'oil': 331.27, - 'solar': 653.718, - 'unknown': 4533.51, + 'coal': 15055.88, + 'gas': 23083.1, + 'hydro': 282.353, + 'nuclear': 24159.1, + 'oil': 363.175, + 'solar': 22.5842, + 'unknown': 3393.38, + 'wind': 406.653, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1280.88, + 'hydro': -1380.13, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24049.078, - 'gas': 23280.3, - 'hydro': 836.698, - 'nuclear': 21001.0, - 'oil': 330.909, - 'solar': 563.402, - 'unknown': 4576.04, + 'coal': 15153.629, + 'gas': 22969.8, + 'hydro': 279.168, + 'nuclear': 24169.1, + 'oil': 363.358, + 'solar': 19.4275, + 'unknown': 3417.66, + 'wind': 408.84, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1284.62, + 'hydro': -1392.15, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24002.906, - 'gas': 23383.5, - 'hydro': 836.092, - 'nuclear': 20995.7, - 'oil': 332.62, - 'solar': 454.824, - 'unknown': 4647.37, + 'coal': 15069.707, + 'gas': 23131.0, + 'hydro': 276.753, + 'nuclear': 24134.7, + 'oil': 363.124, + 'solar': 19.6174, + 'unknown': 3432.0, + 'wind': 403.449, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1288.83, + 'hydro': -1381.98, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24087.934, - 'gas': 23459.0, - 'hydro': 839.571, - 'nuclear': 20989.4, - 'oil': 332.416, - 'solar': 372.871, - 'unknown': 4667.91, + 'coal': 15100.022, + 'gas': 23168.2, + 'hydro': 277.955, + 'nuclear': 24190.5, + 'oil': 363.772, + 'solar': 14.7366, + 'unknown': 3440.75, + 'wind': 396.95, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1283.54, + 'hydro': -1377.06, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24014.974, - 'gas': 23570.9, - 'hydro': 834.371, - 'nuclear': 21004.7, - 'oil': 333.451, - 'solar': 313.835, - 'unknown': 4684.53, + 'coal': 15104.184, + 'gas': 22967.7, + 'hydro': 286.357, + 'nuclear': 24153.2, + 'oil': 363.759, + 'solar': 13.5954, + 'unknown': 3435.89, + 'wind': 395.697, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1281.06, + 'hydro': -1403.42, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24081.693, - 'gas': 23455.8, - 'hydro': 836.632, - 'nuclear': 20983.3, - 'oil': 338.392, - 'solar': 255.266, - 'unknown': 4698.36, + 'coal': 15002.427, + 'gas': 22967.6, + 'hydro': 281.604, + 'nuclear': 24177.1, + 'oil': 362.826, + 'solar': 21.2186, + 'unknown': 3421.25, + 'wind': 393.809, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1298.21, + 'hydro': -1382.6, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24029.884, - 'gas': 23512.7, - 'hydro': 830.666, - 'nuclear': 20993.2, - 'oil': 341.546, - 'solar': 195.595, - 'unknown': 4711.61, + 'coal': 15023.528, + 'gas': 22839.2, + 'hydro': 278.87, + 'nuclear': 24194.8, + 'oil': 362.895, + 'solar': 22.147, + 'unknown': 3415.3, + 'wind': 392.791, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1297.7, + 'hydro': -1367.49, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24070.041, - 'gas': 23676.2, - 'hydro': 834.854, - 'nuclear': 20968.8, - 'oil': 346.372, - 'solar': 149.08, - 'unknown': 4723.56, + 'coal': 15011.299, + 'gas': 22763.6, + 'hydro': 279.684, + 'nuclear': 24169.6, + 'oil': 364.155, + 'solar': 22.4842, + 'unknown': 3419.01, + 'wind': 384.349, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1281.29, + 'hydro': -1381.18, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23979.064, - 'gas': 23759.8, - 'hydro': 834.088, - 'nuclear': 20983.8, - 'oil': 345.49, - 'solar': 105.487, - 'unknown': 4734.47, + 'coal': 15106.152, + 'gas': 22826.9, + 'hydro': 208.612, + 'nuclear': 24180.4, + 'oil': 362.708, + 'solar': 21.7964, + 'unknown': 3425.37, + 'wind': 363.385, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1280.55, + 'hydro': -1390.97, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 18, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 18, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24090.607, - 'gas': 23722.8, - 'hydro': 844.691, - 'nuclear': 20968.3, - 'oil': 346.197, - 'solar': 61.0313, - 'unknown': 4741.69, + 'coal': 15066.324, + 'gas': 22673.4, + 'hydro': 206.65, + 'nuclear': 24214.4, + 'oil': 362.999, + 'solar': 20.6323, + 'unknown': 3422.35, + 'wind': 369.955, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1307.52, + 'hydro': -1376.13, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24050.508, - 'gas': 23885.8, - 'hydro': 835.146, - 'nuclear': 20991.0, - 'oil': 346.234, - 'solar': 28.8268, - 'unknown': 4747.15, + 'coal': 15093.794, + 'gas': 22621.1, + 'hydro': 210.968, + 'nuclear': 24176.1, + 'oil': 361.086, + 'solar': 0.0, + 'unknown': 3415.4, + 'wind': 380.291, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1281.68, + 'hydro': -1381.12, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23963.986, - 'gas': 23663.5, - 'hydro': 835.415, - 'nuclear': 20978.5, - 'oil': 346.323, - 'solar': 5.26572, - 'unknown': 4761.33, + 'coal': 15170.136, + 'gas': 22655.0, + 'hydro': 213.499, + 'nuclear': 24156.6, + 'oil': 361.936, + 'solar': 0.0, + 'unknown': 3410.18, + 'wind': 370.562, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1281.82, + 'hydro': -1546.88, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24166.168, - 'gas': 23747.8, - 'hydro': 846.884, - 'nuclear': 20983.1, - 'oil': 346.328, + 'coal': 15063.736, + 'gas': 22522.1, + 'hydro': 210.319, + 'nuclear': 24157.6, + 'oil': 361.932, 'solar': 0.0, - 'unknown': 4794.44, + 'unknown': 3420.9, + 'wind': 382.182, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1298.4, + 'hydro': -1521.46, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24169.009, - 'gas': 23921.9, - 'hydro': 837.595, - 'nuclear': 20977.2, - 'oil': 346.323, + 'coal': 15099.336, + 'gas': 22457.5, + 'hydro': 214.224, + 'nuclear': 24155.2, + 'oil': 363.469, 'solar': 0.0, - 'unknown': 4827.14, + 'unknown': 3427.53, + 'wind': 380.406, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1294.88, + 'hydro': -1305.48, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24028.65, - 'gas': 23734.7, - 'hydro': 830.536, - 'nuclear': 20983.9, - 'oil': 344.999, + 'coal': 15130.901, + 'gas': 22468.3, + 'hydro': 209.695, + 'nuclear': 24165.7, + 'oil': 361.968, 'solar': 0.0, - 'unknown': 4849.31, + 'unknown': 3434.15, + 'wind': 385.446, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1286.78, + 'hydro': -1259.4, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24086.551, - 'gas': 23580.2, - 'hydro': 822.088, - 'nuclear': 20973.7, - 'oil': 344.973, + 'coal': 15071.193, + 'gas': 22441.9, + 'hydro': 205.009, + 'nuclear': 24171.0, + 'oil': 362.25, 'solar': 0.0, - 'unknown': 4865.52, + 'unknown': 3422.09, + 'wind': 368.16, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1291.91, + 'hydro': -1259.35, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24083.823, - 'gas': 23400.1, - 'hydro': 789.092, - 'nuclear': 20985.0, - 'oil': 346.636, + 'coal': 15033.062, + 'gas': 22404.5, + 'hydro': 214.713, + 'nuclear': 24158.8, + 'oil': 362.493, 'solar': 0.0, - 'unknown': 4857.07, + 'unknown': 3423.72, + 'wind': 379.804, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1274.64, + 'hydro': -1302.98, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24126.745, - 'gas': 23361.1, - 'hydro': 789.31, - 'nuclear': 20994.1, - 'oil': 346.614, + 'coal': 15019.153, + 'gas': 22215.5, + 'hydro': 202.077, + 'nuclear': 24201.5, + 'oil': 362.516, 'solar': 0.0, - 'unknown': 4843.59, + 'unknown': 3424.47, + 'wind': 359.892, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1291.81, + 'hydro': -1228.57, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24169.886, - 'gas': 23265.8, - 'hydro': 787.382, - 'nuclear': 20998.4, - 'oil': 346.234, + 'coal': 15060.501, + 'gas': 22052.3, + 'hydro': 206.471, + 'nuclear': 24169.7, + 'oil': 363.071, 'solar': 0.0, - 'unknown': 4844.53, + 'unknown': 3414.14, + 'wind': 395.03, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1287.52, + 'hydro': -1238.19, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24004.291, - 'gas': 23017.2, - 'hydro': 782.884, - 'nuclear': 20995.2, - 'oil': 344.79, + 'coal': 15123.617, + 'gas': 22184.1, + 'hydro': 211.018, + 'nuclear': 24164.7, + 'oil': 362.617, 'solar': 0.0, - 'unknown': 4833.72, + 'unknown': 3422.09, + 'wind': 409.377, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1275.81, + 'hydro': -1091.98, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23999.299, - 'gas': 22711.5, - 'hydro': 774.939, - 'nuclear': 20997.4, - 'oil': 346.369, + 'coal': 15153.125, + 'gas': 21947.2, + 'hydro': 208.609, + 'nuclear': 24156.4, + 'oil': 363.247, 'solar': 0.0, - 'unknown': 4815.18, + 'unknown': 3420.34, + 'wind': 400.987, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1251.39, + 'hydro': -1038.85, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 19, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 19, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23903.872, - 'gas': 22464.1, - 'hydro': 778.613, - 'nuclear': 20995.5, - 'oil': 346.435, + 'coal': 15099.527, + 'gas': 21826.3, + 'hydro': 210.411, + 'nuclear': 24168.8, + 'oil': 361.608, 'solar': 0.0, - 'unknown': 4815.27, + 'unknown': 3417.81, + 'wind': 407.896, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1263.1, + 'hydro': -1073.01, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23904.274, - 'gas': 22343.4, - 'hydro': 753.673, - 'nuclear': 21008.8, - 'oil': 345.956, + 'coal': 15206.593, + 'gas': 21716.4, + 'hydro': 207.967, + 'nuclear': 24155.9, + 'oil': 363.228, 'solar': 0.0, - 'unknown': 4787.85, + 'unknown': 3409.03, + 'wind': 388.231, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1261.56, + 'hydro': -1064.16, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23735.531, - 'gas': 22163.1, - 'hydro': 688.229, - 'nuclear': 21008.9, - 'oil': 345.877, + 'coal': 15089.451, + 'gas': 21674.5, + 'hydro': 241.604, + 'nuclear': 24168.2, + 'oil': 361.629, 'solar': 0.0, - 'unknown': 4757.17, + 'unknown': 3408.22, + 'wind': 369.257, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1246.36, + 'hydro': -1028.27, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23788.623, - 'gas': 22228.9, - 'hydro': 695.648, - 'nuclear': 20994.2, - 'oil': 337.453, + 'coal': 15076.389, + 'gas': 21682.8, + 'hydro': 251.277, + 'nuclear': 24170.6, + 'oil': 362.662, 'solar': 0.0, - 'unknown': 4704.33, + 'unknown': 3414.25, + 'wind': 387.884, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1310.47, + 'hydro': -1069.51, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23716.283, - 'gas': 22062.2, - 'hydro': 689.704, - 'nuclear': 20991.9, - 'oil': 331.938, + 'coal': 15063.435, + 'gas': 21440.2, + 'hydro': 245.796, + 'nuclear': 24169.6, + 'oil': 362.548, 'solar': 0.0, - 'unknown': 4694.21, + 'unknown': 3414.45, + 'wind': 385.674, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1280.17, + 'hydro': -1034.91, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23865.067, - 'gas': 21668.2, - 'hydro': 689.265, - 'nuclear': 20992.7, - 'oil': 322.073, + 'coal': 15115.576, + 'gas': 21531.9, + 'hydro': 257.086, + 'nuclear': 24185.6, + 'oil': 363.946, 'solar': 0.0, - 'unknown': 4683.1, + 'unknown': 3411.05, + 'wind': 389.992, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1271.47, + 'hydro': -1088.81, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23677.975, - 'gas': 21589.5, - 'hydro': 689.471, - 'nuclear': 21006.3, - 'oil': 313.086, + 'coal': 15043.306, + 'gas': 21449.1, + 'hydro': 250.5, + 'nuclear': 24180.9, + 'oil': 363.032, 'solar': 0.0, - 'unknown': 4663.02, + 'unknown': 3410.78, + 'wind': 373.388, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1279.87, + 'hydro': -1068.14, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23572.688, - 'gas': 21194.2, - 'hydro': 688.682, - 'nuclear': 21008.5, - 'oil': 309.16, + 'coal': 15058.227, + 'gas': 21343.7, + 'hydro': 244.602, + 'nuclear': 24173.4, + 'oil': 363.96, 'solar': 0.0, - 'unknown': 4644.38, + 'unknown': 3397.36, + 'wind': 370.487, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1257.48, + 'hydro': -1040.67, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23715.04, - 'gas': 21045.2, - 'hydro': 693.281, - 'nuclear': 20996.8, - 'oil': 307.448, + 'coal': 15031.315, + 'gas': 21098.8, + 'hydro': 247.437, + 'nuclear': 24166.1, + 'oil': 363.862, 'solar': 0.0, - 'unknown': 4631.19, + 'unknown': 3396.42, + 'wind': 372.568, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1294.29, + 'hydro': -1039.21, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23680.071, - 'gas': 20979.4, - 'hydro': 689.066, - 'nuclear': 21003.6, - 'oil': 305.505, + 'coal': 15085.245, + 'gas': 20972.2, + 'hydro': 257.63, + 'nuclear': 24191.7, + 'oil': 365.201, 'solar': 0.0, - 'unknown': 4611.86, + 'unknown': 3395.05, + 'wind': 366.65, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1278.44, + 'hydro': -1102.78, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23673.816, - 'gas': 20634.5, - 'hydro': 690.19, - 'nuclear': 20992.1, - 'oil': 304.776, + 'coal': 15192.942, + 'gas': 21056.6, + 'hydro': 250.522, + 'nuclear': 24168.6, + 'oil': 364.206, 'solar': 0.0, - 'unknown': 4592.39, + 'unknown': 3398.73, + 'wind': 361.899, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1280.56, + 'hydro': -1061.43, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23598.092, - 'gas': 20176.3, - 'hydro': 688.88, - 'nuclear': 20981.6, - 'oil': 305.783, + 'coal': 15103.93, + 'gas': 21002.2, + 'hydro': 252.81, + 'nuclear': 24184.1, + 'oil': 365.684, 'solar': 0.0, - 'unknown': 4562.1, + 'unknown': 3392.83, + 'wind': 354.807, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1269.15, + 'hydro': -1089.88, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 20, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 20, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23778.58, - 'gas': 20296.1, - 'hydro': 691.368, - 'nuclear': 20982.5, - 'oil': 305.385, + 'coal': 15069.19, + 'gas': 20741.9, + 'hydro': 252.049, + 'nuclear': 24159.7, + 'oil': 365.518, 'solar': 0.0, - 'unknown': 4538.52, + 'unknown': 3391.43, + 'wind': 355.322, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1293.62, + 'hydro': -1078.22, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23730.25, - 'gas': 20034.2, - 'hydro': 689.224, - 'nuclear': 21012.8, - 'oil': 306.015, + 'coal': 15161.289, + 'gas': 20534.4, + 'hydro': 253.244, + 'nuclear': 24144.6, + 'oil': 366.059, 'solar': 0.0, - 'unknown': 4501.14, + 'unknown': 3388.49, + 'wind': 368.897, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1152.1, + 'hydro': -1054.75, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23673.292, - 'gas': 20144.6, - 'hydro': 688.457, - 'nuclear': 20991.8, - 'oil': 304.472, + 'coal': 15038.37, + 'gas': 20194.8, + 'hydro': 251.977, + 'nuclear': 24171.8, + 'oil': 365.067, 'solar': 0.0, - 'unknown': 4476.68, + 'unknown': 3382.07, + 'wind': 367.411, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -929.355, + 'hydro': -1082.64, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23725.711, - 'gas': 20034.4, - 'hydro': 689.515, - 'nuclear': 21005.4, - 'oil': 304.064, + 'coal': 15160.428, + 'gas': 20151.8, + 'hydro': 260.611, + 'nuclear': 24187.8, + 'oil': 365.897, 'solar': 0.0, - 'unknown': 4430.08, + 'unknown': 3380.32, + 'wind': 381.618, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -940.006, + 'hydro': -1094.59, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23810.198, - 'gas': 19838.2, - 'hydro': 689.44, - 'nuclear': 21005.8, - 'oil': 304.905, + 'coal': 15044.104, + 'gas': 20059.6, + 'hydro': 240.238, + 'nuclear': 24177.4, + 'oil': 364.606, 'solar': 0.0, - 'unknown': 4340.73, + 'unknown': 3373.35, + 'wind': 377.355, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -932.272, + 'hydro': -1014.7, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23538.073, - 'gas': 19526.7, - 'hydro': 688.734, - 'nuclear': 21005.9, - 'oil': 303.648, + 'coal': 15020.079, + 'gas': 19797.8, + 'hydro': 250.463, + 'nuclear': 24175.9, + 'oil': 364.706, 'solar': 0.0, - 'unknown': 4294.17, + 'unknown': 3372.35, + 'wind': 367.716, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -927.656, + 'hydro': -1073.26, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23561.426, - 'gas': 19350.6, - 'hydro': 688.647, - 'nuclear': 21013.3, - 'oil': 305.12, + 'coal': 14969.672, + 'gas': 19778.4, + 'hydro': 240.401, + 'nuclear': 24183.3, + 'oil': 365.0, 'solar': 0.0, - 'unknown': 4252.9, + 'unknown': 3367.88, + 'wind': 358.94, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -912.148, + 'hydro': -994.249, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23504.916, - 'gas': 19256.3, - 'hydro': 689.332, - 'nuclear': 20984.5, - 'oil': 305.641, + 'coal': 15078.911, + 'gas': 19913.5, + 'hydro': 251.38, + 'nuclear': 24157.8, + 'oil': 363.631, 'solar': 0.0, - 'unknown': 4221.58, + 'unknown': 3347.86, + 'wind': 367.0, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -931.385, + 'hydro': -1105.48, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23553.68, - 'gas': 19025.8, - 'hydro': 689.052, - 'nuclear': 21003.7, - 'oil': 305.329, + 'coal': 15063.844, + 'gas': 19654.5, + 'hydro': 245.107, + 'nuclear': 24203.5, + 'oil': 364.105, 'solar': 0.0, - 'unknown': 4205.84, + 'unknown': 3349.35, + 'wind': 374.939, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -823.368, + 'hydro': -1031.37, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23537.016, - 'gas': 18836.5, - 'hydro': 689.584, - 'nuclear': 21013.5, - 'oil': 305.148, + 'coal': 15064.077, + 'gas': 19575.4, + 'hydro': 250.389, + 'nuclear': 24155.4, + 'oil': 363.265, 'solar': 0.0, - 'unknown': 4162.06, + 'unknown': 3343.2, + 'wind': 367.346, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -644.575, + 'hydro': -1079.17, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23514.322, - 'gas': 18769.6, - 'hydro': 690.643, - 'nuclear': 20990.4, - 'oil': 303.072, + 'coal': 15096.811, + 'gas': 19798.2, + 'hydro': 242.278, + 'nuclear': 24194.1, + 'oil': 364.416, 'solar': 0.0, - 'unknown': 4129.88, + 'unknown': 3343.79, + 'wind': 378.451, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -643.789, + 'hydro': -852.022, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23489.485, - 'gas': 18448.1, - 'hydro': 689.612, - 'nuclear': 21014.8, - 'oil': 304.466, + 'coal': 15021.958, + 'gas': 19370.0, + 'hydro': 233.194, + 'nuclear': 24188.9, + 'oil': 363.456, 'solar': 0.0, - 'unknown': 4098.81, + 'unknown': 3336.49, + 'wind': 381.915, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -648.847, + 'hydro': -798.873, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 21, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 21, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23470.457, - 'gas': 18438.6, - 'hydro': 689.492, - 'nuclear': 21021.0, - 'oil': 304.172, + 'coal': 15107.118, + 'gas': 19446.2, + 'hydro': 240.337, + 'nuclear': 24156.2, + 'oil': 364.077, 'solar': 0.0, - 'unknown': 4072.03, + 'unknown': 3334.89, + 'wind': 379.939, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -648.185, + 'hydro': -863.181, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23534.018, - 'gas': 18335.7, - 'hydro': 686.214, - 'nuclear': 20998.1, - 'oil': 306.343, + 'coal': 15137.151, + 'gas': 19615.1, + 'hydro': 248.136, + 'nuclear': 24165.7, + 'oil': 364.928, 'solar': 0.0, - 'unknown': 4047.08, + 'unknown': 3327.99, + 'wind': 392.434, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -650.269, + 'hydro': -875.241, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23451.878, - 'gas': 18449.6, - 'hydro': 686.773, - 'nuclear': 20993.3, - 'oil': 305.183, + 'coal': 15101.597, + 'gas': 19895.9, + 'hydro': 241.583, + 'nuclear': 24169.9, + 'oil': 364.482, 'solar': 0.0, - 'unknown': 4018.27, + 'unknown': 3319.88, + 'wind': 400.036, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -656.417, + 'hydro': -854.384, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23646.245, - 'gas': 18351.9, - 'hydro': 663.805, - 'nuclear': 21024.5, - 'oil': 304.958, + 'coal': 15098.284, + 'gas': 19938.2, + 'hydro': 237.936, + 'nuclear': 24150.7, + 'oil': 364.008, 'solar': 0.0, - 'unknown': 3979.79, + 'unknown': 3312.43, + 'wind': 404.564, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -669.735, + 'hydro': -836.469, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23688.954, - 'gas': 18242.5, - 'hydro': 662.178, - 'nuclear': 21025.4, - 'oil': 305.379, + 'coal': 15208.759, + 'gas': 19971.8, + 'hydro': 248.014, + 'nuclear': 24146.8, + 'oil': 364.559, 'solar': 0.0, - 'unknown': 3963.38, + 'unknown': 3305.77, + 'wind': 379.915, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -635.765, + 'hydro': -814.817, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23889.313, - 'gas': 18128.7, - 'hydro': 665.263, - 'nuclear': 21017.5, - 'oil': 305.107, + 'coal': 15187.914, + 'gas': 20129.5, + 'hydro': 199.699, + 'nuclear': 24188.4, + 'oil': 363.853, 'solar': 0.0, - 'unknown': 3934.55, + 'unknown': 3297.85, + 'wind': 385.55, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -668.872, + 'hydro': -729.596, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23823.157, - 'gas': 17945.8, - 'hydro': 661.232, - 'nuclear': 20998.8, - 'oil': 306.52, + 'coal': 15170.538, + 'gas': 19947.9, + 'hydro': 197.662, + 'nuclear': 24169.6, + 'oil': 363.962, 'solar': 0.0, - 'unknown': 3904.66, + 'unknown': 3305.82, + 'wind': 398.197, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -638.573, + 'hydro': -728.466, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23738.947, - 'gas': 17659.7, - 'hydro': 650.865, - 'nuclear': 21017.3, - 'oil': 305.455, + 'coal': 15153.494, + 'gas': 19858.7, + 'hydro': 200.638, + 'nuclear': 24133.6, + 'oil': 364.404, 'solar': 0.0, - 'unknown': 3887.86, + 'unknown': 3300.46, + 'wind': 408.872, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -650.65, + 'hydro': -735.859, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23673.077, - 'gas': 17514.7, - 'hydro': 649.58, - 'nuclear': 21019.3, - 'oil': 305.077, + 'coal': 15110.663, + 'gas': 19949.8, + 'hydro': 115.798, + 'nuclear': 24151.1, + 'oil': 363.392, 'solar': 0.0, - 'unknown': 3879.18, + 'unknown': 3292.85, + 'wind': 407.016, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -638.921, + 'hydro': -737.419, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23760.353, - 'gas': 17397.9, - 'hydro': 652.48, - 'nuclear': 21026.4, - 'oil': 305.566, + 'coal': 15083.22, + 'gas': 19575.5, + 'hydro': 39.2879, + 'nuclear': 24173.6, + 'oil': 364.19, 'solar': 0.0, - 'unknown': 3864.85, + 'unknown': 3289.28, + 'wind': 407.101, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -646.358, + 'hydro': -720.656, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23757.735, - 'gas': 17108.9, - 'hydro': 651.954, - 'nuclear': 21016.0, - 'oil': 305.415, + 'coal': 15089.41, + 'gas': 19604.8, + 'hydro': 39.4359, + 'nuclear': 24154.7, + 'oil': 362.624, 'solar': 0.0, - 'unknown': 3860.11, + 'unknown': 3281.83, + 'wind': 390.382, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -656.59, + 'hydro': -739.031, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23787.083, - 'gas': 16936.5, - 'hydro': 651.208, - 'nuclear': 21018.3, - 'oil': 304.212, + 'coal': 15089.653, + 'gas': 19548.0, + 'hydro': 39.4482, + 'nuclear': 24147.0, + 'oil': 362.858, 'solar': 0.0, - 'unknown': 3858.19, + 'unknown': 3278.0, + 'wind': 382.7, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -636.344, + 'hydro': -734.685, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 22, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 22, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23653.436, - 'gas': 16769.4, - 'hydro': 648.488, - 'nuclear': 21023.1, - 'oil': 305.759, + 'coal': 15063.484, + 'gas': 19408.0, + 'hydro': 39.4033, + 'nuclear': 24170.8, + 'oil': 363.248, 'solar': 0.0, - 'unknown': 3854.5, + 'unknown': 3268.34, + 'wind': 375.826, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -635.101, + 'hydro': -729.511, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 23, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23664.894, - 'gas': 16684.1, - 'hydro': 651.528, - 'nuclear': 21023.6, - 'oil': 304.292, + 'coal': 15256.879, + 'gas': 19565.2, + 'hydro': 39.5655, + 'nuclear': 24187.0, + 'oil': 364.105, 'solar': 0.0, - 'unknown': 3852.83, + 'unknown': 3256.59, + 'wind': 382.195, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -641.672, + 'hydro': -768.727, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 23, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23539.45, - 'gas': 16717.7, - 'hydro': 649.613, - 'nuclear': 21012.8, - 'oil': 304.974, + 'coal': 15338.959, + 'gas': 20393.7, + 'hydro': 39.4069, + 'nuclear': 24168.4, + 'oil': 364.249, 'solar': 0.0, - 'unknown': 3850.78, + 'unknown': 3188.17, + 'wind': 371.972, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -632.988, + 'hydro': -749.907, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2025, 1, 5, 23, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23636.02, - 'gas': 16600.0, - 'hydro': 651.319, - 'nuclear': 21028.5, - 'oil': 304.305, + 'coal': 15280.791, + 'gas': 20716.8, + 'hydro': 39.4469, + 'nuclear': 24174.8, + 'oil': 364.165, 'solar': 0.0, - 'unknown': 3835.13, + 'unknown': 3191.41, + 'wind': 390.882, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -445.401, + 'hydro': -742.367, }), 'zoneKey': 'KR', }), + ]) +# --- +# name: test_production_historical + list([ dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23568.115, - 'gas': 16460.8, - 'hydro': 651.741, - 'nuclear': 21022.0, - 'oil': 304.412, + 'coal': 22908.953, + 'gas': 13844.6, + 'hydro': 903.194, + 'nuclear': 21038.2, + 'oil': 233.421, 'solar': 0.0, - 'unknown': 3820.16, + 'unknown': 3591.31, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -448.64, + 'hydro': -516.098, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23564.371, - 'gas': 16313.8, - 'hydro': 653.166, - 'nuclear': 21017.5, - 'oil': 305.195, + 'coal': 22938.433, + 'gas': 13555.1, + 'hydro': 896.427, + 'nuclear': 21011.6, + 'oil': 232.243, 'solar': 0.0, - 'unknown': 3812.62, + 'unknown': 3585.74, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -449.037, + 'hydro': -589.946, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23461.98, - 'gas': 15918.8, - 'hydro': 652.409, - 'nuclear': 21017.2, - 'oil': 305.771, + 'coal': 23041.143, + 'gas': 13276.3, + 'hydro': 916.608, + 'nuclear': 21025.6, + 'oil': 232.751, 'solar': 0.0, - 'unknown': 3810.68, + 'unknown': 3580.93, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -442.143, + 'hydro': -340.346, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23283.904, - 'gas': 15557.2, - 'hydro': 652.589, - 'nuclear': 21029.4, - 'oil': 304.393, + 'coal': 23081.68, + 'gas': 13092.5, + 'hydro': 913.775, + 'nuclear': 21037.4, + 'oil': 233.916, 'solar': 0.0, - 'unknown': 3812.09, + 'unknown': 3578.75, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -440.388, + 'hydro': -339.555, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23271.213, - 'gas': 15435.1, - 'hydro': 654.279, - 'nuclear': 21018.6, - 'oil': 305.209, + 'coal': 22909.484, + 'gas': 12739.8, + 'hydro': 916.159, + 'nuclear': 21036.2, + 'oil': 233.141, 'solar': 0.0, - 'unknown': 3803.64, + 'unknown': 3585.31, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -439.749, + 'hydro': -316.703, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23268.711, - 'gas': 15103.3, - 'hydro': 652.968, - 'nuclear': 21024.4, - 'oil': 305.323, + 'coal': 22966.015, + 'gas': 12579.7, + 'hydro': 916.721, + 'nuclear': 21020.4, + 'oil': 233.234, 'solar': 0.0, - 'unknown': 3789.01, + 'unknown': 3589.98, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -442.203, + 'hydro': -329.967, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23301.872, - 'gas': 14911.3, - 'hydro': 630.929, - 'nuclear': 21015.4, - 'oil': 304.956, + 'coal': 22810.238, + 'gas': 12370.4, + 'hydro': 916.446, + 'nuclear': 21037.5, + 'oil': 232.829, 'solar': 0.0, - 'unknown': 3787.08, + 'unknown': 3587.11, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -453.978, + 'hydro': -305.277, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 23196.116, - 'gas': 14573.8, - 'hydro': 619.958, - 'nuclear': 21023.7, - 'oil': 304.444, + 'coal': 22660.447, + 'gas': 12195.8, + 'hydro': 915.268, + 'nuclear': 21039.3, + 'oil': 232.736, 'solar': 0.0, - 'unknown': 3783.48, + 'unknown': 3597.75, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -445.314, + 'hydro': -303.092, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 1, 23, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 22896.78, - 'gas': 14224.4, - 'hydro': 637.67, - 'nuclear': 21027.5, - 'oil': 305.52, + 'coal': 22802.104, + 'gas': 12057.4, + 'hydro': 917.746, + 'nuclear': 21029.8, + 'oil': 232.921, 'solar': 0.0, - 'unknown': 3787.59, + 'unknown': 3600.07, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -437.866, + 'hydro': -335.48, }), 'zoneKey': 'KR', }), - ]) -# --- -# name: test_production_realtime - list([ dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25015.706, - 'gas': 15664.3, - 'hydro': 69.8516, - 'nuclear': 21366.0, - 'oil': 315.91, + 'coal': 22701.316, + 'gas': 11852.1, + 'hydro': 914.957, + 'nuclear': 21031.1, + 'oil': 232.963, 'solar': 0.0, - 'unknown': 3249.26, + 'unknown': 3601.07, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -312.628, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24754.673, - 'gas': 15643.1, - 'hydro': 69.6052, - 'nuclear': 21354.8, - 'oil': 315.605, + 'coal': 22672.138, + 'gas': 11671.5, + 'hydro': 915.434, + 'nuclear': 21039.4, + 'oil': 233.214, 'solar': 0.0, - 'unknown': 3251.67, + 'unknown': 3602.41, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -313.871, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 0, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24750.088, - 'gas': 15347.7, - 'hydro': 69.6508, - 'nuclear': 21349.8, - 'oil': 315.581, + 'coal': 22629.656, + 'gas': 11507.0, + 'hydro': 915.273, + 'nuclear': 21037.6, + 'oil': 233.604, 'solar': 0.0, - 'unknown': 3244.96, + 'unknown': 3600.5, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -199.764, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24741.137, - 'gas': 14987.5, - 'hydro': 69.5022, - 'nuclear': 21359.2, - 'oil': 316.018, + 'coal': 22680.822, + 'gas': 11554.4, + 'hydro': 917.218, + 'nuclear': 21029.6, + 'oil': 232.666, 'solar': 0.0, - 'unknown': 3246.49, + 'unknown': 3584.35, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.0999, + 'hydro': -1.40728, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24516.395, - 'gas': 14689.9, - 'hydro': 69.5163, - 'nuclear': 21355.0, - 'oil': 316.291, + 'coal': 22596.407, + 'gas': 11538.1, + 'hydro': 915.729, + 'nuclear': 21030.7, + 'oil': 233.454, 'solar': 0.0, - 'unknown': 3237.23, + 'unknown': 3583.21, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -1.30742, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24528.123, - 'gas': 14538.9, - 'hydro': 69.751, - 'nuclear': 21339.4, - 'oil': 310.168, + 'coal': 22662.533, + 'gas': 11496.0, + 'hydro': 918.72, + 'nuclear': 21035.8, + 'oil': 232.218, 'solar': 0.0, - 'unknown': 3239.52, + 'unknown': 3573.55, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.0999, + 'hydro': -1.40728, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24506.981, - 'gas': 14186.2, - 'hydro': 69.4446, - 'nuclear': 21358.3, - 'oil': 275.383, + 'coal': 22513.185, + 'gas': 11290.9, + 'hydro': 916.142, + 'nuclear': 21032.2, + 'oil': 232.794, 'solar': 0.0, - 'unknown': 3238.8, + 'unknown': 3578.28, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.0999, + 'hydro': -1.40728, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24510.146, - 'gas': 13950.3, - 'hydro': 69.7571, - 'nuclear': 21359.4, - 'oil': 256.734, + 'coal': 22523.333, + 'gas': 11000.5, + 'hydro': 918.401, + 'nuclear': 21022.5, + 'oil': 232.961, 'solar': 0.0, - 'unknown': 3243.99, + 'unknown': 3565.86, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.0999, + 'hydro': -1.40728, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24436.083, - 'gas': 14062.6, - 'hydro': 69.7195, - 'nuclear': 21357.8, - 'oil': 234.902, + 'coal': 22584.408, + 'gas': 11000.1, + 'hydro': 923.6, + 'nuclear': 21024.3, + 'oil': 233.034, 'solar': 0.0, - 'unknown': 3240.0, + 'unknown': 3558.27, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.20757, + 'hydro': -1.50762, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24427.801, - 'gas': 13754.4, - 'hydro': 69.7729, - 'nuclear': 21372.3, - 'oil': 230.842, + 'coal': 22556.164, + 'gas': 10939.0, + 'hydro': 921.644, + 'nuclear': 21017.8, + 'oil': 233.258, 'solar': 0.0, - 'unknown': 3241.54, + 'unknown': 3559.68, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -1.30742, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24296.359, - 'gas': 13562.3, - 'hydro': 69.8389, - 'nuclear': 21358.2, - 'oil': 230.696, + 'coal': 22591.473, + 'gas': 10969.8, + 'hydro': 921.963, + 'nuclear': 21013.4, + 'oil': 233.464, 'solar': 0.0, - 'unknown': 3241.61, + 'unknown': 3552.51, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -1.30742, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 0, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24378.042, - 'gas': 13208.3, - 'hydro': 69.7927, - 'nuclear': 21350.0, - 'oil': 230.637, + 'coal': 22531.011, + 'gas': 10821.3, + 'hydro': 917.243, + 'nuclear': 21024.7, + 'oil': 233.445, 'solar': 0.0, - 'unknown': 3240.84, + 'unknown': 3549.66, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -0.999805, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24443.553, - 'gas': 12945.8, - 'hydro': 69.6605, - 'nuclear': 21358.5, - 'oil': 230.437, + 'coal': 22612.05, + 'gas': 10769.7, + 'hydro': 925.234, + 'nuclear': 21020.0, + 'oil': 232.55, 'solar': 0.0, - 'unknown': 3242.14, + 'unknown': 3543.52, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -0.499902, + 'hydro': -1.09966, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24639.504, - 'gas': 13016.6, - 'hydro': 69.7281, - 'nuclear': 21347.5, - 'oil': 231.206, + 'coal': 22437.457, + 'gas': 10520.8, + 'hydro': 917.516, + 'nuclear': 21024.1, + 'oil': 233.215, 'solar': 0.0, - 'unknown': 3232.05, + 'unknown': 3541.2, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 299.6, + 'hydro': -0.899951, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 1, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24458.484, - 'gas': 13069.8, - 'hydro': 69.9264, - 'nuclear': 21373.7, - 'oil': 231.026, + 'coal': 22580.309, + 'gas': 10555.8, + 'hydro': 929.261, + 'nuclear': 21024.3, + 'oil': 232.677, 'solar': 0.0, - 'unknown': 3230.42, + 'unknown': 3547.21, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 309.493, + 'hydro': 342.369, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24583.86, - 'gas': 12725.4, - 'hydro': 69.5896, - 'nuclear': 21355.2, - 'oil': 231.368, + 'coal': 22748.751, + 'gas': 10613.8, + 'hydro': 922.483, + 'nuclear': 21028.0, + 'oil': 232.472, 'solar': 0.0, - 'unknown': 3232.93, + 'unknown': 3623.64, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 332.543, + 'hydro': 631.47, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24713.463, - 'gas': 13196.6, - 'hydro': 69.8059, - 'nuclear': 21353.4, - 'oil': 230.698, + 'coal': 22790.83, + 'gas': 10728.1, + 'hydro': 918.194, + 'nuclear': 21027.0, + 'oil': 233.074, 'solar': 0.0, - 'unknown': 3231.12, + 'unknown': 3635.64, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 689.103, + 'hydro': 641.114, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24712.132, - 'gas': 12880.6, - 'hydro': 69.7432, - 'nuclear': 21404.4, - 'oil': 231.015, + 'coal': 22835.378, + 'gas': 10230.1, + 'hydro': 918.713, + 'nuclear': 21019.2, + 'oil': 232.943, 'solar': 0.0, - 'unknown': 3233.14, + 'unknown': 3643.75, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 689.403, + 'hydro': 639.205, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24840.49, - 'gas': 12744.1, - 'hydro': 69.8212, - 'nuclear': 21371.1, - 'oil': 231.335, + 'coal': 22973.235, + 'gas': 9954.98, + 'hydro': 920.206, + 'nuclear': 21011.1, + 'oil': 233.13, 'solar': 0.0, - 'unknown': 3228.0, + 'unknown': 3644.67, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 687.768, + 'hydro': 637.734, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24699.167, - 'gas': 12545.5, - 'hydro': 69.6322, - 'nuclear': 21367.8, - 'oil': 229.807, + 'coal': 22868.857, + 'gas': 10116.1, + 'hydro': 916.905, + 'nuclear': 21022.5, + 'oil': 233.043, 'solar': 0.0, - 'unknown': 3236.97, + 'unknown': 3658.83, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 689.603, + 'hydro': 659.42, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24883.453, - 'gas': 12688.5, - 'hydro': 69.9748, - 'nuclear': 21365.5, - 'oil': 229.95, + 'coal': 22761.722, + 'gas': 10383.8, + 'hydro': 920.219, + 'nuclear': 21006.0, + 'oil': 232.87, 'solar': 0.0, - 'unknown': 3245.72, + 'unknown': 3667.92, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1021.2, + 'hydro': 845.45, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24830.119, - 'gas': 12732.5, - 'hydro': 69.8759, - 'nuclear': 21345.5, - 'oil': 230.379, + 'coal': 22846.713, + 'gas': 10453.0, + 'hydro': 925.53, + 'nuclear': 21009.2, + 'oil': 233.608, 'solar': 0.0, - 'unknown': 3253.94, + 'unknown': 3665.5, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1017.64, + 'hydro': 1165.58, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24589.225, - 'gas': 12319.4, - 'hydro': 69.5709, - 'nuclear': 21346.6, - 'oil': 230.691, + 'coal': 22862.853, + 'gas': 10366.4, + 'hydro': 918.127, + 'nuclear': 21013.3, + 'oil': 233.967, 'solar': 0.0, - 'unknown': 3260.69, + 'unknown': 3669.83, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1024.47, + 'hydro': 1185.96, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 1, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24673.025, - 'gas': 12196.1, - 'hydro': 69.7751, - 'nuclear': 21350.2, - 'oil': 229.781, + 'coal': 23086.51, + 'gas': 10386.3, + 'hydro': 928.378, + 'nuclear': 21000.6, + 'oil': 234.501, 'solar': 0.0, - 'unknown': 3273.52, + 'unknown': 3679.21, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1020.94, + 'hydro': 1523.29, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24694.277, - 'gas': 12355.4, - 'hydro': 69.9261, - 'nuclear': 21370.9, - 'oil': 229.306, + 'coal': 23060.001, + 'gas': 10409.3, + 'hydro': 922.15, + 'nuclear': 20993.0, + 'oil': 233.943, 'solar': 0.0, - 'unknown': 3261.7, + 'unknown': 3688.4, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1352.53, + 'hydro': 1548.74, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24832.088, - 'gas': 12300.1, - 'hydro': 69.7717, - 'nuclear': 21345.9, - 'oil': 230.639, + 'coal': 22996.375, + 'gas': 10255.8, + 'hydro': 916.227, + 'nuclear': 21010.4, + 'oil': 233.809, 'solar': 0.0, - 'unknown': 3263.7, + 'unknown': 3693.8, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1354.52, + 'hydro': 1550.86, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 2, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24825.509, - 'gas': 12271.7, - 'hydro': 69.8554, - 'nuclear': 21351.2, - 'oil': 229.891, + 'coal': 22752.437, + 'gas': 10013.8, + 'hydro': 905.551, + 'nuclear': 20991.4, + 'oil': 233.371, 'solar': 0.0, - 'unknown': 3273.0, + 'unknown': 3703.1, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1354.32, + 'hydro': 1227.1, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24774.161, - 'gas': 12251.5, - 'hydro': 69.9165, - 'nuclear': 21351.1, - 'oil': 232.586, + 'coal': 22703.064, + 'gas': 9986.0, + 'hydro': 920.526, + 'nuclear': 20983.0, + 'oil': 232.101, 'solar': 0.0, - 'unknown': 3415.13, + 'unknown': 3715.19, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1354.52, + 'hydro': 1221.35, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24803.363, - 'gas': 12069.2, - 'hydro': 69.6763, - 'nuclear': 21376.4, - 'oil': 231.399, + 'coal': 22644.175, + 'gas': 9871.57, + 'hydro': 914.427, + 'nuclear': 20974.4, + 'oil': 233.94, 'solar': 0.0, - 'unknown': 3449.69, + 'unknown': 3718.35, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1357.64, + 'hydro': 1223.54, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24759.876, - 'gas': 12235.0, - 'hydro': 69.8886, - 'nuclear': 21363.6, - 'oil': 231.225, + 'coal': 22598.767, + 'gas': 9940.93, + 'hydro': 919.945, + 'nuclear': 20959.5, + 'oil': 232.953, 'solar': 0.0, - 'unknown': 3463.25, + 'unknown': 3728.66, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1556.52, + 'hydro': 1225.07, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24807.269, - 'gas': 12182.6, - 'hydro': 69.8092, - 'nuclear': 21377.1, - 'oil': 230.991, + 'coal': 22565.326, + 'gas': 10045.3, + 'hydro': 919.4, + 'nuclear': 20986.7, + 'oil': 233.711, 'solar': 0.0, - 'unknown': 3465.82, + 'unknown': 3737.59, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1555.54, + 'hydro': 1223.0, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24746.671, - 'gas': 12206.8, - 'hydro': 69.9393, - 'nuclear': 21373.9, - 'oil': 231.148, + 'coal': 22483.343, + 'gas': 9987.6, + 'hydro': 912.955, + 'nuclear': 20981.8, + 'oil': 233.46, 'solar': 0.0, - 'unknown': 3471.88, + 'unknown': 3750.42, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1568.33, + 'hydro': 1226.11, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24693.102, - 'gas': 12177.8, - 'hydro': 70.0318, - 'nuclear': 21406.5, - 'oil': 230.143, + 'coal': 22579.889, + 'gas': 10102.7, + 'hydro': 919.885, + 'nuclear': 20965.3, + 'oil': 233.364, 'solar': 0.0, - 'unknown': 3470.51, + 'unknown': 3763.87, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1612.24, + 'hydro': 1556.91, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24921.785, - 'gas': 12231.0, - 'hydro': 69.7892, - 'nuclear': 21352.6, - 'oil': 231.274, + 'coal': 22600.16, + 'gas': 10148.5, + 'hydro': 915.215, + 'nuclear': 20962.8, + 'oil': 233.653, 'solar': 0.0, - 'unknown': 3461.24, + 'unknown': 3777.19, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1812.08, + 'hydro': 1576.82, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24645.006, - 'gas': 11967.9, - 'hydro': 69.5976, - 'nuclear': 21360.6, - 'oil': 230.344, + 'coal': 22894.034, + 'gas': 10120.0, + 'hydro': 921.237, + 'nuclear': 20969.8, + 'oil': 233.114, 'solar': 0.0, - 'unknown': 3462.53, + 'unknown': 3779.67, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1817.81, + 'hydro': 1583.7, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 2, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24680.612, - 'gas': 11743.0, - 'hydro': 69.8791, - 'nuclear': 21356.3, - 'oil': 230.248, + 'coal': 22960.917, + 'gas': 10091.0, + 'hydro': 914.431, + 'nuclear': 20966.6, + 'oil': 233.036, 'solar': 0.0, - 'unknown': 3459.45, + 'unknown': 3797.79, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1816.52, + 'hydro': 1973.77, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24698.01, - 'gas': 11671.0, - 'hydro': 69.9523, - 'nuclear': 21360.8, - 'oil': 230.534, + 'coal': 22939.481, + 'gas': 10287.4, + 'hydro': 918.869, + 'nuclear': 20960.3, + 'oil': 233.838, 'solar': 0.0, - 'unknown': 3464.3, + 'unknown': 3798.08, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1813.64, + 'hydro': 1974.83, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24698.048, - 'gas': 11660.4, - 'hydro': 69.8315, - 'nuclear': 21372.1, - 'oil': 230.553, + 'coal': 22945.114, + 'gas': 10188.4, + 'hydro': 916.919, + 'nuclear': 20947.6, + 'oil': 233.387, 'solar': 0.0, - 'unknown': 3471.41, + 'unknown': 3807.87, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1814.9, + 'hydro': 1973.13, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 3, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24816.98, - 'gas': 11744.2, - 'hydro': 69.8828, - 'nuclear': 21343.6, - 'oil': 230.335, + 'coal': 22858.257, + 'gas': 10053.7, + 'hydro': 914.063, + 'nuclear': 20985.6, + 'oil': 232.425, 'solar': 0.0, - 'unknown': 3475.85, + 'unknown': 3804.7, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1810.77, + 'hydro': 1973.54, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 4, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24611.244, - 'gas': 11821.3, - 'hydro': 69.9201, - 'nuclear': 21371.7, - 'oil': 230.102, - 'solar': 0.0, - 'unknown': 3470.09, + 'coal': 22813.236, + 'gas': 10154.9, + 'hydro': 915.895, + 'nuclear': 20981.2, + 'oil': 233.123, + 'solar': 13.2724, + 'unknown': 3809.74, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1813.99, + 'hydro': 1977.58, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 4, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24686.278, - 'gas': 11754.1, - 'hydro': 69.7564, - 'nuclear': 21356.6, - 'oil': 229.928, - 'solar': 0.0, - 'unknown': 3474.92, + 'coal': 22693.475, + 'gas': 10201.8, + 'hydro': 916.49, + 'nuclear': 20955.6, + 'oil': 232.885, + 'solar': 14.3104, + 'unknown': 3806.17, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1815.22, + 'hydro': 1974.98, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 4, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24695.684, - 'gas': 11591.9, - 'hydro': 69.69, - 'nuclear': 21356.7, - 'oil': 229.826, - 'solar': 0.0, - 'unknown': 3472.51, + 'coal': 22890.955, + 'gas': 10053.5, + 'hydro': 912.207, + 'nuclear': 20961.6, + 'oil': 233.855, + 'solar': 14.3104, + 'unknown': 3808.91, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1813.51, + 'hydro': 1967.6, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 4, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24509.163, - 'gas': 11425.7, - 'hydro': 69.6702, - 'nuclear': 21347.7, - 'oil': 231.099, - 'solar': 0.0, - 'unknown': 3466.87, + 'coal': 22952.471, + 'gas': 10111.0, + 'hydro': 913.066, + 'nuclear': 20962.4, + 'oil': 233.099, + 'solar': 13.9313, + 'unknown': 3813.08, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1964.76, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22704.578, + 'gas': 9998.75, + 'hydro': 910.253, + 'nuclear': 20966.0, + 'oil': 233.72, + 'solar': 13.1479, + 'unknown': 3818.03, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1966.67, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22751.1, + 'gas': 10068.3, + 'hydro': 913.646, + 'nuclear': 20960.3, + 'oil': 233.557, + 'solar': 14.2535, + 'unknown': 3822.17, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1965.06, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23002.691, + 'gas': 10200.6, + 'hydro': 916.09, + 'nuclear': 20957.3, + 'oil': 234.468, + 'solar': 13.877, + 'unknown': 3821.88, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1968.35, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22982.019, + 'gas': 10318.3, + 'hydro': 913.666, + 'nuclear': 20962.2, + 'oil': 233.952, + 'solar': 13.7207, + 'unknown': 3820.72, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1963.73, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22792.641, + 'gas': 10203.0, + 'hydro': 908.195, + 'nuclear': 20965.5, + 'oil': 234.134, + 'solar': 14.1723, + 'unknown': 3816.82, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1968.08, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22781.908, + 'gas': 10172.8, + 'hydro': 908.601, + 'nuclear': 20972.8, + 'oil': 233.51, + 'solar': 13.9179, + 'unknown': 3817.51, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1814.19, + 'hydro': 1967.17, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22931.14, + 'gas': 10362.2, + 'hydro': 911.604, + 'nuclear': 20981.3, + 'oil': 234.021, + 'solar': 13.2749, + 'unknown': 3819.66, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1961.68, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 4, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22854.252, + 'gas': 10387.5, + 'hydro': 910.003, + 'nuclear': 20989.6, + 'oil': 233.764, + 'solar': 14.8167, + 'unknown': 3816.58, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1965.51, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22941.884, + 'gas': 10259.4, + 'hydro': 915.017, + 'nuclear': 20961.4, + 'oil': 233.913, + 'solar': 14.3421, + 'unknown': 3819.89, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1958.83, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22993.939, + 'gas': 10446.5, + 'hydro': 913.565, + 'nuclear': 20969.3, + 'oil': 234.046, + 'solar': 21.5336, + 'unknown': 3824.07, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1962.18, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23057.661, + 'gas': 10618.2, + 'hydro': 904.875, + 'nuclear': 20981.5, + 'oil': 233.882, + 'solar': 20.6069, + 'unknown': 3826.77, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1963.77, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22762.978, + 'gas': 10340.2, + 'hydro': 899.208, + 'nuclear': 21011.9, + 'oil': 234.061, + 'solar': 20.8437, + 'unknown': 3813.24, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1548.86, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23009.264, + 'gas': 10470.5, + 'hydro': 905.958, + 'nuclear': 20990.1, + 'oil': 233.101, + 'solar': 20.6732, + 'unknown': 3813.21, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1545.28, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22808.523, + 'gas': 10626.6, + 'hydro': 901.12, + 'nuclear': 20988.2, + 'oil': 234.32, + 'solar': 20.3991, + 'unknown': 3838.96, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1546.0, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22801.413, + 'gas': 10615.6, + 'hydro': 901.758, + 'nuclear': 20987.1, + 'oil': 233.922, + 'solar': 20.8724, + 'unknown': 3833.91, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1545.11, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22853.189, + 'gas': 10810.3, + 'hydro': 903.4, + 'nuclear': 20988.5, + 'oil': 233.233, + 'solar': 20.6112, + 'unknown': 3837.88, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1543.86, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23064.794, + 'gas': 10925.9, + 'hydro': 909.948, + 'nuclear': 20956.3, + 'oil': 233.556, + 'solar': 20.4901, + 'unknown': 3840.72, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1542.06, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22961.33, + 'gas': 10947.6, + 'hydro': 907.209, + 'nuclear': 20982.7, + 'oil': 234.543, + 'solar': 20.4734, + 'unknown': 3842.84, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1541.33, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22847.785, + 'gas': 11038.7, + 'hydro': 901.711, + 'nuclear': 20986.6, + 'oil': 234.307, + 'solar': 20.7031, + 'unknown': 3838.8, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1542.14, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 5, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22704.194, + 'gas': 11238.6, + 'hydro': 901.749, + 'nuclear': 21001.0, + 'oil': 233.171, + 'solar': 20.7771, + 'unknown': 3845.59, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1543.37, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22913.381, + 'gas': 11449.5, + 'hydro': 927.439, + 'nuclear': 20984.7, + 'oil': 233.47, + 'solar': 20.4454, + 'unknown': 3838.42, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1539.31, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23026.936, + 'gas': 11830.9, + 'hydro': 944.4, + 'nuclear': 20994.8, + 'oil': 233.067, + 'solar': 20.7108, + 'unknown': 3850.87, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1542.4, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22863.35, + 'gas': 11902.0, + 'hydro': 930.89, + 'nuclear': 20995.9, + 'oil': 233.031, + 'solar': 21.1791, + 'unknown': 3849.52, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1215.03, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22876.532, + 'gas': 12087.2, + 'hydro': 930.786, + 'nuclear': 21012.3, + 'oil': 232.192, + 'solar': 21.3822, + 'unknown': 3847.7, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 1213.15, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22811.51, + 'gas': 12184.7, + 'hydro': 931.446, + 'nuclear': 20995.9, + 'oil': 231.933, + 'solar': 22.2722, + 'unknown': 3851.76, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 908.016, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22777.535, + 'gas': 12385.7, + 'hydro': 933.499, + 'nuclear': 20989.3, + 'oil': 231.372, + 'solar': 24.3191, + 'unknown': 3850.6, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 906.428, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22820.481, + 'gas': 12623.1, + 'hydro': 933.495, + 'nuclear': 21005.2, + 'oil': 232.082, + 'solar': 28.7164, + 'unknown': 3863.03, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 905.752, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22905.216, + 'gas': 12924.5, + 'hydro': 930.044, + 'nuclear': 20987.4, + 'oil': 231.623, + 'solar': 40.576, + 'unknown': 3864.4, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 907.837, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22821.618, + 'gas': 13079.4, + 'hydro': 932.116, + 'nuclear': 21005.1, + 'oil': 231.889, + 'solar': 56.2159, + 'unknown': 3850.35, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 907.772, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23069.908, + 'gas': 13161.6, + 'hydro': 946.032, + 'nuclear': 21003.1, + 'oil': 232.754, + 'solar': 77.6794, + 'unknown': 3854.44, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 903.596, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23056.439, + 'gas': 13448.3, + 'hydro': 933.88, + 'nuclear': 21008.3, + 'oil': 231.58, + 'solar': 104.674, + 'unknown': 3850.27, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 905.15, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 6, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23111.071, + 'gas': 13883.5, + 'hydro': 929.089, + 'nuclear': 21014.5, + 'oil': 232.687, + 'solar': 137.396, + 'unknown': 3846.07, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 904.614, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 22916.071, + 'gas': 14017.6, + 'hydro': 923.634, + 'nuclear': 21014.7, + 'oil': 231.82, + 'solar': 175.106, + 'unknown': 3828.28, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 579.317, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23111.008, + 'gas': 14329.0, + 'hydro': 943.322, + 'nuclear': 21008.6, + 'oil': 232.139, + 'solar': 221.164, + 'unknown': 3816.92, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 376.478, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23229.201, + 'gas': 14512.1, + 'hydro': 934.1, + 'nuclear': 21006.3, + 'oil': 232.339, + 'solar': 272.013, + 'unknown': 3811.15, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 375.524, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23268.339, + 'gas': 14674.6, + 'hydro': 933.921, + 'nuclear': 21023.5, + 'oil': 232.299, + 'solar': 325.857, + 'unknown': 3804.44, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 376.271, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23272.622, + 'gas': 14942.8, + 'hydro': 932.331, + 'nuclear': 21008.3, + 'oil': 232.326, + 'solar': 374.01, + 'unknown': 3787.41, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 376.466, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23395.793, + 'gas': 15193.3, + 'hydro': 936.885, + 'nuclear': 21023.0, + 'oil': 232.488, + 'solar': 425.773, + 'unknown': 3776.64, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 375.875, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23449.431, + 'gas': 15641.6, + 'hydro': 943.498, + 'nuclear': 21008.9, + 'oil': 232.489, + 'solar': 483.597, + 'unknown': 3761.29, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': 375.883, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23495.594, + 'gas': 15513.2, + 'hydro': 929.45, + 'nuclear': 21007.7, + 'oil': 232.946, + 'solar': 543.612, + 'unknown': 3746.04, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -2.60625, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23549.854, + 'gas': 15750.1, + 'hydro': 934.109, + 'nuclear': 21025.0, + 'oil': 232.581, + 'solar': 605.583, + 'unknown': 3736.41, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.40728, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23378.999, + 'gas': 15960.1, + 'hydro': 933.739, + 'nuclear': 21015.0, + 'oil': 233.097, + 'solar': 662.125, + 'unknown': 3721.42, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.30742, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23563.134, + 'gas': 16148.9, + 'hydro': 934.341, + 'nuclear': 21015.6, + 'oil': 231.761, + 'solar': 726.851, + 'unknown': 3713.81, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -0.999805, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 7, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23535.486, + 'gas': 16333.2, + 'hydro': 935.443, + 'nuclear': 21010.5, + 'oil': 232.995, + 'solar': 793.448, + 'unknown': 3698.33, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.40728, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23799.813, + 'gas': 16786.0, + 'hydro': 1029.96, + 'nuclear': 21003.3, + 'oil': 232.01, + 'solar': 866.994, + 'unknown': 3682.35, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -0.79961, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24029.552, + 'gas': 17295.6, + 'hydro': 1041.29, + 'nuclear': 21015.9, + 'oil': 232.238, + 'solar': 928.233, + 'unknown': 3668.94, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.40728, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24094.418, + 'gas': 17573.2, + 'hydro': 1033.38, + 'nuclear': 21007.4, + 'oil': 232.348, + 'solar': 1031.01, + 'unknown': 3623.31, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -0.899707, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24312.984, + 'gas': 17914.5, + 'hydro': 1038.94, + 'nuclear': 21012.6, + 'oil': 232.773, + 'solar': 1113.68, + 'unknown': 3602.88, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -0.899707, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24216.765, + 'gas': 18084.6, + 'hydro': 1018.38, + 'nuclear': 21002.8, + 'oil': 232.331, + 'solar': 1203.87, + 'unknown': 3576.59, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.09966, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24194.405, + 'gas': 18597.7, + 'hydro': 1033.72, + 'nuclear': 21012.7, + 'oil': 231.759, + 'solar': 1286.55, + 'unknown': 3542.12, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.40728, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24245.197, + 'gas': 19118.7, + 'hydro': 1034.47, + 'nuclear': 21017.9, + 'oil': 232.242, + 'solar': 1360.22, + 'unknown': 3531.96, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -0.999805, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24431.668, + 'gas': 19637.3, + 'hydro': 1038.85, + 'nuclear': 21018.9, + 'oil': 232.642, + 'solar': 1443.77, + 'unknown': 3519.0, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.09966, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24323.158, + 'gas': 19788.6, + 'hydro': 1022.21, + 'nuclear': 21019.2, + 'oil': 232.688, + 'solar': 1541.51, + 'unknown': 3488.88, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.09966, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24403.508, + 'gas': 19988.9, + 'hydro': 1024.22, + 'nuclear': 21028.6, + 'oil': 232.251, + 'solar': 1656.12, + 'unknown': 3456.22, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -1.20732, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24314.961, + 'gas': 19883.6, + 'hydro': 1014.86, + 'nuclear': 21007.5, + 'oil': 232.501, + 'solar': 1745.01, + 'unknown': 3444.12, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -201.754, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 8, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24339.798, + 'gas': 20176.3, + 'hydro': 1021.87, + 'nuclear': 21015.7, + 'oil': 233.106, + 'solar': 1822.87, + 'unknown': 3430.76, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -199.469, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24298.768, + 'gas': 20135.7, + 'hydro': 1005.86, + 'nuclear': 21007.1, + 'oil': 232.718, + 'solar': 1919.27, + 'unknown': 3406.77, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -201.007, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24294.466, + 'gas': 20480.5, + 'hydro': 981.258, + 'nuclear': 21019.3, + 'oil': 232.66, + 'solar': 2007.82, + 'unknown': 3384.27, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -199.469, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24299.535, + 'gas': 20421.7, + 'hydro': 983.337, + 'nuclear': 21021.6, + 'oil': 231.773, + 'solar': 2119.28, + 'unknown': 3345.61, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -409.921, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24310.564, + 'gas': 20299.3, + 'hydro': 983.098, + 'nuclear': 21020.3, + 'oil': 232.527, + 'solar': 2262.66, + 'unknown': 3297.6, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -420.585, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24325.17, + 'gas': 20355.3, + 'hydro': 988.446, + 'nuclear': 21010.1, + 'oil': 230.906, + 'solar': 2386.14, + 'unknown': 3259.45, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -417.664, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24252.843, + 'gas': 20354.7, + 'hydro': 976.448, + 'nuclear': 21028.6, + 'oil': 231.732, + 'solar': 2489.65, + 'unknown': 3237.67, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -417.583, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24240.619, + 'gas': 20354.8, + 'hydro': 989.42, + 'nuclear': 21005.1, + 'oil': 233.347, + 'solar': 2594.14, + 'unknown': 3209.98, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -418.582, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 24226.206, + 'gas': 20239.9, + 'hydro': 971.37, + 'nuclear': 21016.8, + 'oil': 233.094, + 'solar': 2712.31, + 'unknown': 3201.04, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -417.125, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23955.794, + 'gas': 20123.9, + 'hydro': 959.183, + 'nuclear': 21005.5, + 'oil': 232.779, + 'solar': 2796.3, + 'unknown': 3187.1, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -411.681, + }), + 'zoneKey': 'KR', + }), + dict({ + 'correctedModes': list([ + ]), + 'datetime': datetime.datetime(2023, 9, 1, 9, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'production': dict({ + 'coal': 23965.175, + 'gas': 20147.9, + 'hydro': 966.191, + 'nuclear': 21017.8, + 'oil': 233.21, + 'solar': 2944.3, + 'unknown': 3159.69, + }), + 'source': 'new.kpx.or.kr', + 'sourceType': , + 'storage': dict({ + 'hydro': -416.756, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 9, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24552.663, - 'gas': 11623.7, - 'hydro': 69.6931, - 'nuclear': 21362.9, - 'oil': 228.998, - 'solar': 0.0, - 'unknown': 3476.26, + 'coal': 23833.672, + 'gas': 20189.7, + 'hydro': 956.031, + 'nuclear': 21007.4, + 'oil': 231.385, + 'solar': 3044.42, + 'unknown': 3150.65, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1812.39, + 'hydro': -411.234, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 9, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24578.497, - 'gas': 11549.4, - 'hydro': 69.7223, - 'nuclear': 21361.3, - 'oil': 230.83, - 'solar': 0.0, - 'unknown': 3476.06, + 'coal': 23768.628, + 'gas': 19957.2, + 'hydro': 964.672, + 'nuclear': 21008.7, + 'oil': 233.416, + 'solar': 3127.01, + 'unknown': 3144.21, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1809.96, + 'hydro': -415.065, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24392.713, - 'gas': 11407.8, - 'hydro': 69.5549, - 'nuclear': 21348.4, - 'oil': 230.137, - 'solar': 0.0, - 'unknown': 3475.1, + 'coal': 23572.387, + 'gas': 19850.4, + 'hydro': 882.371, + 'nuclear': 21008.8, + 'oil': 233.735, + 'solar': 3199.22, + 'unknown': 3122.56, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1811.95, + 'hydro': -412.934, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24425.385, - 'gas': 11319.7, - 'hydro': 69.5699, - 'nuclear': 21378.2, - 'oil': 230.907, - 'solar': 0.0, - 'unknown': 3477.33, + 'coal': 23315.242, + 'gas': 19683.6, + 'hydro': 874.296, + 'nuclear': 21033.2, + 'oil': 231.985, + 'solar': 3355.96, + 'unknown': 3079.66, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1812.98, + 'hydro': -405.847, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 3, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24448.209, - 'gas': 11282.8, - 'hydro': 69.8295, - 'nuclear': 21365.1, - 'oil': 229.912, - 'solar': 0.0, - 'unknown': 3476.09, + 'coal': 23262.46, + 'gas': 20171.2, + 'hydro': 886.226, + 'nuclear': 21011.0, + 'oil': 248.189, + 'solar': 3464.57, + 'unknown': 3043.96, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1807.77, + 'hydro': -214.761, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24374.125, - 'gas': 11425.5, - 'hydro': 69.7864, - 'nuclear': 21380.3, - 'oil': 229.955, - 'solar': 43.036, - 'unknown': 3484.52, + 'coal': 23283.227, + 'gas': 20375.8, + 'hydro': 898.505, + 'nuclear': 21004.9, + 'oil': 256.945, + 'solar': 3556.77, + 'unknown': 2996.99, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1811.83, + 'hydro': -220.824, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24450.661, - 'gas': 11521.5, - 'hydro': 69.8434, - 'nuclear': 21370.4, - 'oil': 230.326, - 'solar': 42.8291, - 'unknown': 3481.4, + 'coal': 23357.071, + 'gas': 20443.5, + 'hydro': 895.03, + 'nuclear': 21020.2, + 'oil': 236.664, + 'solar': 3699.84, + 'unknown': 2874.35, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1805.59, + 'hydro': -219.816, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24271.994, - 'gas': 11444.5, - 'hydro': 69.8488, - 'nuclear': 21372.8, - 'oil': 229.031, - 'solar': 43.141, - 'unknown': 3483.22, + 'coal': 23180.094, + 'gas': 20277.2, + 'hydro': 886.669, + 'nuclear': 21018.8, + 'oil': 233.152, + 'solar': 3814.88, + 'unknown': 2840.05, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1810.18, + 'hydro': -218.743, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24442.212, - 'gas': 11487.4, - 'hydro': 69.911, - 'nuclear': 21384.2, - 'oil': 229.215, - 'solar': 42.9184, - 'unknown': 3482.93, + 'coal': 23068.843, + 'gas': 20204.1, + 'hydro': 877.879, + 'nuclear': 21031.6, + 'oil': 233.034, + 'solar': 3815.97, + 'unknown': 2847.5, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1806.71, + 'hydro': -216.93, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24440.954, - 'gas': 11598.6, - 'hydro': 69.9859, - 'nuclear': 21380.9, - 'oil': 229.772, - 'solar': 42.5468, - 'unknown': 3473.87, + 'coal': 22909.01, + 'gas': 20269.6, + 'hydro': 879.457, + 'nuclear': 21031.1, + 'oil': 233.707, + 'solar': 3926.41, + 'unknown': 2819.86, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1806.98, + 'hydro': -216.923, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24510.588, - 'gas': 11534.9, - 'hydro': 69.9999, - 'nuclear': 21366.8, - 'oil': 230.085, - 'solar': 42.8983, - 'unknown': 3479.03, + 'coal': 22916.342, + 'gas': 20475.9, + 'hydro': 901.524, + 'nuclear': 21024.9, + 'oil': 232.979, + 'solar': 3996.47, + 'unknown': 2800.78, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1801.46, + 'hydro': -1.30742, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24424.461, - 'gas': 11560.8, - 'hydro': 69.9462, - 'nuclear': 21396.3, - 'oil': 230.209, - 'solar': 42.8794, - 'unknown': 3481.32, + 'coal': 22921.763, + 'gas': 20341.2, + 'hydro': 893.648, + 'nuclear': 21024.9, + 'oil': 232.906, + 'solar': 4082.28, + 'unknown': 2780.3, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1807.83, + 'hydro': -0.999805, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24494.454, - 'gas': 11641.3, - 'hydro': 69.931, - 'nuclear': 21377.6, - 'oil': 229.054, - 'solar': 42.7713, - 'unknown': 3481.9, + 'coal': 22977.844, + 'gas': 20362.5, + 'hydro': 900.818, + 'nuclear': 21026.6, + 'oil': 232.82, + 'solar': 4158.27, + 'unknown': 2753.13, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1803.93, + 'hydro': -0.899707, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 10, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24441.584, - 'gas': 11533.6, - 'hydro': 69.5939, - 'nuclear': 21375.5, - 'oil': 228.625, - 'solar': 42.9995, - 'unknown': 3477.45, + 'coal': 22775.636, + 'gas': 20195.2, + 'hydro': 886.276, + 'nuclear': 21035.4, + 'oil': 234.384, + 'solar': 4251.71, + 'unknown': 2718.5, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1808.93, + 'hydro': -1.20732, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24534.194, - 'gas': 11502.4, - 'hydro': 69.9951, - 'nuclear': 21392.6, - 'oil': 228.953, - 'solar': 42.783, - 'unknown': 3467.69, + 'coal': 22498.578, + 'gas': 20062.0, + 'hydro': 880.7, + 'nuclear': 21042.2, + 'oil': 238.784, + 'solar': 4286.65, + 'unknown': 2717.62, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1803.63, + 'hydro': -1.09966, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24510.699, - 'gas': 11608.9, - 'hydro': 69.9121, - 'nuclear': 21381.9, - 'oil': 229.414, - 'solar': 43.2378, - 'unknown': 3458.97, + 'coal': 22392.149, + 'gas': 19736.9, + 'hydro': 889.539, + 'nuclear': 21033.5, + 'oil': 241.662, + 'solar': 4390.68, + 'unknown': 2691.23, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1803.68, + 'hydro': -0.999805, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 4, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24609.564, - 'gas': 11773.6, - 'hydro': 69.8727, - 'nuclear': 21366.3, - 'oil': 228.73, - 'solar': 42.0876, - 'unknown': 3456.16, + 'coal': 22183.236, + 'gas': 19830.8, + 'hydro': 890.757, + 'nuclear': 21017.8, + 'oil': 236.698, + 'solar': 4437.31, + 'unknown': 2683.08, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1799.73, + 'hydro': -1.20732, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24554.891, - 'gas': 11855.9, - 'hydro': 69.7686, - 'nuclear': 21392.6, - 'oil': 229.401, - 'solar': 43.2729, - 'unknown': 3446.39, + 'coal': 21813.962, + 'gas': 19855.5, + 'hydro': 895.391, + 'nuclear': 21021.2, + 'oil': 238.121, + 'solar': 4582.73, + 'unknown': 2679.68, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1801.22, + 'hydro': -1.20732, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24526.478, - 'gas': 12003.0, - 'hydro': 69.5904, - 'nuclear': 21366.7, - 'oil': 229.13, - 'solar': 51.9669, - 'unknown': 3445.99, + 'coal': 21609.876, + 'gas': 19977.0, + 'hydro': 885.335, + 'nuclear': 21019.7, + 'oil': 246.419, + 'solar': 4673.27, + 'unknown': 2662.41, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1805.88, + 'hydro': -1.30742, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24585.103, - 'gas': 12334.3, - 'hydro': 69.7687, - 'nuclear': 21362.5, - 'oil': 229.006, - 'solar': 51.5417, - 'unknown': 3434.5, + 'coal': 21285.135, + 'gas': 19919.8, + 'hydro': 886.234, + 'nuclear': 21029.4, + 'oil': 264.923, + 'solar': 4795.46, + 'unknown': 2625.36, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1802.99, + 'hydro': -1.10723, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24800.537, - 'gas': 12355.6, - 'hydro': 69.9228, - 'nuclear': 21377.5, - 'oil': 228.934, - 'solar': 50.8638, - 'unknown': 3425.52, + 'coal': 21034.558, + 'gas': 19737.7, + 'hydro': 851.448, + 'nuclear': 21026.6, + 'oil': 263.223, + 'solar': 4796.81, + 'unknown': 2636.38, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1797.69, + 'hydro': -1.20732, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24587.933, - 'gas': 12435.7, - 'hydro': 69.5692, - 'nuclear': 21373.3, - 'oil': 229.546, - 'solar': 52.2031, - 'unknown': 3417.63, + 'coal': 20736.034, + 'gas': 19722.2, + 'hydro': 852.701, + 'nuclear': 21028.6, + 'oil': 237.513, + 'solar': 4795.74, + 'unknown': 2622.48, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1802.26, + 'hydro': 8.22047, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24684.913, - 'gas': 12670.1, - 'hydro': 69.8455, - 'nuclear': 21374.8, - 'oil': 229.325, - 'solar': 51.5985, - 'unknown': 3417.26, + 'coal': 20594.542, + 'gas': 19869.8, + 'hydro': 853.62, + 'nuclear': 21023.7, + 'oil': 233.146, + 'solar': 4820.04, + 'unknown': 2597.55, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1802.63, + 'hydro': 327.974, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24594.922, - 'gas': 12730.4, - 'hydro': 69.4601, - 'nuclear': 21377.9, - 'oil': 229.112, - 'solar': 50.8919, - 'unknown': 3410.6, + 'coal': 20498.104, + 'gas': 19668.3, + 'hydro': 849.806, + 'nuclear': 21009.0, + 'oil': 233.358, + 'solar': 4928.32, + 'unknown': 2583.43, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1801.26, + 'hydro': 335.906, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24673.136, - 'gas': 12824.5, - 'hydro': 69.8323, - 'nuclear': 21392.5, - 'oil': 228.865, - 'solar': 51.9585, - 'unknown': 3403.79, + 'coal': 20304.412, + 'gas': 19413.6, + 'hydro': 847.451, + 'nuclear': 21012.1, + 'oil': 233.415, + 'solar': 4916.27, + 'unknown': 2597.66, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1802.43, + 'hydro': 360.997, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 11, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24730.65, - 'gas': 12898.6, - 'hydro': 69.6663, - 'nuclear': 21375.0, - 'oil': 229.742, - 'solar': 51.8007, - 'unknown': 3404.32, + 'coal': 20119.292, + 'gas': 19505.0, + 'hydro': 849.896, + 'nuclear': 21021.6, + 'oil': 231.824, + 'solar': 4994.97, + 'unknown': 2572.76, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1797.01, + 'hydro': 703.403, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24618.861, - 'gas': 13142.8, - 'hydro': 69.6063, - 'nuclear': 21366.8, - 'oil': 229.154, - 'solar': 51.2814, - 'unknown': 3397.64, + 'coal': 19933.018, + 'gas': 19412.6, + 'hydro': 850.273, + 'nuclear': 21021.4, + 'oil': 233.887, + 'solar': 5089.53, + 'unknown': 2545.3, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1797.87, + 'hydro': 908.985, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24778.591, - 'gas': 13264.8, - 'hydro': 70.1331, - 'nuclear': 21391.5, - 'oil': 229.796, - 'solar': 51.587, - 'unknown': 3393.41, + 'coal': 20067.798, + 'gas': 19312.8, + 'hydro': 882.901, + 'nuclear': 21038.8, + 'oil': 233.524, + 'solar': 5090.95, + 'unknown': 2566.43, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1794.25, + 'hydro': 1151.04, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 5, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24882.894, - 'gas': 13522.3, - 'hydro': 69.9093, - 'nuclear': 21362.2, - 'oil': 229.181, - 'solar': 51.7548, - 'unknown': 3392.74, + 'coal': 20002.405, + 'gas': 19321.2, + 'hydro': 890.994, + 'nuclear': 21014.0, + 'oil': 233.192, + 'solar': 5060.54, + 'unknown': 2622.9, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1794.32, + 'hydro': 1246.87, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24832.795, - 'gas': 13489.2, - 'hydro': 84.6197, - 'nuclear': 21382.2, - 'oil': 230.35, - 'solar': 51.5413, - 'unknown': 3386.29, + 'coal': 20163.36, + 'gas': 18932.9, + 'hydro': 914.288, + 'nuclear': 21025.6, + 'oil': 233.507, + 'solar': 5116.24, + 'unknown': 2629.92, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1539.65, + 'hydro': 1241.83, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24860.733, - 'gas': 13878.9, - 'hydro': 110.946, - 'nuclear': 21369.4, - 'oil': 229.24, - 'solar': 51.4502, - 'unknown': 3378.16, + 'coal': 19992.882, + 'gas': 19060.9, + 'hydro': 856.88, + 'nuclear': 21023.5, + 'oil': 234.224, + 'solar': 5172.4, + 'unknown': 2645.37, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1534.65, + 'hydro': 1269.8, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25022.199, - 'gas': 14141.3, - 'hydro': 109.796, - 'nuclear': 21347.2, - 'oil': 229.477, - 'solar': 51.4922, - 'unknown': 3285.32, + 'coal': 19916.488, + 'gas': 19329.0, + 'hydro': 910.889, + 'nuclear': 21023.9, + 'oil': 233.693, + 'solar': 5206.12, + 'unknown': 2648.76, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1530.81, + 'hydro': 1655.73, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25098.595, - 'gas': 14363.8, - 'hydro': 111.232, - 'nuclear': 21377.2, - 'oil': 229.913, - 'solar': 52.1966, - 'unknown': 3286.32, + 'coal': 19982.088, + 'gas': 19112.0, + 'hydro': 903.05, + 'nuclear': 21028.8, + 'oil': 234.993, + 'solar': 5201.7, + 'unknown': 2645.0, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1534.99, + 'hydro': 1651.46, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25067.978, - 'gas': 14562.8, - 'hydro': 113.58, - 'nuclear': 21392.5, - 'oil': 228.177, - 'solar': 52.3404, - 'unknown': 3282.57, + 'coal': 19957.615, + 'gas': 19157.2, + 'hydro': 877.041, + 'nuclear': 21015.9, + 'oil': 235.598, + 'solar': 5224.77, + 'unknown': 2652.51, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1535.28, + 'hydro': 1650.43, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24959.547, - 'gas': 14781.5, - 'hydro': 109.957, - 'nuclear': 21374.6, - 'oil': 228.84, - 'solar': 52.8657, - 'unknown': 3285.67, + 'coal': 19860.863, + 'gas': 19151.4, + 'hydro': 893.316, + 'nuclear': 21016.1, + 'oil': 234.692, + 'solar': 5172.07, + 'unknown': 2665.38, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1536.92, + 'hydro': 1653.71, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25102.709, - 'gas': 14959.8, - 'hydro': 104.878, - 'nuclear': 21377.6, - 'oil': 229.073, - 'solar': 54.3579, - 'unknown': 3280.11, + 'coal': 19949.37, + 'gas': 19121.6, + 'hydro': 892.813, + 'nuclear': 21033.5, + 'oil': 235.0, + 'solar': 5192.14, + 'unknown': 2681.03, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1332.99, + 'hydro': 1651.1, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24868.924, - 'gas': 15264.0, - 'hydro': 107.264, - 'nuclear': 21376.2, - 'oil': 229.939, - 'solar': 56.7729, - 'unknown': 3273.61, + 'coal': 20120.64, + 'gas': 19183.4, + 'hydro': 917.62, + 'nuclear': 21009.2, + 'oil': 233.382, + 'solar': 5198.02, + 'unknown': 2705.32, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1006.69, + 'hydro': 1645.61, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 12, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24782.382, - 'gas': 15464.2, - 'hydro': 98.0249, - 'nuclear': 21351.1, - 'oil': 228.346, - 'solar': 61.5833, - 'unknown': 3282.47, + 'coal': 20083.426, + 'gas': 19144.7, + 'hydro': 915.343, + 'nuclear': 21029.9, + 'oil': 233.265, + 'solar': 5293.94, + 'unknown': 2700.59, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 679.085, + 'hydro': 1653.16, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24761.769, - 'gas': 15813.8, - 'hydro': 112.093, - 'nuclear': 21358.6, - 'oil': 228.67, - 'solar': 68.8473, - 'unknown': 3289.22, + 'coal': 20289.844, + 'gas': 19427.9, + 'hydro': 917.044, + 'nuclear': 21017.5, + 'oil': 234.335, + 'solar': 5260.5, + 'unknown': 2749.34, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 677.438, + 'hydro': 1322.76, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24767.62, - 'gas': 16003.1, - 'hydro': 112.171, - 'nuclear': 21363.6, - 'oil': 229.67, - 'solar': 76.2912, - 'unknown': 3287.22, + 'coal': 20331.763, + 'gas': 19480.7, + 'hydro': 958.656, + 'nuclear': 21027.1, + 'oil': 233.905, + 'solar': 5248.5, + 'unknown': 2792.22, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 678.438, + 'hydro': 703.152, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 6, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24817.703, - 'gas': 16166.8, - 'hydro': 104.905, - 'nuclear': 21366.7, - 'oil': 229.986, - 'solar': 89.0007, - 'unknown': 3290.9, + 'coal': 20472.564, + 'gas': 19681.1, + 'hydro': 961.688, + 'nuclear': 21034.4, + 'oil': 235.648, + 'solar': 5207.77, + 'unknown': 2833.81, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 372.95, + 'hydro': 702.718, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24748.55, - 'gas': 16644.4, - 'hydro': 109.684, - 'nuclear': 21371.8, - 'oil': 229.406, - 'solar': 103.564, - 'unknown': 3290.33, + 'coal': 20576.456, + 'gas': 19765.7, + 'hydro': 959.744, + 'nuclear': 21030.0, + 'oil': 235.95, + 'solar': 5244.68, + 'unknown': 2878.62, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 372.347, + 'hydro': 702.062, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24690.723, - 'gas': 17085.2, - 'hydro': 113.874, - 'nuclear': 21384.9, - 'oil': 229.48, - 'solar': 121.669, - 'unknown': 3290.85, + 'coal': 20652.643, + 'gas': 19973.1, + 'hydro': 959.823, + 'nuclear': 21032.0, + 'oil': 235.403, + 'solar': 5218.25, + 'unknown': 2929.4, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -4.49565, + 'hydro': 697.601, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24915.294, - 'gas': 17410.4, - 'hydro': 110.995, - 'nuclear': 21352.5, - 'oil': 229.692, - 'solar': 148.684, - 'unknown': 3293.63, + 'coal': 20689.413, + 'gas': 19929.4, + 'hydro': 961.871, + 'nuclear': 21020.5, + 'oil': 235.427, + 'solar': 5188.62, + 'unknown': 2986.54, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.20757, + 'hydro': 374.381, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24868.647, - 'gas': 18124.7, - 'hydro': 110.261, - 'nuclear': 21363.3, - 'oil': 229.11, - 'solar': 175.359, - 'unknown': 3294.91, + 'coal': 20663.463, + 'gas': 19680.9, + 'hydro': 942.44, + 'nuclear': 21041.0, + 'oil': 234.867, + 'solar': 5146.38, + 'unknown': 3015.54, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.60747, + 'hydro': -1.09966, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24797.643, - 'gas': 18480.8, - 'hydro': 110.68, - 'nuclear': 21358.1, - 'oil': 229.88, - 'solar': 198.571, - 'unknown': 3302.81, + 'coal': 20567.591, + 'gas': 20271.7, + 'hydro': 957.865, + 'nuclear': 21015.9, + 'oil': 233.635, + 'solar': 5073.97, + 'unknown': 3041.91, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.2, + 'hydro': -1.09966, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24947.206, - 'gas': 19009.4, - 'hydro': 114.402, - 'nuclear': 21372.4, - 'oil': 230.214, - 'solar': 229.101, - 'unknown': 3300.81, + 'coal': 20509.298, + 'gas': 20468.5, + 'hydro': 952.908, + 'nuclear': 21035.1, + 'oil': 233.194, + 'solar': 5098.27, + 'unknown': 3034.28, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -121.366, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24659.546, - 'gas': 19271.5, - 'hydro': 109.049, - 'nuclear': 21338.0, - 'oil': 229.575, - 'solar': 258.321, - 'unknown': 3297.52, + 'coal': 20769.256, + 'gas': 20552.3, + 'hydro': 932.684, + 'nuclear': 21023.9, + 'oil': 234.202, + 'solar': 5077.93, + 'unknown': 3056.77, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -136.321, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24836.792, - 'gas': 19664.0, - 'hydro': 113.857, - 'nuclear': 21364.4, - 'oil': 229.993, - 'solar': 291.566, - 'unknown': 3285.63, + 'coal': 20775.139, + 'gas': 20490.2, + 'hydro': 923.415, + 'nuclear': 21033.4, + 'oil': 232.768, + 'solar': 5000.35, + 'unknown': 3091.02, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -121.56, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 13, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24833.777, - 'gas': 20182.8, - 'hydro': 111.669, - 'nuclear': 21359.7, - 'oil': 230.151, - 'solar': 332.403, - 'unknown': 3282.82, + 'coal': 20901.622, + 'gas': 20375.3, + 'hydro': 920.65, + 'nuclear': 21025.2, + 'oil': 234.687, + 'solar': 4960.38, + 'unknown': 3142.22, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -122.748, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24775.782, - 'gas': 20414.9, - 'hydro': 105.199, - 'nuclear': 21375.5, - 'oil': 230.91, - 'solar': 366.272, - 'unknown': 3277.92, + 'coal': 21076.323, + 'gas': 20493.4, + 'hydro': 928.62, + 'nuclear': 21016.2, + 'oil': 234.614, + 'solar': 4978.05, + 'unknown': 3160.94, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -128.258, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24835.688, - 'gas': 20709.0, - 'hydro': 110.962, - 'nuclear': 21380.2, - 'oil': 230.871, - 'solar': 403.111, - 'unknown': 3275.26, + 'coal': 21088.716, + 'gas': 20615.7, + 'hydro': 922.024, + 'nuclear': 21016.3, + 'oil': 241.185, + 'solar': 5016.2, + 'unknown': 3166.22, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.19976, + 'hydro': -125.284, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 7, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24836.471, - 'gas': 21041.8, - 'hydro': 117.787, - 'nuclear': 21348.6, - 'oil': 230.04, - 'solar': 442.472, - 'unknown': 3258.28, + 'coal': 21162.083, + 'gas': 20710.3, + 'hydro': 896.256, + 'nuclear': 21031.9, + 'oil': 244.85, + 'solar': 5001.76, + 'unknown': 3181.12, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -121.494, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24817.667, - 'gas': 21400.9, - 'hydro': 319.652, - 'nuclear': 21384.7, - 'oil': 229.385, - 'solar': 473.564, - 'unknown': 3256.97, + 'coal': 21101.586, + 'gas': 20880.3, + 'hydro': 883.763, + 'nuclear': 21026.2, + 'oil': 246.499, + 'solar': 4960.57, + 'unknown': 3211.39, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.0999, + 'hydro': -120.729, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25073.574, - 'gas': 21936.1, - 'hydro': 594.345, - 'nuclear': 21359.6, - 'oil': 230.074, - 'solar': 502.086, - 'unknown': 3262.83, + 'coal': 21037.362, + 'gas': 21116.1, + 'hydro': 882.38, + 'nuclear': 21025.3, + 'oil': 248.066, + 'solar': 4782.86, + 'unknown': 3283.17, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.0999, + 'hydro': -121.012, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24904.295, - 'gas': 22890.4, - 'hydro': 542.435, - 'nuclear': 21382.0, - 'oil': 230.835, - 'solar': 546.99, - 'unknown': 3243.02, + 'coal': 20933.08, + 'gas': 21369.1, + 'hydro': 905.954, + 'nuclear': 21029.2, + 'oil': 249.847, + 'solar': 4798.94, + 'unknown': 3292.72, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -123.551, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24884.099, - 'gas': 23510.0, - 'hydro': 590.403, - 'nuclear': 21354.6, - 'oil': 230.19, - 'solar': 595.311, - 'unknown': 3247.83, + 'coal': 20845.932, + 'gas': 21266.1, + 'hydro': 873.253, + 'nuclear': 21041.2, + 'oil': 250.851, + 'solar': 4817.08, + 'unknown': 3300.53, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -119.827, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 24949.271, - 'gas': 23409.3, - 'hydro': 613.034, - 'nuclear': 21377.7, - 'oil': 230.691, - 'solar': 629.074, - 'unknown': 3251.78, + 'coal': 20878.787, + 'gas': 21556.8, + 'hydro': 891.695, + 'nuclear': 21039.9, + 'oil': 253.451, + 'solar': 4734.68, + 'unknown': 3354.74, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.60747, + 'hydro': -122.252, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25365.129, - 'gas': 24006.2, - 'hydro': 633.149, - 'nuclear': 21355.7, - 'oil': 230.788, - 'solar': 673.932, - 'unknown': 3255.26, + 'coal': 20633.238, + 'gas': 21799.6, + 'hydro': 889.43, + 'nuclear': 21028.4, + 'oil': 253.318, + 'solar': 4632.75, + 'unknown': 3407.11, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.30742, + 'hydro': -120.94, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25560.823, - 'gas': 24479.0, - 'hydro': 586.954, - 'nuclear': 21361.6, - 'oil': 230.739, - 'solar': 707.958, - 'unknown': 3257.51, + 'coal': 20605.203, + 'gas': 21992.1, + 'hydro': 894.862, + 'nuclear': 21042.5, + 'oil': 254.126, + 'solar': 4566.15, + 'unknown': 3435.56, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.0999, + 'hydro': -122.814, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25435.571, - 'gas': 25223.2, - 'hydro': 603.394, - 'nuclear': 21343.2, - 'oil': 230.556, - 'solar': 739.403, - 'unknown': 3243.03, + 'coal': 20681.5, + 'gas': 22130.5, + 'hydro': 915.617, + 'nuclear': 21026.0, + 'oil': 255.556, + 'solar': 4508.12, + 'unknown': 3492.45, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -145.348, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 14, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25497.41, - 'gas': 25639.1, - 'hydro': 622.466, - 'nuclear': 21377.4, - 'oil': 229.57, - 'solar': 772.198, - 'unknown': 3240.48, + 'coal': 20635.499, + 'gas': 22167.6, + 'hydro': 933.358, + 'nuclear': 21021.1, + 'oil': 261.015, + 'solar': 4469.12, + 'unknown': 3517.08, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.40752, + 'hydro': -123.9, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25419.208, - 'gas': 25966.4, - 'hydro': 608.962, - 'nuclear': 21373.4, - 'oil': 229.932, - 'solar': 803.901, - 'unknown': 3224.23, + 'coal': 20667.562, + 'gas': 22052.2, + 'hydro': 917.015, + 'nuclear': 21031.1, + 'oil': 261.216, + 'solar': 4437.5, + 'unknown': 3516.72, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1.50737, + 'hydro': -121.243, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25486.078, - 'gas': 26069.7, - 'hydro': 608.094, - 'nuclear': 21375.4, - 'oil': 230.277, - 'solar': 841.457, - 'unknown': 3220.72, + 'coal': 20380.209, + 'gas': 22142.6, + 'hydro': 950.536, + 'nuclear': 21035.0, + 'oil': 269.401, + 'solar': 4373.81, + 'unknown': 3565.92, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -205.99, + 'hydro': -120.939, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 8, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25341.797, - 'gas': 25952.4, - 'hydro': 607.987, - 'nuclear': 21364.9, - 'oil': 230.561, - 'solar': 897.748, - 'unknown': 3212.34, + 'coal': 20400.596, + 'gas': 22385.7, + 'hydro': 982.388, + 'nuclear': 21031.2, + 'oil': 269.344, + 'solar': 4237.49, + 'unknown': 3593.17, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -518.539, + 'hydro': -120.922, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25537.335, - 'gas': 26376.1, - 'hydro': 603.693, - 'nuclear': 21373.0, - 'oil': 231.286, - 'solar': 947.125, - 'unknown': 3211.6, + 'coal': 20465.478, + 'gas': 22448.1, + 'hydro': 962.61, + 'nuclear': 21030.0, + 'oil': 268.787, + 'solar': 4187.71, + 'unknown': 3665.74, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -616.264, + 'hydro': -126.721, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25464.998, - 'gas': 26715.2, - 'hydro': 619.587, - 'nuclear': 21367.8, - 'oil': 230.289, - 'solar': 984.272, - 'unknown': 3209.69, + 'coal': 20674.282, + 'gas': 22632.0, + 'hydro': 1014.95, + 'nuclear': 21028.0, + 'oil': 268.415, + 'solar': 4062.48, + 'unknown': 3678.88, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -421.132, + 'hydro': -129.043, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25667.468, - 'gas': 26678.2, - 'hydro': 625.096, - 'nuclear': 21382.5, - 'oil': 230.654, - 'solar': 1003.4, - 'unknown': 3209.66, + 'coal': 21100.148, + 'gas': 22615.5, + 'hydro': 1008.96, + 'nuclear': 21019.2, + 'oil': 267.968, + 'solar': 4019.99, + 'unknown': 3680.18, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -546.767, + 'hydro': -507.633, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25700.495, - 'gas': 26598.7, - 'hydro': 629.03, - 'nuclear': 21370.5, - 'oil': 230.981, - 'solar': 1038.34, - 'unknown': 3194.95, + 'coal': 20974.627, + 'gas': 22289.6, + 'hydro': 977.948, + 'nuclear': 21012.7, + 'oil': 269.185, + 'solar': 3960.18, + 'unknown': 3699.52, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -551.686, + 'hydro': -905.932, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25675.908, - 'gas': 26990.5, - 'hydro': 649.548, - 'nuclear': 21384.7, - 'oil': 230.656, - 'solar': 1080.69, - 'unknown': 3190.1, + 'coal': 21087.523, + 'gas': 22225.1, + 'hydro': 1002.26, + 'nuclear': 21020.5, + 'oil': 269.466, + 'solar': 3830.49, + 'unknown': 3696.9, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -547.16, + 'hydro': -913.298, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25607.461, - 'gas': 27257.6, - 'hydro': 621.365, - 'nuclear': 21386.3, - 'oil': 230.821, - 'solar': 1111.51, - 'unknown': 3189.33, + 'coal': 21209.571, + 'gas': 22439.5, + 'hydro': 999.981, + 'nuclear': 21024.6, + 'oil': 269.124, + 'solar': 3744.75, + 'unknown': 3708.89, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -531.559, + 'hydro': -920.338, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25844.605, - 'gas': 27528.9, - 'hydro': 647.06, - 'nuclear': 21316.3, - 'oil': 230.36, - 'solar': 1166.29, - 'unknown': 3159.66, + 'coal': 21438.831, + 'gas': 22699.2, + 'hydro': 1001.73, + 'nuclear': 21018.4, + 'oil': 269.245, + 'solar': 3666.75, + 'unknown': 3720.5, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -575.813, + 'hydro': -1075.33, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25709.774, - 'gas': 27584.5, - 'hydro': 651.189, - 'nuclear': 21370.9, - 'oil': 230.983, - 'solar': 1209.35, - 'unknown': 3165.46, + 'coal': 21557.544, + 'gas': 22784.1, + 'hydro': 1005.31, + 'nuclear': 21037.2, + 'oil': 275.435, + 'solar': 3494.94, + 'unknown': 3722.35, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -540.003, + 'hydro': -1103.41, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 15, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25694.498, - 'gas': 27582.8, - 'hydro': 662.944, - 'nuclear': 21365.9, - 'oil': 231.454, - 'solar': 1264.09, - 'unknown': 3153.34, + 'coal': 21687.137, + 'gas': 22930.8, + 'hydro': 1001.21, + 'nuclear': 21042.5, + 'oil': 272.401, + 'solar': 3369.7, + 'unknown': 3726.69, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -544.751, + 'hydro': -1146.95, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25655.994, - 'gas': 27307.7, - 'hydro': 594.045, - 'nuclear': 21392.4, - 'oil': 230.983, - 'solar': 1241.54, - 'unknown': 3164.54, + 'coal': 21765.66, + 'gas': 22966.4, + 'hydro': 1003.42, + 'nuclear': 21025.0, + 'oil': 274.781, + 'solar': 3418.18, + 'unknown': 3730.55, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -538.583, + 'hydro': -1145.72, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25631.505, - 'gas': 27582.6, - 'hydro': 649.506, - 'nuclear': 21388.5, - 'oil': 231.742, - 'solar': 1240.8, - 'unknown': 3168.12, + 'coal': 22134.453, + 'gas': 22687.9, + 'hydro': 970.734, + 'nuclear': 21034.3, + 'oil': 274.326, + 'solar': 3374.82, + 'unknown': 3735.24, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -535.485, + 'hydro': -1101.39, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 9, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25735.521, - 'gas': 27609.2, - 'hydro': 658.725, - 'nuclear': 21353.7, - 'oil': 230.6, - 'solar': 1271.18, - 'unknown': 3149.89, + 'coal': 22312.844, + 'gas': 22920.9, + 'hydro': 963.291, + 'nuclear': 21024.8, + 'oil': 275.474, + 'solar': 3224.49, + 'unknown': 3758.45, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -542.388, + 'hydro': -1147.8, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25670.745, - 'gas': 27501.9, - 'hydro': 632.762, - 'nuclear': 21363.8, - 'oil': 230.772, - 'solar': 1287.63, - 'unknown': 3152.81, + 'coal': 22438.734, + 'gas': 23003.0, + 'hydro': 969.377, + 'nuclear': 21038.4, + 'oil': 277.562, + 'solar': 3033.74, + 'unknown': 3916.69, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -542.982, + 'hydro': -1344.36, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25710.677, - 'gas': 27468.7, - 'hydro': 609.152, - 'nuclear': 21358.4, - 'oil': 231.088, - 'solar': 1296.53, - 'unknown': 3154.85, + 'coal': 22626.833, + 'gas': 22967.8, + 'hydro': 966.654, + 'nuclear': 21020.5, + 'oil': 296.039, + 'solar': 2869.86, + 'unknown': 4004.88, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -539.75, + 'hydro': -1341.93, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25629.803, - 'gas': 27701.5, - 'hydro': 594.841, - 'nuclear': 21357.4, - 'oil': 230.762, - 'solar': 1307.57, - 'unknown': 3164.22, + 'coal': 22790.516, + 'gas': 23153.9, + 'hydro': 966.915, + 'nuclear': 21035.4, + 'oil': 311.159, + 'solar': 2795.02, + 'unknown': 3998.73, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -544.757, + 'hydro': -1200.94, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25635.433, - 'gas': 27955.4, - 'hydro': 620.317, - 'nuclear': 21362.0, - 'oil': 230.921, - 'solar': 1332.59, - 'unknown': 3132.52, + 'coal': 23072.195, + 'gas': 23084.9, + 'hydro': 1029.02, + 'nuclear': 21031.8, + 'oil': 330.133, + 'solar': 2676.43, + 'unknown': 4041.31, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -557.877, + 'hydro': -1158.44, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25550.446, - 'gas': 28319.0, - 'hydro': 635.668, - 'nuclear': 21367.2, - 'oil': 229.821, - 'solar': 1350.35, - 'unknown': 3100.74, + 'coal': 23108.655, + 'gas': 23244.5, + 'hydro': 1051.41, + 'nuclear': 21040.6, + 'oil': 331.038, + 'solar': 2655.07, + 'unknown': 4020.09, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -553.062, + 'hydro': -1027.02, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25495.761, - 'gas': 28607.1, - 'hydro': 640.128, - 'nuclear': 21381.3, - 'oil': 230.952, - 'solar': 1364.45, - 'unknown': 3094.71, + 'coal': 23290.401, + 'gas': 23321.6, + 'hydro': 1065.33, + 'nuclear': 21031.2, + 'oil': 332.266, + 'solar': 2569.48, + 'unknown': 4053.74, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -567.985, + 'hydro': -1054.35, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25640.477, - 'gas': 28610.1, - 'hydro': 661.979, - 'nuclear': 21370.8, - 'oil': 231.299, - 'solar': 1387.17, - 'unknown': 3106.48, + 'coal': 23205.405, + 'gas': 23505.8, + 'hydro': 1059.62, + 'nuclear': 21004.5, + 'oil': 332.05, + 'solar': 2495.83, + 'unknown': 4066.04, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -582.26, + 'hydro': -1037.2, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25629.225, - 'gas': 28720.5, - 'hydro': 664.422, - 'nuclear': 21385.4, - 'oil': 230.527, - 'solar': 1394.37, - 'unknown': 3113.28, + 'coal': 23297.478, + 'gas': 23533.2, + 'hydro': 1059.55, + 'nuclear': 21008.6, + 'oil': 331.45, + 'solar': 2360.98, + 'unknown': 4107.01, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -546.504, + 'hydro': -1039.95, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 16, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25772.95, - 'gas': 28784.8, - 'hydro': 658.222, - 'nuclear': 21362.9, - 'oil': 231.665, - 'solar': 1388.86, - 'unknown': 3094.66, + 'coal': 23239.017, + 'gas': 23221.7, + 'hydro': 1043.44, + 'nuclear': 21009.4, + 'oil': 332.389, + 'solar': 2306.01, + 'unknown': 4100.21, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -555.43, + 'hydro': -1264.01, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25747.323, - 'gas': 29002.8, - 'hydro': 651.545, - 'nuclear': 21380.2, - 'oil': 230.741, - 'solar': 1377.35, - 'unknown': 3094.18, + 'coal': 23507.726, + 'gas': 22950.6, + 'hydro': 1014.25, + 'nuclear': 21005.9, + 'oil': 332.291, + 'solar': 2208.98, + 'unknown': 4131.3, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -544.784, + 'hydro': -1295.98, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25706.251, - 'gas': 29053.4, - 'hydro': 651.103, - 'nuclear': 21369.8, - 'oil': 230.755, - 'solar': 1316.63, - 'unknown': 3108.18, + 'coal': 23436.016, + 'gas': 22943.2, + 'hydro': 996.338, + 'nuclear': 21001.4, + 'oil': 331.942, + 'solar': 2123.1, + 'unknown': 4138.24, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -547.455, + 'hydro': -1270.64, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 10, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25645.467, - 'gas': 28948.5, - 'hydro': 664.405, - 'nuclear': 21377.5, - 'oil': 231.2, - 'solar': 1304.03, - 'unknown': 3108.56, + 'coal': 23385.524, + 'gas': 23177.7, + 'hydro': 1000.92, + 'nuclear': 21007.7, + 'oil': 332.183, + 'solar': 1919.18, + 'unknown': 4210.38, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -542.207, + 'hydro': -1277.06, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25742.981, - 'gas': 28832.5, - 'hydro': 571.041, - 'nuclear': 21356.3, - 'oil': 230.737, - 'solar': 1280.89, - 'unknown': 3115.52, + 'coal': 23556.282, + 'gas': 23153.8, + 'hydro': 1024.1, + 'nuclear': 20999.5, + 'oil': 331.491, + 'solar': 1760.64, + 'unknown': 4282.59, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -552.297, + 'hydro': -1306.59, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25713.299, - 'gas': 28805.5, - 'hydro': 548.421, - 'nuclear': 21381.2, - 'oil': 230.543, - 'solar': 1288.52, - 'unknown': 3118.77, + 'coal': 23794.602, + 'gas': 23199.4, + 'hydro': 1023.72, + 'nuclear': 21006.1, + 'oil': 331.888, + 'solar': 1654.15, + 'unknown': 4334.85, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -540.256, + 'hydro': -1306.89, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25659.633, - 'gas': 28916.3, - 'hydro': 569.215, - 'nuclear': 21390.7, - 'oil': 230.049, - 'solar': 1282.27, - 'unknown': 3131.59, + 'coal': 23828.465, + 'gas': 23328.3, + 'hydro': 999.186, + 'nuclear': 21007.6, + 'oil': 331.534, + 'solar': 1514.45, + 'unknown': 4360.17, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -545.729, + 'hydro': -1291.63, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25890.674, - 'gas': 29030.0, - 'hydro': 573.486, - 'nuclear': 21378.5, - 'oil': 230.717, - 'solar': 1289.64, - 'unknown': 3147.19, + 'coal': 23924.36, + 'gas': 23286.7, + 'hydro': 998.604, + 'nuclear': 21015.0, + 'oil': 332.576, + 'solar': 1405.17, + 'unknown': 4423.32, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -120.092, + 'hydro': -1293.88, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25866.909, - 'gas': 29352.5, - 'hydro': 584.954, - 'nuclear': 21355.8, - 'oil': 230.774, - 'solar': 1298.11, - 'unknown': 3148.75, + 'coal': 23881.682, + 'gas': 23244.8, + 'hydro': 998.337, + 'nuclear': 20999.6, + 'oil': 330.707, + 'solar': 1321.33, + 'unknown': 4433.77, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 221.742, + 'hydro': -1278.85, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25794.83, - 'gas': 29515.5, - 'hydro': 561.949, - 'nuclear': 21368.3, - 'oil': 230.784, - 'solar': 1308.09, - 'unknown': 3148.06, + 'coal': 23919.53, + 'gas': 23097.5, + 'hydro': 945.125, + 'nuclear': 21012.3, + 'oil': 332.131, + 'solar': 1236.3, + 'unknown': 4443.53, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 416.214, + 'hydro': -1276.55, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25798.964, - 'gas': 29345.8, - 'hydro': 574.354, - 'nuclear': 21370.8, - 'oil': 230.686, - 'solar': 1298.21, - 'unknown': 3150.7, + 'coal': 24209.082, + 'gas': 23214.9, + 'hydro': 955.911, + 'nuclear': 20991.7, + 'oil': 331.701, + 'solar': 1141.55, + 'unknown': 4457.89, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 422.558, + 'hydro': -1306.85, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25787.323, - 'gas': 29162.5, - 'hydro': 556.52, - 'nuclear': 21378.2, - 'oil': 231.182, - 'solar': 1309.91, - 'unknown': 3143.98, + 'coal': 24046.168, + 'gas': 23382.2, + 'hydro': 947.537, + 'nuclear': 21000.3, + 'oil': 331.603, + 'solar': 1044.35, + 'unknown': 4473.56, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 420.973, + 'hydro': -1275.85, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 17, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25771.365, - 'gas': 28956.3, - 'hydro': 519.203, - 'nuclear': 21395.0, - 'oil': 230.812, - 'solar': 1328.67, - 'unknown': 3141.79, + 'coal': 23920.998, + 'gas': 23429.0, + 'hydro': 944.57, + 'nuclear': 21005.8, + 'oil': 331.694, + 'solar': 938.44, + 'unknown': 4495.42, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 420.124, + 'hydro': -1271.18, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25783.303, - 'gas': 28692.1, - 'hydro': 512.763, - 'nuclear': 21369.6, - 'oil': 230.62, - 'solar': 1341.33, - 'unknown': 3145.06, + 'coal': 24070.109, + 'gas': 23412.3, + 'hydro': 854.475, + 'nuclear': 21017.3, + 'oil': 331.766, + 'solar': 827.543, + 'unknown': 4520.28, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 417.98, + 'hydro': -1285.29, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25877.766, - 'gas': 28404.7, - 'hydro': 515.595, - 'nuclear': 21368.0, - 'oil': 231.722, - 'solar': 1330.63, - 'unknown': 3155.9, + 'coal': 24028.683, + 'gas': 23177.3, + 'hydro': 811.484, + 'nuclear': 20996.7, + 'oil': 333.226, + 'solar': 739.265, + 'unknown': 4527.9, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 421.082, + 'hydro': -1246.67, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 11, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25554.096, - 'gas': 27766.4, - 'hydro': 477.243, - 'nuclear': 21346.3, - 'oil': 230.651, - 'solar': 1325.19, - 'unknown': 3144.93, + 'coal': 23989.188, + 'gas': 23102.9, + 'hydro': 838.787, + 'nuclear': 21007.5, + 'oil': 331.27, + 'solar': 653.718, + 'unknown': 4533.51, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 421.492, + 'hydro': -1280.88, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25717.168, - 'gas': 27233.2, - 'hydro': 237.692, - 'nuclear': 21356.4, - 'oil': 231.304, - 'solar': 1308.61, - 'unknown': 3127.35, + 'coal': 24049.078, + 'gas': 23280.3, + 'hydro': 836.698, + 'nuclear': 21001.0, + 'oil': 330.909, + 'solar': 563.402, + 'unknown': 4576.04, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 419.197, + 'hydro': -1284.62, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25816.814, - 'gas': 27406.9, - 'hydro': 224.79, - 'nuclear': 21353.3, - 'oil': 229.947, - 'solar': 1332.56, - 'unknown': 3118.16, + 'coal': 24002.906, + 'gas': 23383.5, + 'hydro': 836.092, + 'nuclear': 20995.7, + 'oil': 332.62, + 'solar': 454.824, + 'unknown': 4647.37, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 783.528, + 'hydro': -1288.83, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25692.675, - 'gas': 27499.2, - 'hydro': 222.903, - 'nuclear': 21356.7, - 'oil': 230.861, - 'solar': 1370.32, - 'unknown': 3101.29, + 'coal': 24087.934, + 'gas': 23459.0, + 'hydro': 839.571, + 'nuclear': 20989.4, + 'oil': 332.416, + 'solar': 372.871, + 'unknown': 4667.91, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1081.27, + 'hydro': -1283.54, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25853.981, - 'gas': 27752.8, - 'hydro': 224.616, - 'nuclear': 21359.2, - 'oil': 229.952, - 'solar': 1421.45, - 'unknown': 3101.27, + 'coal': 24014.974, + 'gas': 23570.9, + 'hydro': 834.371, + 'nuclear': 21004.7, + 'oil': 333.451, + 'solar': 313.835, + 'unknown': 4684.53, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1384.82, + 'hydro': -1281.06, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25904.264, - 'gas': 27770.8, - 'hydro': 225.822, - 'nuclear': 21375.0, - 'oil': 231.392, - 'solar': 1395.08, - 'unknown': 3113.83, + 'coal': 24081.693, + 'gas': 23455.8, + 'hydro': 836.632, + 'nuclear': 20983.3, + 'oil': 338.392, + 'solar': 255.266, + 'unknown': 4698.36, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1581.22, + 'hydro': -1298.21, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25749.312, - 'gas': 27510.9, - 'hydro': 216.451, - 'nuclear': 21373.8, - 'oil': 230.387, - 'solar': 1360.31, - 'unknown': 3117.45, + 'coal': 24029.884, + 'gas': 23512.7, + 'hydro': 830.666, + 'nuclear': 20993.2, + 'oil': 341.546, + 'solar': 195.595, + 'unknown': 4711.61, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1587.55, + 'hydro': -1297.7, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25650.873, - 'gas': 27337.3, - 'hydro': 213.966, - 'nuclear': 21365.3, - 'oil': 231.232, - 'solar': 1373.26, - 'unknown': 3128.89, + 'coal': 24070.041, + 'gas': 23676.2, + 'hydro': 834.854, + 'nuclear': 20968.8, + 'oil': 346.372, + 'solar': 149.08, + 'unknown': 4723.56, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1592.27, + 'hydro': -1281.29, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25732.557, - 'gas': 27065.0, - 'hydro': 219.236, - 'nuclear': 21352.9, - 'oil': 230.484, - 'solar': 1360.8, - 'unknown': 3126.79, + 'coal': 23979.064, + 'gas': 23759.8, + 'hydro': 834.088, + 'nuclear': 20983.8, + 'oil': 345.49, + 'solar': 105.487, + 'unknown': 4734.47, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1585.96, + 'hydro': -1280.55, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 18, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25838.419, - 'gas': 27102.3, - 'hydro': 218.577, - 'nuclear': 21395.7, - 'oil': 231.141, - 'solar': 1324.03, - 'unknown': 3127.3, + 'coal': 24090.607, + 'gas': 23722.8, + 'hydro': 844.691, + 'nuclear': 20968.3, + 'oil': 346.197, + 'solar': 61.0313, + 'unknown': 4741.69, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1586.93, + 'hydro': -1307.52, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25798.806, - 'gas': 27190.6, - 'hydro': 212.604, - 'nuclear': 21374.7, - 'oil': 231.326, - 'solar': 1314.51, - 'unknown': 3122.2, + 'coal': 24050.508, + 'gas': 23885.8, + 'hydro': 835.146, + 'nuclear': 20991.0, + 'oil': 346.234, + 'solar': 28.8268, + 'unknown': 4747.15, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1588.34, + 'hydro': -1281.68, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25871.19, - 'gas': 27247.9, - 'hydro': 214.297, - 'nuclear': 21369.7, - 'oil': 230.949, - 'solar': 1302.25, - 'unknown': 3143.44, + 'coal': 23963.986, + 'gas': 23663.5, + 'hydro': 835.415, + 'nuclear': 20978.5, + 'oil': 346.323, + 'solar': 5.26572, + 'unknown': 4761.33, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1583.28, + 'hydro': -1281.82, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 12, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25860.291, - 'gas': 27467.0, - 'hydro': 215.116, - 'nuclear': 21385.0, - 'oil': 231.858, - 'solar': 1303.8, - 'unknown': 3150.68, + 'coal': 24166.168, + 'gas': 23747.8, + 'hydro': 846.884, + 'nuclear': 20983.1, + 'oil': 346.328, + 'solar': 0.0, + 'unknown': 4794.44, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1586.85, + 'hydro': -1298.4, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26046.476, - 'gas': 27699.8, - 'hydro': 239.737, - 'nuclear': 21360.5, - 'oil': 230.879, - 'solar': 1297.79, - 'unknown': 3154.11, + 'coal': 24169.009, + 'gas': 23921.9, + 'hydro': 837.595, + 'nuclear': 20977.2, + 'oil': 346.323, + 'solar': 0.0, + 'unknown': 4827.14, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1582.31, + 'hydro': -1294.88, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25812.298, - 'gas': 28044.7, - 'hydro': 247.68, - 'nuclear': 21336.4, - 'oil': 230.651, - 'solar': 1314.35, - 'unknown': 3150.09, + 'coal': 24028.65, + 'gas': 23734.7, + 'hydro': 830.536, + 'nuclear': 20983.9, + 'oil': 344.999, + 'solar': 0.0, + 'unknown': 4849.31, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 1260.64, + 'hydro': -1286.78, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26097.25, - 'gas': 28094.1, - 'hydro': 253.055, - 'nuclear': 21340.8, - 'oil': 230.586, - 'solar': 1326.28, - 'unknown': 3152.76, + 'coal': 24086.551, + 'gas': 23580.2, + 'hydro': 822.088, + 'nuclear': 20973.7, + 'oil': 344.973, + 'solar': 0.0, + 'unknown': 4865.52, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 928.61, + 'hydro': -1291.91, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25995.906, - 'gas': 27844.2, - 'hydro': 236.771, - 'nuclear': 21357.1, - 'oil': 230.784, - 'solar': 1351.6, - 'unknown': 3159.23, + 'coal': 24083.823, + 'gas': 23400.1, + 'hydro': 789.092, + 'nuclear': 20985.0, + 'oil': 346.636, + 'solar': 0.0, + 'unknown': 4857.07, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 422.338, + 'hydro': -1274.64, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26175.605, - 'gas': 27961.6, - 'hydro': 249.691, - 'nuclear': 21358.0, - 'oil': 230.622, - 'solar': 1346.03, - 'unknown': 3184.97, + 'coal': 24126.745, + 'gas': 23361.1, + 'hydro': 789.31, + 'nuclear': 20994.1, + 'oil': 346.614, + 'solar': 0.0, + 'unknown': 4843.59, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 419.138, + 'hydro': -1291.81, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26262.976, - 'gas': 28432.7, - 'hydro': 255.404, - 'nuclear': 21358.3, - 'oil': 231.343, - 'solar': 1307.83, - 'unknown': 3206.76, + 'coal': 24169.886, + 'gas': 23265.8, + 'hydro': 787.382, + 'nuclear': 20998.4, + 'oil': 346.234, + 'solar': 0.0, + 'unknown': 4844.53, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 416.424, + 'hydro': -1287.52, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26397.081, - 'gas': 28780.1, - 'hydro': 255.185, - 'nuclear': 21345.3, - 'oil': 230.629, - 'solar': 1295.94, - 'unknown': 3206.0, + 'coal': 24004.291, + 'gas': 23017.2, + 'hydro': 782.884, + 'nuclear': 20995.2, + 'oil': 344.79, + 'solar': 0.0, + 'unknown': 4833.72, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 416.413, + 'hydro': -1275.81, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26190.867, - 'gas': 28997.9, - 'hydro': 249.654, - 'nuclear': 21355.4, - 'oil': 230.756, - 'solar': 1288.29, - 'unknown': 3208.39, + 'coal': 23999.299, + 'gas': 22711.5, + 'hydro': 774.939, + 'nuclear': 20997.4, + 'oil': 346.369, + 'solar': 0.0, + 'unknown': 4815.18, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 420.215, + 'hydro': -1251.39, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 19, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26267.766, - 'gas': 28903.7, - 'hydro': 248.411, - 'nuclear': 21341.3, - 'oil': 229.995, - 'solar': 1273.26, - 'unknown': 3197.31, + 'coal': 23903.872, + 'gas': 22464.1, + 'hydro': 778.613, + 'nuclear': 20995.5, + 'oil': 346.435, + 'solar': 0.0, + 'unknown': 4815.27, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 420.044, + 'hydro': -1263.1, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26306.522, - 'gas': 28772.4, - 'hydro': 248.806, - 'nuclear': 21367.3, - 'oil': 229.977, - 'solar': 1300.3, - 'unknown': 3199.66, + 'coal': 23904.274, + 'gas': 22343.4, + 'hydro': 753.673, + 'nuclear': 21008.8, + 'oil': 345.956, + 'solar': 0.0, + 'unknown': 4787.85, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 419.297, + 'hydro': -1261.56, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26384.567, - 'gas': 28781.2, - 'hydro': 249.812, - 'nuclear': 21346.5, - 'oil': 230.876, - 'solar': 1270.59, - 'unknown': 3203.68, + 'coal': 23735.531, + 'gas': 22163.1, + 'hydro': 688.229, + 'nuclear': 21008.9, + 'oil': 345.877, + 'solar': 0.0, + 'unknown': 4757.17, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 418.2, + 'hydro': -1246.36, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 13, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26337.954, - 'gas': 28832.9, - 'hydro': 248.654, - 'nuclear': 21353.8, - 'oil': 230.785, - 'solar': 1283.93, - 'unknown': 3209.25, + 'coal': 23788.623, + 'gas': 22228.9, + 'hydro': 695.648, + 'nuclear': 20994.2, + 'oil': 337.453, + 'solar': 0.0, + 'unknown': 4704.33, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 415.945, + 'hydro': -1310.47, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26495.661, - 'gas': 28822.6, - 'hydro': 264.995, - 'nuclear': 21331.8, - 'oil': 230.941, - 'solar': 1276.03, - 'unknown': 3212.15, + 'coal': 23716.283, + 'gas': 22062.2, + 'hydro': 689.704, + 'nuclear': 20991.9, + 'oil': 331.938, + 'solar': 0.0, + 'unknown': 4694.21, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 418.767, + 'hydro': -1280.17, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26613.122, - 'gas': 28808.1, - 'hydro': 259.9, - 'nuclear': 21358.2, - 'oil': 231.058, - 'solar': 1277.46, - 'unknown': 3208.09, + 'coal': 23865.067, + 'gas': 21668.2, + 'hydro': 689.265, + 'nuclear': 20992.7, + 'oil': 322.073, + 'solar': 0.0, + 'unknown': 4683.1, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 417.849, + 'hydro': -1271.47, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26445.277, - 'gas': 28810.4, - 'hydro': 255.691, - 'nuclear': 21362.9, - 'oil': 230.793, - 'solar': 1266.8, - 'unknown': 3213.41, + 'coal': 23677.975, + 'gas': 21589.5, + 'hydro': 689.471, + 'nuclear': 21006.3, + 'oil': 313.086, + 'solar': 0.0, + 'unknown': 4663.02, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 417.61, + 'hydro': -1279.87, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26456.248, - 'gas': 28650.3, - 'hydro': 257.995, - 'nuclear': 21372.3, - 'oil': 230.939, - 'solar': 1262.45, - 'unknown': 3216.77, + 'coal': 23572.688, + 'gas': 21194.2, + 'hydro': 688.682, + 'nuclear': 21008.5, + 'oil': 309.16, + 'solar': 0.0, + 'unknown': 4644.38, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 418.618, + 'hydro': -1257.48, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26608.082, - 'gas': 28536.4, - 'hydro': 252.893, - 'nuclear': 21358.9, - 'oil': 231.146, - 'solar': 1242.58, - 'unknown': 3212.8, + 'coal': 23715.04, + 'gas': 21045.2, + 'hydro': 693.281, + 'nuclear': 20996.8, + 'oil': 307.448, + 'solar': 0.0, + 'unknown': 4631.19, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 414.637, + 'hydro': -1294.29, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26505.422, - 'gas': 28458.0, - 'hydro': 256.697, - 'nuclear': 21393.5, - 'oil': 230.55, - 'solar': 1243.27, - 'unknown': 3224.88, + 'coal': 23680.071, + 'gas': 20979.4, + 'hydro': 689.066, + 'nuclear': 21003.6, + 'oil': 305.505, + 'solar': 0.0, + 'unknown': 4611.86, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 418.348, + 'hydro': -1278.44, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26771.79, - 'gas': 28467.3, - 'hydro': 265.173, - 'nuclear': 21355.2, - 'oil': 230.775, - 'solar': 1257.94, - 'unknown': 3222.4, + 'coal': 23673.816, + 'gas': 20634.5, + 'hydro': 690.19, + 'nuclear': 20992.1, + 'oil': 304.776, + 'solar': 0.0, + 'unknown': 4592.39, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 415.555, + 'hydro': -1280.56, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26574.984, - 'gas': 28283.4, - 'hydro': 261.852, - 'nuclear': 21393.5, - 'oil': 238.942, - 'solar': 1206.22, - 'unknown': 3358.4, + 'coal': 23598.092, + 'gas': 20176.3, + 'hydro': 688.88, + 'nuclear': 20981.6, + 'oil': 305.783, + 'solar': 0.0, + 'unknown': 4562.1, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 419.337, + 'hydro': -1269.15, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 20, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26700.721, - 'gas': 28047.5, - 'hydro': 264.431, - 'nuclear': 21356.4, - 'oil': 238.759, - 'solar': 1191.71, - 'unknown': 3386.52, + 'coal': 23778.58, + 'gas': 20296.1, + 'hydro': 691.368, + 'nuclear': 20982.5, + 'oil': 305.385, + 'solar': 0.0, + 'unknown': 4538.52, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 417.669, + 'hydro': -1293.62, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26743.213, - 'gas': 28082.4, - 'hydro': 264.491, - 'nuclear': 21365.9, - 'oil': 239.334, - 'solar': 1151.64, - 'unknown': 3395.33, + 'coal': 23730.25, + 'gas': 20034.2, + 'hydro': 689.224, + 'nuclear': 21012.8, + 'oil': 306.015, + 'solar': 0.0, + 'unknown': 4501.14, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 418.818, + 'hydro': -1152.1, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26766.188, - 'gas': 28044.4, - 'hydro': 267.393, - 'nuclear': 21366.2, - 'oil': 239.37, - 'solar': 1130.99, - 'unknown': 3391.63, + 'coal': 23673.292, + 'gas': 20144.6, + 'hydro': 688.457, + 'nuclear': 20991.8, + 'oil': 304.472, + 'solar': 0.0, + 'unknown': 4476.68, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 416.823, + 'hydro': -929.355, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 14, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26915.691, - 'gas': 27918.0, - 'hydro': 246.186, - 'nuclear': 21346.3, - 'oil': 240.759, - 'solar': 1108.67, - 'unknown': 3408.53, + 'coal': 23725.711, + 'gas': 20034.4, + 'hydro': 689.515, + 'nuclear': 21005.4, + 'oil': 304.064, + 'solar': 0.0, + 'unknown': 4430.08, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 417.741, + 'hydro': -940.006, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26740.768, - 'gas': 27771.4, - 'hydro': 284.79, - 'nuclear': 21360.3, - 'oil': 247.964, - 'solar': 1106.17, - 'unknown': 3408.83, + 'coal': 23810.198, + 'gas': 19838.2, + 'hydro': 689.44, + 'nuclear': 21005.8, + 'oil': 304.905, + 'solar': 0.0, + 'unknown': 4340.73, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 418.459, + 'hydro': -932.272, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26758.075, - 'gas': 27299.9, - 'hydro': 330.376, - 'nuclear': 21340.5, - 'oil': 246.779, - 'solar': 1100.0, - 'unknown': 3426.73, + 'coal': 23538.073, + 'gas': 19526.7, + 'hydro': 688.734, + 'nuclear': 21005.9, + 'oil': 303.648, + 'solar': 0.0, + 'unknown': 4294.17, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 412.343, + 'hydro': -927.656, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26777.585, - 'gas': 27320.5, - 'hydro': 325.34, - 'nuclear': 21357.4, - 'oil': 245.967, - 'solar': 1048.56, - 'unknown': 3452.6, + 'coal': 23561.426, + 'gas': 19350.6, + 'hydro': 688.647, + 'nuclear': 21013.3, + 'oil': 305.12, + 'solar': 0.0, + 'unknown': 4252.9, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 204.004, + 'hydro': -912.148, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26733.642, - 'gas': 27407.4, - 'hydro': 349.3, - 'nuclear': 21358.3, - 'oil': 255.703, - 'solar': 996.778, - 'unknown': 3545.18, + 'coal': 23504.916, + 'gas': 19256.3, + 'hydro': 689.332, + 'nuclear': 20984.5, + 'oil': 305.641, + 'solar': 0.0, + 'unknown': 4221.58, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 16.2138, + 'hydro': -931.385, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26803.191, - 'gas': 27520.0, - 'hydro': 354.898, - 'nuclear': 21361.4, - 'oil': 261.532, - 'solar': 957.152, - 'unknown': 3548.32, + 'coal': 23553.68, + 'gas': 19025.8, + 'hydro': 689.052, + 'nuclear': 21003.7, + 'oil': 305.329, + 'solar': 0.0, + 'unknown': 4205.84, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': 10.768, + 'hydro': -823.368, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26691.73, - 'gas': 27387.7, - 'hydro': 341.441, - 'nuclear': 21363.6, - 'oil': 266.67, - 'solar': 928.248, - 'unknown': 3543.86, + 'coal': 23537.016, + 'gas': 18836.5, + 'hydro': 689.584, + 'nuclear': 21013.5, + 'oil': 305.148, + 'solar': 0.0, + 'unknown': 4162.06, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -192.288, + 'hydro': -644.575, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26755.704, - 'gas': 27071.9, - 'hydro': 334.31, - 'nuclear': 21373.7, - 'oil': 288.558, - 'solar': 887.844, - 'unknown': 3554.55, + 'coal': 23514.322, + 'gas': 18769.6, + 'hydro': 690.643, + 'nuclear': 20990.4, + 'oil': 303.072, + 'solar': 0.0, + 'unknown': 4129.88, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -565.324, + 'hydro': -643.789, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26844.825, - 'gas': 27027.1, - 'hydro': 346.208, - 'nuclear': 21346.2, - 'oil': 304.282, - 'solar': 851.113, - 'unknown': 3563.38, + 'coal': 23489.485, + 'gas': 18448.1, + 'hydro': 689.612, + 'nuclear': 21014.8, + 'oil': 304.466, + 'solar': 0.0, + 'unknown': 4098.81, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -566.619, + 'hydro': -648.847, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 21, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26870.475, - 'gas': 27110.5, - 'hydro': 336.272, - 'nuclear': 21341.2, - 'oil': 307.551, - 'solar': 805.191, - 'unknown': 3561.16, + 'coal': 23470.457, + 'gas': 18438.6, + 'hydro': 689.492, + 'nuclear': 21021.0, + 'oil': 304.172, + 'solar': 0.0, + 'unknown': 4072.03, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -559.599, + 'hydro': -648.185, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26868.027, - 'gas': 27288.4, - 'hydro': 345.994, - 'nuclear': 21363.3, - 'oil': 316.247, - 'solar': 749.557, - 'unknown': 3557.67, + 'coal': 23534.018, + 'gas': 18335.7, + 'hydro': 686.214, + 'nuclear': 20998.1, + 'oil': 306.343, + 'solar': 0.0, + 'unknown': 4047.08, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -564.615, + 'hydro': -650.269, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26847.367, - 'gas': 27327.8, - 'hydro': 334.716, - 'nuclear': 21356.4, - 'oil': 310.929, - 'solar': 699.605, - 'unknown': 3579.91, + 'coal': 23451.878, + 'gas': 18449.6, + 'hydro': 686.773, + 'nuclear': 20993.3, + 'oil': 305.183, + 'solar': 0.0, + 'unknown': 4018.27, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -701.573, + 'hydro': -656.417, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 15, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26859.552, - 'gas': 27358.4, - 'hydro': 335.932, - 'nuclear': 21381.1, - 'oil': 318.717, - 'solar': 662.39, - 'unknown': 3570.96, + 'coal': 23646.245, + 'gas': 18351.9, + 'hydro': 663.805, + 'nuclear': 21024.5, + 'oil': 304.958, + 'solar': 0.0, + 'unknown': 3979.79, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -706.255, + 'hydro': -669.735, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26825.08, - 'gas': 27348.3, - 'hydro': 384.656, - 'nuclear': 21373.6, - 'oil': 328.208, - 'solar': 636.165, - 'unknown': 3562.68, + 'coal': 23688.954, + 'gas': 18242.5, + 'hydro': 662.178, + 'nuclear': 21025.4, + 'oil': 305.379, + 'solar': 0.0, + 'unknown': 3963.38, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -703.319, + 'hydro': -635.765, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26568.86, - 'gas': 27066.2, - 'hydro': 437.681, - 'nuclear': 21373.9, - 'oil': 344.409, - 'solar': 640.842, - 'unknown': 3616.19, + 'coal': 23889.313, + 'gas': 18128.7, + 'hydro': 665.263, + 'nuclear': 21017.5, + 'oil': 305.107, + 'solar': 0.0, + 'unknown': 3934.55, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -701.951, + 'hydro': -668.872, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26464.471, - 'gas': 27022.1, - 'hydro': 418.358, - 'nuclear': 21357.3, - 'oil': 349.312, - 'solar': 594.27, - 'unknown': 3628.7, + 'coal': 23823.157, + 'gas': 17945.8, + 'hydro': 661.232, + 'nuclear': 20998.8, + 'oil': 306.52, + 'solar': 0.0, + 'unknown': 3904.66, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1107.56, + 'hydro': -638.573, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26512.767, - 'gas': 26930.2, - 'hydro': 437.597, - 'nuclear': 21373.9, - 'oil': 355.007, - 'solar': 481.855, - 'unknown': 3979.82, + 'coal': 23738.947, + 'gas': 17659.7, + 'hydro': 650.865, + 'nuclear': 21017.3, + 'oil': 305.455, + 'solar': 0.0, + 'unknown': 3887.86, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1119.47, + 'hydro': -650.65, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26602.059, - 'gas': 26881.3, - 'hydro': 439.843, - 'nuclear': 21367.0, - 'oil': 354.647, - 'solar': 477.319, - 'unknown': 4044.36, + 'coal': 23673.077, + 'gas': 17514.7, + 'hydro': 649.58, + 'nuclear': 21019.3, + 'oil': 305.077, + 'solar': 0.0, + 'unknown': 3879.18, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1122.76, + 'hydro': -638.921, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26442.747, - 'gas': 26879.9, - 'hydro': 424.83, - 'nuclear': 21364.2, - 'oil': 351.485, - 'solar': 463.769, - 'unknown': 4076.35, + 'coal': 23760.353, + 'gas': 17397.9, + 'hydro': 652.48, + 'nuclear': 21026.4, + 'oil': 305.566, + 'solar': 0.0, + 'unknown': 3864.85, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1112.66, + 'hydro': -646.358, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26453.26, - 'gas': 26889.1, - 'hydro': 431.046, - 'nuclear': 21366.0, - 'oil': 354.231, - 'solar': 441.245, - 'unknown': 4090.9, + 'coal': 23757.735, + 'gas': 17108.9, + 'hydro': 651.954, + 'nuclear': 21016.0, + 'oil': 305.415, + 'solar': 0.0, + 'unknown': 3860.11, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1125.1, + 'hydro': -656.59, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26560.967, - 'gas': 26881.4, - 'hydro': 444.905, - 'nuclear': 21367.4, - 'oil': 358.454, - 'solar': 416.996, - 'unknown': 4070.82, + 'coal': 23787.083, + 'gas': 16936.5, + 'hydro': 651.208, + 'nuclear': 21018.3, + 'oil': 304.212, + 'solar': 0.0, + 'unknown': 3858.19, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1129.71, + 'hydro': -636.344, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 22, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26446.387, - 'gas': 26755.9, - 'hydro': 424.677, - 'nuclear': 21376.7, - 'oil': 358.403, - 'solar': 394.261, - 'unknown': 4043.93, + 'coal': 23653.436, + 'gas': 16769.4, + 'hydro': 648.488, + 'nuclear': 21023.1, + 'oil': 305.759, + 'solar': 0.0, + 'unknown': 3854.5, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1117.65, + 'hydro': -635.101, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26387.098, - 'gas': 26574.5, - 'hydro': 420.4, - 'nuclear': 21318.8, - 'oil': 359.746, - 'solar': 398.008, - 'unknown': 3997.32, + 'coal': 23664.894, + 'gas': 16684.1, + 'hydro': 651.528, + 'nuclear': 21023.6, + 'oil': 304.292, + 'solar': 0.0, + 'unknown': 3852.83, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1114.03, + 'hydro': -641.672, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26453.9, - 'gas': 26371.6, - 'hydro': 426.708, - 'nuclear': 21353.4, - 'oil': 368.322, - 'solar': 387.206, - 'unknown': 3961.48, + 'coal': 23539.45, + 'gas': 16717.7, + 'hydro': 649.613, + 'nuclear': 21012.8, + 'oil': 304.974, + 'solar': 0.0, + 'unknown': 3850.78, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1138.6, + 'hydro': -632.988, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 16, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26417.818, - 'gas': 26187.5, - 'hydro': 430.089, - 'nuclear': 21382.1, - 'oil': 363.473, - 'solar': 368.436, - 'unknown': 3953.02, + 'coal': 23636.02, + 'gas': 16600.0, + 'hydro': 651.319, + 'nuclear': 21028.5, + 'oil': 304.305, + 'solar': 0.0, + 'unknown': 3835.13, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1115.86, + 'hydro': -445.401, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 0, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26290.437, - 'gas': 25966.6, - 'hydro': 569.454, - 'nuclear': 21371.1, - 'oil': 366.679, - 'solar': 348.544, - 'unknown': 3932.36, + 'coal': 23568.115, + 'gas': 16460.8, + 'hydro': 651.741, + 'nuclear': 21022.0, + 'oil': 304.412, + 'solar': 0.0, + 'unknown': 3820.16, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1110.12, + 'hydro': -448.64, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 5, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26006.978, - 'gas': 25718.6, - 'hydro': 552.474, - 'nuclear': 21365.2, - 'oil': 371.577, - 'solar': 324.555, - 'unknown': 3900.61, + 'coal': 23564.371, + 'gas': 16313.8, + 'hydro': 653.166, + 'nuclear': 21017.5, + 'oil': 305.195, + 'solar': 0.0, + 'unknown': 3812.62, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1341.42, + 'hydro': -449.037, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 10, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26033.695, - 'gas': 25760.2, - 'hydro': 577.664, - 'nuclear': 21344.5, - 'oil': 376.748, - 'solar': 304.14, - 'unknown': 3889.12, + 'coal': 23461.98, + 'gas': 15918.8, + 'hydro': 652.409, + 'nuclear': 21017.2, + 'oil': 305.771, + 'solar': 0.0, + 'unknown': 3810.68, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1353.62, + 'hydro': -442.143, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 15, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26021.848, - 'gas': 25747.2, - 'hydro': 564.549, - 'nuclear': 21380.5, - 'oil': 383.877, - 'solar': 275.534, - 'unknown': 3931.91, + 'coal': 23283.904, + 'gas': 15557.2, + 'hydro': 652.589, + 'nuclear': 21029.4, + 'oil': 304.393, + 'solar': 0.0, + 'unknown': 3812.09, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1352.93, + 'hydro': -440.388, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 20, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25924.584, - 'gas': 25574.6, - 'hydro': 562.18, - 'nuclear': 21362.9, - 'oil': 383.659, - 'solar': 245.768, - 'unknown': 3964.75, + 'coal': 23271.213, + 'gas': 15435.1, + 'hydro': 654.279, + 'nuclear': 21018.6, + 'oil': 305.209, + 'solar': 0.0, + 'unknown': 3803.64, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1353.62, + 'hydro': -439.749, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 25, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25870.798, - 'gas': 25430.4, - 'hydro': 569.24, - 'nuclear': 21379.1, - 'oil': 397.915, - 'solar': 237.743, - 'unknown': 3957.2, + 'coal': 23268.711, + 'gas': 15103.3, + 'hydro': 652.968, + 'nuclear': 21024.4, + 'oil': 305.323, + 'solar': 0.0, + 'unknown': 3789.01, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1362.13, + 'hydro': -442.203, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 30, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 45, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25966.601, - 'gas': 25231.7, - 'hydro': 575.535, - 'nuclear': 21368.3, - 'oil': 397.073, - 'solar': 219.746, - 'unknown': 3963.02, + 'coal': 23301.872, + 'gas': 14911.3, + 'hydro': 630.929, + 'nuclear': 21015.4, + 'oil': 304.956, + 'solar': 0.0, + 'unknown': 3787.08, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1373.02, + 'hydro': -453.978, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 35, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 50, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 25914.981, - 'gas': 25046.3, - 'hydro': 563.65, - 'nuclear': 21402.6, - 'oil': 402.988, - 'solar': 201.709, - 'unknown': 3955.53, + 'coal': 23196.116, + 'gas': 14573.8, + 'hydro': 619.958, + 'nuclear': 21023.7, + 'oil': 304.444, + 'solar': 0.0, + 'unknown': 3783.48, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1352.45, + 'hydro': -445.314, }), 'zoneKey': 'KR', }), dict({ 'correctedModes': list([ ]), - 'datetime': datetime.datetime(2023, 9, 13, 17, 40, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), + 'datetime': datetime.datetime(2023, 9, 1, 23, 55, tzinfo=zoneinfo.ZoneInfo(key='Asia/Seoul')), 'production': dict({ - 'coal': 26125.695, - 'gas': 24953.8, - 'hydro': 635.534, - 'nuclear': 21358.1, - 'oil': 403.014, - 'solar': 174.282, - 'unknown': 3826.1, + 'coal': 22896.78, + 'gas': 14224.4, + 'hydro': 637.67, + 'nuclear': 21027.5, + 'oil': 305.52, + 'solar': 0.0, + 'unknown': 3787.59, }), 'source': 'new.kpx.or.kr', 'sourceType': , 'storage': dict({ - 'hydro': -1389.41, + 'hydro': -437.866, }), 'zoneKey': 'KR', }), diff --git a/parsers/test/mocks/KPX/realtime.html b/parsers/test/mocks/KPX/realtime.html index b573639bde..6093b5b01d 100644 --- a/parsers/test/mocks/KPX/realtime.html +++ b/parsers/test/mocks/KPX/realtime.html @@ -1,7517 +1,14439 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 실시간 전력수급현황 | 전력관련정보 | 부가메뉴 : 전력거래소 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ - -