This repository has been archived on 2019-12-12. You can view files and clone it, but cannot push or open issues/pull-requests.
tildetown-scripts/tildetown/util.py

21 lines
395 B
Python

def slurp(file_path):
contents = None
try:
with open(file_path, 'r', encoding="utf-8") as f:
contents = f.read()
except FileNotFoundError:
pass
except UnicodeDecodeError:
pass
return contents
def thread(initial, *fns):
value = initial
for fn in fns:
value = fn(value)
return value
def p(x):
print(x)
return x