asynchronous generic cloud drive library
Project description
wcpan.drive
Asynchronous generic cloud drive library.
This package only provides the core functionality.
It need SnapsnotService and FileService implementation to work.
Example Usage
from wcpan.drive.core import create_drive
from wcpan.drive.core.types import (
CreateFileService,
CreateSnapshotService,
)
from wcpan.drive.core.lib import (
download_file_to_local,
upload_file_from_local,
)
# Assumes we already know how to create FileService and SnapshotService.
async def simple_demo(
create_file_service: CreateFileService,
create_snapshot_service: CreateSnapshotService,
):
async with create_drive(
file=create_file_service,
snapshot=create_snapshot_service,
) as drive:
# Check for authorization.
if not await drive.is_authorized():
# Start OAuth 2.0 process
url = await drive.get_oauth_url()
# ... The user visits the url ...
# Get tokens from the user.
token = ...
# Finish OAuth 2.0 process.
await drive.set_oauth_token(token)
# It is important to keep the snapshot up-to-date.
async for change in drive.sync():
print(change)
# Get the root node.
root_node = await drive.get_root()
# Get a node.
node = await drive.get_node_by_path('/path/to/drive/file')
# List children.
children = await drive.get_children(root_node)
# Make a directory.
new_directory = await drive.create_directory('directory_name', root_node)
# Download a file.
await download_file_to_local(drive, node, '/tmp')
# Upload a file.
new_file = await upload_from_local(drive, root_node, '/path/to/local/file')
# Traverse drive.
async for root, directorys, files in drive.walk(root_node):
print(root, directorys, files)
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-4.0.1.tar.gz
(10.3 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-4.0.1.tar.gz.
File metadata
- Download URL: wcpan_drive_core-4.0.1.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.2 Linux/5.15.133.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8c70552f15e5e776ccdb73e287f5f3adf80020ad6416e3f2359a526d4fcb8ad
|
|
| MD5 |
a74db5483ebc935c3fd72312cb4c28de
|
|
| BLAKE2b-256 |
1faeadb6aa25e56f4524c141a8b020faa910202c74e66fc83e8479eae60352da
|
File details
Details for the file wcpan_drive_core-4.0.1-py3-none-any.whl.
File metadata
- Download URL: wcpan_drive_core-4.0.1-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.2 Linux/5.15.133.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b1b1143f92aabe22561af9045ee08b7f4c8377491856ba49bbd3acd521c8361
|
|
| MD5 |
43f0fc74233c0b8fe8275c21c06802e5
|
|
| BLAKE2b-256 |
e89660f597fc350b9e04ae20dbbb21ccab2668981042f80de4c68a4a4ac88d28
|