Metadata-Version: 1.1
Name: restmapper
Version: 1.0.3
Summary: RestMapper takes the pain out of integrating with RESTful APIs
Home-page: https://github.com/lionheart/python-restmapper
Author: Dan Loewenherz
Author-email: dan@lionheartsw.com
License: Apache 2.0
Description: Python-RestMapper |ci| |downloads| |version|
        ============================================
        
        RestMapper takes the pain out of integrating with RESTful APIs. It removes all of the complexity with writing API-specific code, and lets you focus all your energy on the important stuff. Here's a quick example (using Twitter):
        
        .. code:: pycon
        
           >>> Twitter = RestMapper("https://api.twitter.com/1.1/{path}.json")
           >>> auth = OAuth1('YOUR_APP_KEY', 'YOUR_APP_SECRET', 'USER_OAUTH_TOKEN', 'USER_OAUTH_TOKEN_SECRET')
           >>> twitter = Twitter(auth=auth)
           >>> response = twitter.statuses.mentions_timeline()
        
        Whoa, easy, right? This will call `https://api.twitter.com/1.1/statuses/mentions_timeline.json`, authenticate the request using OAuth1, and return the response as JSON. The great thing is that there's not much else you need to learn to integrate with any other API. You just plug in the base URL format, provide any optional authentication handlers (that requests provides), and then just start making API calls.
        
        See `requests-cloudkit <https://github.com/lionheart/requests-cloudkit>`_ for an example of an authentication handler working with Apple's CloudKit which is compatible right out of the box with RestMapper.
        
        Installation
        ------------
        
        RestMapper is available for download through the Python Package Index (PyPi). You can install it right away using pip or easy_install.
        
        .. code:: bash
        
           pip install restmapper
        
        Usage
        -----
        
        The first thing you need to do is generate a base RestMapper object that will allow you to instantiate a connection with a remote API.
        
        .. code:: pycon
        
           >>> Twitter = RestMapper("https://api.twitter.com/1.1/{path}.json")
        
        `{path}` is just a placeholder for the rest of the path. You'll specify this later when making API calls.
        
        Twitter's API is protected by OAuth1, so the next step is to provide authentication. When integrating with any other API, any `requests-compatible <http://docs.python-requests.org/en/latest/user/authentication/>`_ auth object can be provided.
        
        .. code:: pycon
        
           >>> from requests_oauthlib import OAuth1
           >>> auth = OAuth1('YOUR_APP_KEY', 'YOUR_APP_SECRET', 'USER_OAUTH_TOKEN', 'USER_OAUTH_TOKEN_SECRET')
           >>> twitter = Twitter(auth=auth)
        
        Now you can start making calls. The API object's attributes and properties map one-to-one with the API you're integrating with. E.g., the below:
        
        .. code:: pycon
        
           >>> response = twitter.statuses.mentions_timeline()
        
        ...will request https://api.twitter.com/1.1/statuses/mentions_timeline.json. The path implied by the attribute syntax is inserted right where the `path` placeholder is in the `Twitter` object's instantiation earlier.
        
        If you want to pass in body data for a POST, provide a single argument to the call to the API, and specify "POST" as the first attribute. I.e.
        
        .. code:: pycon
        
           >>> twitter.POST.my.request(data)
        
        PATCH, PUT, GET, and POST are all supported. GET is currently the default.
        
        Miscellaneous
        '''''''''''''
        
        By default, python-restmapper will return parsed JSON objects. If you'd like the raw response object for a request, just pass in `parse_response=False` as an argument to the API object.
        
        Support
        -------
        
        If you like this library, or need help implementing it, send us an email: hi@lionheartsw.com.
        
        License
        -------
        
        .. image:: http://img.shields.io/pypi/l/restmapper.svg?style=flat
           :target: https://github.com/lionheart/python-restmapper/blob/master/LICENSE
        
        Apache License, Version 2.0. See `LICENSE <https://github.com/lionheart/python-restmapper/blob/master/LICENSE>`_ for details.
        
        .. |ci| image:: https://img.shields.io/travis/lionheart/python-restmapper.svg?style=flat
        .. _ci: https://travis-ci.org/lionheart/restmapper.py
        
        .. |downloads| image:: https://img.shields.io/pypi/dm/restmapper.svg?style=flat
        .. _downloads: https://pypi.python.org/pypi/restmapper
        
        .. |version| image:: https://img.shields.io/pypi/v/restmapper.svg?style=flat
        .. _version: https://pypi.python.org/pypi/restmapper
        
        
Keywords: restmapper
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
