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
I believe OBSFile is intended to implement the io.IOBase interface (https://docs.python.org/3/library/io.html#io.IOBase), but it does not implement seekable, readable, and writeable. Additionally, it does not subclass the io.IOBase interface, although it seems like it should.
The text was updated successfully, but these errors were encountered:
Kyle - that library looks super cool! Maybe we can present an “fs spec”
compatible interface that uses the current stor API under the hood.
Christoph - now that I’ve read implementation, since we just present a
buffer under the hood - I think `seekable` and `readable` should always
return True in read mode. What does local file pointer do in write mode? It
should return same thing as there. Want to put up PR?
I believe
OBSFile
is intended to implement theio.IOBase
interface (https://docs.python.org/3/library/io.html#io.IOBase), but it does not implementseekable
,readable
, andwriteable
. Additionally, it does not subclass the io.IOBase interface, although it seems like it should.The text was updated successfully, but these errors were encountered: