2017-05-02 23:47:14 +01:00
|
|
|
import uio
|
2020-06-18 10:19:14 +01:00
|
|
|
import usys
|
2017-05-02 23:47:14 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
uio.resource_stream
|
|
|
|
except AttributeError:
|
2020-03-23 02:26:08 +00:00
|
|
|
print("SKIP")
|
2017-06-10 18:14:16 +01:00
|
|
|
raise SystemExit
|
2017-05-02 23:47:14 +01:00
|
|
|
|
2017-05-06 16:42:35 +01:00
|
|
|
buf = uio.resource_stream("data", "file2")
|
|
|
|
print(buf.read())
|
2017-05-02 23:47:14 +01:00
|
|
|
|
|
|
|
# resource_stream(None, ...) look ups from current dir, hence sys.path[0] hack
|
2020-06-18 10:19:14 +01:00
|
|
|
buf = uio.resource_stream(None, usys.path[0] + "/data/file2")
|
2017-05-02 23:47:14 +01:00
|
|
|
print(buf.read())
|