Metadata-Version: 1.1
Name: httreplay
Version: 0.1.3
Summary: A HTTP replay and mocking library for testing.
Home-page: http://github.com/davepeck/httreplay
Author: Dave Peck
Author-email: davepeck+httreplay@gmail.com
License: MIT
Description: HTTReplay is a Python HTTP (and HTTPS!) replay/mocking library for testing.
        
        The library supports the recording and replay of network requests made via ``httplib``, ``requests >= 1.2.3``, and ``urllib3 >= 0.6``.
        
        Here's a very simple example of how to use it:
        
        ::
        
            import requests
            from httreplay import replay
        
            with replay('/tmp/recording_file.json'):
                result = requests.get("http://example.com/")
                # ... issue as many requests as you like ...
                # ... repeated requests won't hit the network ...
        
        There's a lot more you can do. Full documentation is available from the `httreplay github page <https://github.com/davepeck/httreplay>`_.
        
Keywords: test unittest http https replay mock mocking
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
