openpilot/tools/lib/filereader.py

9 lines
204 B
Python

from tools.lib.url_file import URLFile
def FileReader(fn, debug=False):
if fn.startswith("http://") or fn.startswith("https://"):
return URLFile(fn, debug=debug)
else:
return open(fn, "rb")