2017-05-02 23:47:14 +01:00
|
|
|
import uio
|
|
|
|
import sys
|
|
|
|
|
|
|
|
try:
|
|
|
|
uio.resource_stream
|
|
|
|
except AttributeError:
|
|
|
|
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
|
|
|
|
buf = uio.resource_stream(None, sys.path[0] + "/data/file2")
|
|
|
|
print(buf.read())
|