Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shuuji3/tepco-forecast-api
š” Experiment to convert the TEPCO's irregular CSV files to the machine readable JSON files
https://github.com/shuuji3/tepco-forecast-api
api tepco
Last synced: about 1 month ago
JSON representation
š” Experiment to convert the TEPCO's irregular CSV files to the machine readable JSON files
- Host: GitHub
- URL: https://github.com/shuuji3/tepco-forecast-api
- Owner: shuuji3
- Created: 2022-03-23T13:58:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-01T09:40:28.000Z (about 2 years ago)
- Last Synced: 2024-06-11T19:12:50.526Z (5 months ago)
- Topics: api, tepco
- Language: Python
- Homepage:
- Size: 2.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tepco-forecast-api
š” Experiment to convert the TEPCO's irregular CSV files to the machine readable JSON files## Example
```py
> ipythonIn [1]: df=pd.read_json('http://shuuji3.xyz/tepco-forecast-api/api/today_results_per_5min.json')
In [2]: df[df['å½ę„å®ēø¾(ļ¼åééå¤)(äøkW)'].isna() == False]
Out[2]:
DATE TIME å½ę„å®ēø¾(ļ¼åééå¤)(äøkW) å¤Ŗé½å ēŗé»å®ēø¾(ļ¼åééå¤)(äøkW)
0 2022-06-27 0:00 2846.0 0.0
1 2022-06-27 0:05 2836.0 0.0
2 2022-06-27 0:10 2803.0 0.0
3 2022-06-27 0:15 2784.0 0.0
4 2022-06-27 0:20 2770.0 0.0
.. ... ... ... ...
208 2022-06-27 17:20 4777.0 148.0
209 2022-06-27 17:25 4756.0 127.0
210 2022-06-27 17:30 4729.0 111.0
211 2022-06-27 17:35 4707.0 98.0
212 2022-06-27 17:40 4698.0 87.0[213 rows x 4 columns]
```