Metadata-Version: 1.0
Name: cassette
Version: 0.1.12
Summary: Cassette stores and replays HTTP requests made in your Python app.
Home-page: https://github.com/uber/cassette
Author: Charles-Axel Dein
Author-email: charles@uber.com
License: MIT
Description: Cassette
        ========
        
        Cassette stores and replays HTTP requests made in your Python app.
        
        .. code:: python
        
            import urllib2
        
            import cassette
        
            with cassette.play("data/responses.yaml"):
        
                # If the request is not already stored in responses.yaml, cassette
                # will request the URL and store its response in the file.
                r = urllib2.urlopen("http://www.internic.net/domain/named.root")
        
                # This time, the request response must be in the file. The external
                # request is not made. cassette retrieves the response from the
                # file.
                r = urllib2.urlopen("http://www.internic.net/domain/named.root")
        
            assert "A.ROOT-SERVERS.NET" in r.read(10000)
        
        Installation
        ------------
        
        .. code-block:: sh
        
            $ pip install cassette
        
        Documentation
        -------------
        
        Latest documentation: `uber.github.io/cassette/ <http://uber.github.io/cassette/>`_
        
        
        License
        -------
        
        cassette is available under the MIT License.
        
        Copyright Uber 2013, Charles-Axel Dein <charles@uber.com>
Keywords: http,tests,mock
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries :: Python Modules
