asynchronous generic cloud drive library
Project description
wcpan.drive
Asynchronous generic cloud drive library.
This package needs a driver to actually work with a cloud drive.
Example Usage
from wcpan.drive.core.drive import DriveFactory
from wcpan.drive.core.util import download_to_local
async def api_demo():
# setup environment
factory = DriveFactory()
# read config file from here
# default is $HOME/.config/wcpan/drive
factory.config_path = '/tmp/config'
# put data file to here
# default is $HOME/.local/share/wcpan/drive
factory.data_path = '/tmp/data'
# setup cache database, will write to data folder
factory.database = 'nodes.sqlite'
# setup driver class
factory.driver = 'wcpan.drive.google.driver.GoogleDriver'
# load config file from config folder
# this will not overwrite given values
factory.load_config()
async with factory() as drive:
# it is important to keep cache in sync
async for change in drive.sync():
print(change)
# download file
node = await drive.get_node_by_path('/path/to/drive/file')
download_to_local(drive, node, '/tmp')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wcpan.drive.core-1.0.2.tar.gz
(14.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wcpan.drive.core-1.0.2.tar.gz.
File metadata
- Download URL: wcpan.drive.core-1.0.2.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12becc4d9b16a73ce43d9aad837f82974ee5b68d5f746335780642fe37fb40bd
|
|
| MD5 |
af2b626481812f92174b91f2761330e8
|
|
| BLAKE2b-256 |
f6f044bd4f0a89c9f38d7b10c1e390cfc669b3b7ca2ae0716bb76b5f9fc807a6
|
File details
Details for the file wcpan.drive.core-1.0.2-py3-none-any.whl.
File metadata
- Download URL: wcpan.drive.core-1.0.2-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af38f1feb274e794e07c9b05459b9f77c3b01b046564d3642d8122a92d6a0406
|
|
| MD5 |
95e9e65a011144f5534ce673d474fb81
|
|
| BLAKE2b-256 |
31025cebab768d7e22fa9304af080f36d7519c6dfbaaca075a9aaf1a0260da94
|