Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.23 KB

File metadata and controls

48 lines (34 loc) · 1.23 KB

python-ipernity-api

Python wrapper for ipernity.com API, inspired by python-flickr-api.

Ported to Python3 by rcw-2. The original python-ipernity-api can be found on Github.

Main Features

  • Object Oriented implementation
  • Support full API on ipernity.com
  • Support OAuth authentication (untested due to bug in Ipernity)
  • Built-in document of Ipernity API
  • Context sensitive objects, easy to use
  • Simple GET request cache mechanism.
  • Unittest to guarantee code quality

Requirements

Installation

From source

git clone https://github.com/rcw-2/python-ipernity-api-py3.git
cd python-ipernity-api-py3
sudo python3 setup.py install  # for all user
python3 setup.py install --user # or for current user

From Pypi (not yet)

sudo pip install ipernity_api_py3  # for all user
pip install ipernity_api_py3 --user  # or for current user

See more info on pypi page

Tutorial

Please see the tutorial of the original package for a quick start.