Metadata-Version: 1.0
Name: rieapie
Version: 0.0.2
Summary: Easy REST api wrapper
Home-page: http://github.com/alisaifee/rieapie
Author: Ali-Akber Saifee
Author-email: ali@indydevs.org
License: MIT
Description: rieapie
        -------
        
        Introduction
        ============
        Random example for accessing a rest api using rieapie.
        
        .. code-block:: python
        
            import rieapie 
            gmap = rieapie.Rieapie("http://maps.googleapis.com/maps/api")
            args = {
            origin        : "Toronto",
            , destination : "Montreal"
            , avoid       : "highways"
            , mode        : "bicycling"
            , sensor      : "false"
            }
            directions = gmap.directions.json.get(**args)
            print directions["routes"][0]["bounds"]
        
        WTF is that name?
        ================= 
        * [**R**]est [**i**]s [**E**]asy [**a**]s [**P**]ython [**i**]s [**E**]asy
        * [**R**]est [**i**]s [**E**]asy [**a**]s [**PIE**]
        * [**R**]est [**i**]s [**E**]asy [**API**]... [**E**]asy 
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha 
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
