You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as a user I want to read DLIS file from a byte buffer.
For example,
This may be response from an API. As a code snippet,
with dlis.load(BytesIO(response.content)) as files:
for f in files:
for frame in f.frames:
curves = frame.curves()
Note: temporary work-a-round is to save a file on disk/cloud and read it.
The text was updated successfully, but these errors were encountered:
as a user I want to read DLIS file from a byte buffer.
For example,
This may be response from an API. As a code snippet,
with dlis.load(BytesIO(response.content)) as files:
for f in files:
for frame in f.frames:
curves = frame.curves()
Note: temporary work-a-round is to save a file on disk/cloud and read it.
The text was updated successfully, but these errors were encountered: