Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 936 Bytes

README.rst

File metadata and controls

43 lines (27 loc) · 936 Bytes

Slumber

Slumber is a python library that provides a convenient yet powerful object orientated interface to ReSTful APIs. It acts as a wrapper around the excellent requests library and abstracts away the handling of urls, serialization, and processing requests.

Getting Help

I have an IRC channel (#slumber on irc.freenode.net) to get help, bounce idea or generally shoot the breeze.

QuickStart

  1. Install Slumber:

    $ pip install slumber
    
  2. Install Optional Requirements:

    pip install simplejson pyyaml
    
  3. Use Slumber!

Requirements

Slumber requires the following modules.

  • Python 2.6+
  • requests
  • simplejson (If you desire the speedups for JSON serialization)
  • pyyaml (If you are using the optional yaml serialization)