parent
c0e265b859
commit
20670f0740
1 changed files with 2 additions and 2 deletions
@ -1,11 +1,11 @@ |
|||||||
import os |
import os |
||||||
from tools.lib.url_file import URLFile |
from tools.lib.url_file import URLFile |
||||||
|
|
||||||
DATA_PREFIX = os.getenv("DATA_PREFIX", "http://data-raw.internal/") |
DATA_ENDPOINT = os.getenv("DATA_ENDPOINT", "http://data-raw.internal/") |
||||||
|
|
||||||
def FileReader(fn, debug=False): |
def FileReader(fn, debug=False): |
||||||
if fn.startswith("cd:/"): |
if fn.startswith("cd:/"): |
||||||
fn = fn.replace("cd:/", DATA_PREFIX) |
fn = fn.replace("cd:/", DATA_ENDPOINT) |
||||||
if fn.startswith("http://") or fn.startswith("https://"): |
if fn.startswith("http://") or fn.startswith("https://"): |
||||||
return URLFile(fn, debug=debug) |
return URLFile(fn, debug=debug) |
||||||
return open(fn, "rb") |
return open(fn, "rb") |
||||||
|
Loading…
Reference in new issue