A Python wrapper for Gyazo API
Project Description
A Python wrapper for Gyazo API.
The full-documentation is available on Read the Docs.
Requirements
- Python 2.7+
- Python 3.4+
- PyPy
- PyPy3
Installation
pip install python-gyazo
Note: Please use the latest version of setuptools & pip
pip install -U setuptools pip
Usage
At first, you must create an application and get an access token from https://gyazo.com/oauth/applications
from gyazo import Api client = Api(access_token='YOUR_ACCESS_TOKEN') ### Get a list of images images = client.get_image_list() for image in images: print(str(image)) ### Using an image model image = images[0] print("Image ID: " + image.image_id) print("URL: " + image.url) ### Download an image if image.url: with open(image.filename, 'wb') as f: f.write(image.download()) ### Upload an image with open('sample.png', 'rb') as f: image = client.upload_image(f) print(image.to_json()) ### Delete an image client.delete_image('IMAGE_ID') ### oEmbed image = images[0] print(client.get_oembed(image.permalink_url))
Backup
gyazo-backup is moved to python-gyazo-backup.
License
MIT License. Please see LICENSE.
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
python_gyazo-1.0.0-py2.py3-none-any.whl (10.5 kB) Copy SHA256 hash SHA256 | Wheel | py2.py3 | Oct 31, 2017 |
python-gyazo-1.0.0.tar.gz (6.6 kB) Copy SHA256 hash SHA256 | Source | None | Oct 31, 2017 |