PyYaDisk is a small wrapper over Yandex Disk Rest API V1
Project description
PyYaDisk
PyYaDisk is a wrapper over Yandex Disk Rest API V1. The library is in creation process. You can check realized features with our roadmap below.
Installation
Install and update using pip:
pip install -U pyyadisk
Usage
0. Get Oauth-token
Before you start using YandexDisk API, you need to get a token for Oauth authorization. You can get it from Yandex Poligon.
1. Yandex Disk instance
Let's start. At first we need to make an YandexDisk instance:
from pyyadisk import YandexDisk
token = 'ya_oauth_token'
disk = YandexDisk(token=token, proxy=proxy, ssl_verify=True, max_retries=5)
token
: Oauth token (get it at https://yandex.ru/dev/disk/poligon/)
proxy
: (optional) Proxy address for http and https
ssl_verify
: (optional) Flag of connection ssl verification check
max_retries
: (optional) Number of maximum connection retries
2. Set Path
Now we ready to make some operations. Let's set the path for operations:
disk.path(path='path/to/directory')
path
: full path to directory or file
3. Upload a file
3.1. Upload local file
Ok. We ready to upload a file from computer.
If file exists it will be overwritten with flag overwrite=True
disk = YandexDisk(token=token)
disk.path(path='path/to/directory')
response = disk.upload(filepath='home/computer/path/to/the/file.pdf', overwrite=True)
filepath
: Path to the file
overwrite
: (optional) Enable overwriting for uploaded item
Or in one line
disk.path('path/to/directory').upload('home/computer/path/to/the/file.pdf', overwrite=True)
3.2. Upload file by URL
disk = YandexDisk(token=token)
disk.path(path='path/to/directory')
operation_id = disk.upload_by_url(filename='file.pdf', url='https://example.com/file_1.pdf', disable_redirects=False)
Uploading file by url working at serverside in async mode. upload_by_url()
returns operation_id
.
filename
: name of the file
url
: url of the file
disable_redirects
: Disable redirects
4. Uploading status
By operation_id
we can get status of uploading:
status = disk.operations(self, operation_id: str)
5. File or Directory operations
Now when file or directory was uploaded we can make some operations with it.
-
get(limit: int = None, offset: int = None)
: Get stats of file or directorylimit
: The number of items to returnoffset
: Offset from the beginning -
create(self, subdir: str = None)
: Create directorysubdir
: Name of subdirectory. If 'subdir = None' the directory will be created by path-data -
delete(self, force_async: bool = None, md5_hash: str = None, permanently: bool = False)
: Delete file or directoryforce_async
: Execute asynchronously (True or False).md5_hash
: md5 hash of filepermanently
: Flag of permanently delete -
copy_to(self, destination: str, force_async: bool = None, overwrite: bool = None)
: Copy file or directory -
move_to(self, destination: str, force_async: bool = None, overwrite: bool = None)
: Move file or directorydestination
: Destination pathforce_async
: Execute asynchronously (True or False).overwrite
: Flag of overwrite enable
disk = YandexDisk(token=token)
create_ = disk.path('path/to/directory').create() # Create directory
info = disk.path('path/to/directory').get() # Directory stats
copy_ = disk.path('path/to/directory').copy_to('path/to/new/directory') # Copy from path='path/to/directory'
move_ = disk.path('path/to/directory').move_to('path/to/new/directory') # Move from path='path/to/directory'
disk.path('path/to/directory').delete() # Delete directory or file
6. Share
share()
: Share file or directory which set by YandexDisk.path('path/to/the/file'). Returns tuple(response_code, public_url)
unshare()
: Unshare file or directory
public_url()
: Get public url of file or directory
public_key()
: Get public key of file or directory
Example:
disk = YandexDisk(token=token)
link = disk.path('path/to/directory').share()
link = disk.path('path/to/directory').public_url()
public_key = disk.path('path/to/directory').public_key()
disk.path('path/to/directory').unshare()
Roadmap
- OAuth authorization by token
/v1/disk
- Get disk metadata
/v1/disk/resources
- Get metadata of file or directory
- Create directory
- Delete file or directory
- Move file or directory
- Copy file or directory
- Get download link (private)
- Share directory or file and get public link
- Get download link (public)
- Get list of files
- Get last uploaded files
- Upload file
- Upload file by url
/v1/disk/resources/save-to-disk
- Save public file to disk by public key or url
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
Built Distribution
File details
Details for the file pyyadisk-0.1.3.tar.gz
.
File metadata
- Download URL: pyyadisk-0.1.3.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9e82b8886a76f83ce81421305455fa1688fd8d378c37c5b2864cb5e7171fb7a |
|
MD5 | 321ffcd6cfc5c88db6605ff5aa7a704f |
|
BLAKE2b-256 | 2faab06df3ab067e1be92dbc2bd7bc870c89fd988ea68fb2a46e91f1c7ae310b |
File details
Details for the file pyyadisk-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: pyyadisk-0.1.3-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2e25e0a37d419928fd69d7441191d51c0fd3e14bcc7dfd349ec3455d2924d7a |
|
MD5 | 200163b7314956e6285c402920266820 |
|
BLAKE2b-256 | 9c5e6e28d5a85833400c2408ecd061a157fc6e983abe229c7b1b2df922eac065 |