Metadata-Version: 1.1
Name: mugen
Version: 0.2.0.1
Summary: Mugen is library for http asynchronous requests
Home-page: http://github.com/PeterDing/mugen
Author: PeterDing
Author-email: dfhasyt@gmail.com
License: Apache 2.0
Description: Mugen - HTTP for Asynchronous Requests
        =================================
        
        Mugen is library for http asynchronous requests.
        
        Only running on python 3.4.0+
        
        ok, code demo::
        
            import asyncio
            import mugen
        
            @asyncio.coroutine
            def task():
                url = 'http://www.google.com'
                resp = yield from mugen.get(url)
                print(resp.text)
        
            loop = asyncio.get_event_loop()
            loop.run_until_complete(task())
        
        
        Mugen is a name from *Samurai Champloo* (サムライチャンプル, 混沌武士)
        
        
        Feature Support
        --------------
        
        -   Keep-Alive & Connection Pooling
        -   DNS cache
        -   Sessions with Cookie Persistence
        -   Automatic Decompression
        -   Automatic Content Decoding
        -   HTTP Proxy Support
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
