PyDrive icon indicating copy to clipboard operation
PyDrive copied to clipboard

Google Drive API Python wrapper library

Results 90 PyDrive issues
Sort by recently updated
recently updated
newest added

Hi, is there any way to tell PyDrive to overwrite existing files on upload?

Took me a few weeks of on-and-off trying before I found this example in another issue, which was _super_ helpful! h/t https://github.com/gsuitedevs/PyDrive/issues/107

Just doing some research into doing stuff with Google Drive from python, and before I dive into PyDrive just wanted to see if it's generally working / maintained? Or if...

question

# Issue Type [x] Bug (Typo) # Steps to Replicate 1. Examine docs/oauth.rst. 2. Search for `follwing`. # Expected Behaviour 1. Should read `following`. Semi-automated issue generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md To...

I want my application to authorize using service_account.json instead of client_secrets.json or credentials. How can I acheive this. Thanks in advance.

I want to use the pydrive with proxy. Is it supported by pyDrive ? The below example doesn't work because i need a proxy connection with googleAuth: ``` from pydrive.drive...

The [Handling Special Metadata](https://pythonhosted.org/PyDrive/filemanagement.html#handling-special-metadata) section of the docs highlights the following use case of the FetchMetadata() function: ``` file1 = drive.CreateFile({'id': ''}) # Fetches all basic metadata fields, including file...

I'm trying to delete a .zip file from my local system after uploading it to drive. The issue is that one the file is uploaded I get the following error:...

I already made a python script to upload file to specified folder, but I can't find the team drive folder by id. Can anyone give me a hint? Thanks.

I am attempting to update the metadata of a file for which I have the fileID. My code is identical to that in the documentation: ```python f = drive.CreateFile({'id': filesContained['id']})...