We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support file-like IO (open().read(), write()) methods.
open().read()
write()
Currently can only Get/SetContent based on strings or filenames.
Get
SetContent
CC @shcheklein @efiop
The text was updated successfully, but these errors were encountered:
add files.GetContentIOBuffer
09d6574
Fixes #38
add files.GetContentIOBuffer returning a read()able object (#39)
f2d4458
* add files.GetContentIOBuffer Fixes #38 * files: tidy and abstract common wrapper * add encoding param * mode decode to IoBuffer * remove `read(chunksize)` for now - see #39 (comment) * add files.MediaIoReadable.__iter__ * add files.GetContentIOBuffer(remove_bom) * tidy remove_bom * test GetContentIOBuffer * fix GetBOM usage * misc tidy * test GetContentIOBuffer(remove_bom) * fix error handling * fix tests encoding * silly assertion fix
casperdcl
Successfully merging a pull request may close this issue.
Support file-like IO (
open().read()
,write()
) methods.Currently can only
Get
/SetContent
based on strings or filenames.CC @shcheklein @efiop
The text was updated successfully, but these errors were encountered: