Skip to content

Phylante/shiba

 
 

Repository files navigation

Shiba

shiba 1.1.5

Released: 11-Sep-2014

Last release: 13-Jul-2016

Introduction

Shiba is a Python package that provides interfaces to PriceMinister Web services. Currently, all features works with Python 2.7.

Shiba supports all the Web services introduced by the PriceMinister developper blog.

The goal of Shiba is to provide PriceMinister active buyers/sellers an easy way to do their daily tasks for a good management of their account.

Installation

Install via pip:

$ pip install shiba

Install from source:

$ git clone git://github.com/shibaAPI/shiba.git
$ cd shiba
$ python setup.py install

Quick starting with Shiba

Import the shibaconnection module first, then the module(s) you wish to work with.

Instance the ShibaConnection class with your credentials, then instance the other modules with the newly created ShibaConnection instance.

You're good to go!

Example:

from Shiba.shibaconnection import ShibaConnection
from Shiba.salesmanagement import SalesManagement

connection = ShibaConnection("mylogin", "mytoken")
sales = SalesManagement(connection)
newsales = sales.get_new_sales()

Testing Shiba

Shiba comes with its bunch of tests. Please refer to documentation for some information about testing options.

Documentation

Documentation is available on GitHub pages.

Extra documentation from the PriceMinister developper blog might be useful.

Feel free to comment, report bugs, or even contribute!

Thank you!

About

Python API for PriceMinister WebServices

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 96.2%
  • Makefile 3.8%