google-api-python-client
google-api-python-client copied to clipboard
🐍 The official Python client library for Google's discovery based APIs.
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Make sure to...
Fixes warning from `flake8 . --select E721` ``` (py39) partheniou@partheniou-vm-2:~/git/google-api-python-client$ flake8 . --select E721 ./googleapiclient/model.py:177:28: E721 do not compare types, use 'isinstance()' ./googleapiclient/model.py:396:37: E721 do not compare types, use 'isinstance()'...
Fixes warning from `flake8 . --select E712` ``` (py39) partheniou@partheniou-vm-2:~/git/google-api-python-client$ flake8 . --select E712 ./scripts/buildprbody.py:83:40: E712 comparison to False should be 'if cond is False:' or 'if not cond:' ./scripts/changesummary.py:211:46:...
Fixes warning from `flake8 . --select F841` ``` (py39) partheniou@partheniou-vm-2:~/git/google-api-python-client$ flake8 . --select F841 ./describe.py:310:5: F841 local variable 'resource_name' is assigned to but never used ./describe.py:350:13: F841 local variable 'dname'...
- [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea...
**TL/DR** This is not a bug - see my [comment](https://github.com/googleapis/google-api-python-client/issues/1764#issuecomment-1100785211). ---- When attempting to call the [search](https://developers.google.com/photos/library/reference/rest/v1/mediaItems/search) method from the `mediaItems` resource for Google Photos API with any of the...
`docs/epy` hasn't been updated in 3 years. The directory should either be updated or removed. https://github.com/googleapis/google-api-python-client/tree/main/docs/epy
CONTRIBUTING.rst instructs contributors to build the docs with `nox -s docs`, but this session was removed in #1271. It is unclear if and how the docs should be regenerated.
Thanks for stopping by to let us know something could be better! **PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/)...
Hi. I'm using a client oauth that has both full Drive and full Slides scope. Given this, why can I not use private drive images with the CreateImageRequest? This is...