Metadata-Version: 1.0
Name: requestions
Version: 0.0.2
Summary: Serialization for Requests using JSON.
Home-page: https://github.com/kanzure/python-requestions
Author: Bryan Bishop
Author-email: kanzure@gmail.com
License: BSD
Description: # Requestions
        
        Requestions is a serialization library for [Requests](https://github.com/kennethreitz/requests) using JSON.
        
        ## Installing
        
        Simple.
        
        ``` bash
        sudo pip install requestions
        ```
        
        or,
        
        ``` bash
        sudo python setup.py install
        ```
        
        ## Usage
        
        ``` python
        # responses
        original_response = requests.get("http://httpbin.org/get")
        serialized_response = requestions.write_response(original_response)
        response = requestions.read_response(serialized_response)
        
        # requests
        original_request = requests.models.Request(url="http://httpbin.org/post", method="POST")
        serialized_request = requestions.write_request(original_request)
        request = requestions.read_request(serialized_request)
        ```
        
        ## Changelog
        
        * 0.0.1 - initial commit
        
        ## TODO
        
        * hook up with [HTTPretty](https://github.com/gabrielfalcao/HTTPretty) to make unit testing suck less.
        
        ## License
        
        BSD.
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
