mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 05:24:06 +08:00
9 lines
204 B
Python
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")
|