mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-17 15:12:59 +00:00
7 lines
124 B
Python
7 lines
124 B
Python
|
import io
|
||
|
|
||
|
def readfile(filepath):
|
||
|
handle = io.open(filepath, "r")
|
||
|
content = handle.read()
|
||
|
handle.close()
|
||
|
return content
|