google-api-python-client icon indicating copy to clipboard operation
google-api-python-client copied to clipboard

🐍 The official Python client library for Google's discovery based APIs.

Results 151 google-api-python-client issues
Sort by recently updated
recently updated
newest added

#### Environment details - OS type and version: Debian 11 - Python version: Python 3.9.2 - pip version: pip 20.3.4 - `google-api-python-client` version: 2.141.0 #### Steps to reproduce 1) Get...

type: question

When using the MediaFileUpload class to upload files to Google Drive via google-api-python-client, the file remains open after the upload completes, resulting in a **PermissionError** when I attempt to delete...

type: bug
priority: p2

#### Environment details - OS type and version: Linux - Python version: 3.12.5 - pip version: 24.2 - `google-api-python-client` version: 2.145.0 #### Steps to reproduce 1. `python -m virtualenv venv`...

type: bug
priority: p2

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...

size: u

I submit my url on the urlNotifications endpoint to notify Google of removal, and when I view the submission with urlNotifications().getMetadat(url), he still says "HttpError 404 Details:" Requested entity was...

type: question

`apiclient` package was created in 2014 as a stop-gap to help people transition from "`apiclient`" to `googleapiclient`. This transition should have been completed in the past 10 years. However now...

size: s

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...

samples
size: xs

We have added asynchronous features for HTTP requests, authentication, as well as completed some of the checklist below: - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before...

size: l

I am migrating my old Python 2.7 version to Python 2.10. `response = requests.post('https://photoslibrary.googleapis.com/v1/uploads', headers=headers, data=data)` works fine, but when I call `response = gphotos.mediaItems().batchCreate(body=body).execute()` I get the following exception...

I'm trying to upload a video to a specific channel, on which I'm a manager. This is how the upload code looks right now: ```python def upload_video(video_file: Path, args: UploadVideoArgs)...