mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-17 15:12:59 +00:00
Starbeamrainbowlabs
c0a9cb12d8
it's not hooked up to the CLI yet though. Focus is still on ensuring the dataset is in the right format though
7 lines
No EOL
124 B
Python
7 lines
No EOL
124 B
Python
import io
|
|
|
|
def readfile(filepath):
|
|
handle = io.open(filepath, "r")
|
|
content = handle.read()
|
|
handle.close()
|
|
return content |