mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-10 10:04:21 +01:00
9 lines
198 B
Python
9 lines
198 B
Python
|
import os
|
||
|
|
||
|
def data_path(name):
|
||
|
return os.path.join(os.path.dirname(os.path.realpath(__file__)), 'data', name)
|
||
|
|
||
|
def read_data(name):
|
||
|
with open(data_path(name)) as f:
|
||
|
return f.read()
|