Omar Ryhan

Results 73 comments of Omar Ryhan

Hey @Shmookoff , An example has been added here: https://github.com/omarryhan/aiogoogle/commit/0a275894f4e140c508083fc9c74bbc65c3ab2be5

Oh, sorry, just realized that all you can see is print

Does this help: https://github.com/omarryhan/aiogoogle/commit/5008af099387778451ed3d97419b61e487b380d5 ?

Maybe you can wrap the IOBase with a generator? pipe_to expects a class with a generator method. You think that would work?

> I think it is fair to say that my programming skills are not on this level yet, so.. I would really love some more explanation 🙂 Oh nevermind, I...

> For now, I found a workaround to my problem. > > ```python > req = drive.files.create(pipe_from=True) > req.media_upload.file_body = contents > req.media_upload.pipe_from = None > ``` > > This...

Hey, sounds reasonable. I'll be happy to accept a PR. Thanks! On Thu, May 5, 2022 at 12:02 AM CedSharp ***@***.***> wrote: > I had to use an API which...

Hey, thanks for raising the issue! It's quite an annoying warning. It existed since the time I wrote this lib. Unfortunately, I don't know how to disable it. Also, I...

Hmmm, interesting. The reason I added the ClientCreds model in the docstring in the first place was to have it documented in the [docs](https://aiogoogle.readthedocs.io/en/latest/#aiogoogle.auth.creds.ClientCreds). The ClientCreds model inherits from dict....

Yeah feel free to make this change. As long as getitem/setitem methods work and values can be accessed using this syntax user_dict['item_name']. I think the UserDict object didn't exist in...