Skip to main content
# yadisk-api
Yandex.disk HTTP API Python library

Get your access token [here](https://tech.yandex.ru/disk/api/concepts/quickstart-docpage/)

Example usage:

import yadisk_api

disk = yadisk_api.YandexDisk('my_token')

# get info about my disk
info = disk.get_disk_info()

# get meta info about file/directory in my app directory/trash
meta_info = disk.get_meta_info(
path='path/to/my/file.jpg',
preview_size='100x100',
)

# get audio files list in my disk
files_info = disk.get_files_list(
limit=50,
media_type='audio',
)

# get last uploaded files list
last_uploaded = disk.get_last_uploaded(
limit=10,
media_type='video',
)

# set meta data to file in your app directory
setted_result = disk.set_meta_to_resource(
'my/file/to/extra/meta/data.txt,
data={'Custom Header': 'custom value'},
)

# upload file to yandex disk
with open('/path/to/my/file.txt', 'rb') as f:
disk.upload_file(
f,
path='app:/directory/file.txt',
overwrite=True
)

# upload file to disk by url
disk.upload_file_from_url(
'http://example.com/sitemap.xml',
path='app:/sitemap_example.xml',
)

# download file content from yandex.disk
content = disk.download_file(
'app:/sitemap_example.xml',
stream=False,
)

# copy resource in disk
disk.copy_resource(
from_path='app:/sitemap_example.xml',
to_path='app:/sitemap_example_copy.xml',
)

# move resource in your disk
disk.move_resource(
from_path='app:/sitemap_example_copy.xml',
to_path='app:/sitemap_example_movied_copy.xml',
)

# delete resource
disk.delete_resource(
'app:/sitemap_example_movied_copy.xml',
permanently=False, # to trash
)

# create folder in your disk
disk.create_folder(
'app:/new_folder',
)

# publish
disk.publish_resource('app:/new_folder')

# unpublish
disk.unpublish_resource('app:/new_folder')

# fully empty trash
disk.empty_trash()
# or remove file from trash
disk.empty_trash('app:/sitemap_example_movied_copy.xml')

# restore resource from trash
disk.restore_from_trash('app:/sitemap_example_movied_copy.xml')

Download files

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

Source Distribution

yadisk-api-1.0.tar.gz (5.3 kB view details)

Uploaded Source

File details

Details for the file yadisk-api-1.0.tar.gz.

File metadata

  • Download URL: yadisk-api-1.0.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for yadisk-api-1.0.tar.gz
Algorithm Hash digest
SHA256 6ef22d7c88e1bde27286d02039df530d38ea703b3a043a6247fcc574ff80dd63
MD5 f20890baf5a4407fcfe855254b27a6c6
BLAKE2b-256 3da66b763f9708085676ec0eb4acc5b07d920d2d26bef557b96ba438680429a0

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0 This release

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page