Skip to main content

A Simplified Google Drive API.

Project description

📦️ EGDrive

Issues pypi

A simplified Google Drive API wrapper for Python.

EGDrive is a built on top of PyDrive2, it simplifies management of Google Drive using Python, it has a high level interface emulating Linux file management commands in an intuitive way.

🧑‍💻 Installation

Install EGDrive with pip

pip install EGDrive

📌 Features

  • Intuitive Unix-like commands (ls, mkdir, rm ...) to manage Google Drive
  • Access any file with it's absolute path, no more Google Drive ID's headaches.
  • Built on top of PyDrive2, access GoogleDrive and GoogleAuth instances for more options.
  • Lightweight.

🚀 Usage/Examples

Authentication with Google Drive

Create a new project in Google's APIs Console, for that follow this guide in here. To make the authentication automatic follow this guide.

Initiate an EGDrive instance.
from EGDrive import EGDrive

gdrive = EGDrive()
List files

The files that will be listed are the ones that your Google Project has access to, other files won't be managed by EGDrive.

files = [file['title'] for file in gdrive.ls('root')]
for file in files:
    print(file)
Create a directory

If you try to create a directory that already exists, this function won't create a new directory with the same name and different id, instead it'll return the GoogleDriveFile instance for the existing directory in the drive, and if there are more than one, it'll return GoogleDriveFile for the first one that matches the name of the new directory.

gdrive.mkdir("/Books")
Create even more directories

You can create as many directories as you want using mkdir , this works the same as the command mkdir -p in Linux. Please note that you should always use absolute paths!

gdrive.mkdir("/Books/Science") # equivalent to `mkdir -p Books/Science`
gdrive.mkdir("/Books/Litterature")
gdrive.mkdir("/Books/Science/Programming/JAVA")
gdrive.mkdir("/Books/Science/Programming/Python/3/")
Create an empty file

Creates a new file and returns it's GoogleDriveFile instance. if the file already exists it'll return the GoogleDriveFile instance of the existing file.

gdrive.touch("/Documents/empty.txt")
Check if a file exists
if gdrive.exists("/path/to/file"): print("File exists!")
else: print("File not found!")
Remove files and directories

Removing files by default moves them to Trash where they'll be permanently deleted after 30 days.

# move to Trash
gdrive.rm("/Books/Science/Programming/JAVA")
# delete permanently
gdrive.rm("/Books/Litterature", permanently=True)
Download a file
gdrive.download("/Books/Science/physics.pdf", "/home/user/Downloads/physics.pdf")
Upload a file
gdrive.upload("/home/user/Videos/mrbean.mp4", "/Videos/mrbean.mp4")
Get access to PyDrive2 GoogleDrive and GoogleAuth instances
gdrive.drive # GoogleDrive instance
gdrive.gauth # GoogleAuth instance

📝 TODO

  • Add progress info for uploading/downloading files.
  • Add support for file operations: copy, move.
  • Implement support for relative paths.
  • ...

🩹 Known Issues

You tell me 👽️.

🔧 Contributing

Contributions are always welcome!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

EGDrive-0.1.2.tar.gz (9.5 kB view details)

Uploaded Source

File details

Details for the file EGDrive-0.1.2.tar.gz.

File metadata

  • Download URL: EGDrive-0.1.2.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for EGDrive-0.1.2.tar.gz
Algorithm Hash digest
SHA256 19d726dfde2f9b571f96fd4d4c41f4cc6c2a56930fc3e4a5f703f6e1e4c13496
MD5 c7702b6c4a7e269066c0e4ca89a54aea
BLAKE2b-256 02ad225259faf61b13ab28c3d88738dcc7e5c58bba0493a2e08d15a05c5241cb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page