Metadata-Version: 1.1
Name: gohttp
Version: 0.2
Summary: Bindings for gohttplib, exposing Go's http.Server
Home-page: https://github.com/shazow/gohttplib
Author: Andrey Petrov
Author-email: andrey.petrov@shazow.net
License: UNKNOWN
Description: gohttp: Bindings for gohttplib
        ==============================
        
        *Warning*: This library currently ships with a shared object of gohttplib
        compiled for OSX. It will not work on other platforms at the moment.
        
        See `https://github.com/shazow/gohttplib`_ for details.
        
        
        Usage
        -----
        
            from gohttp import route, run
        
            @route('/')
            def index(w, req):
                w.write("%s %s %s\n" % (req.method, req.host, req.url))
                w.write("Hello, world.\n")
        
            run(host='127.0.0.1', port=5000)
        
        
        License
        -------
        
        MIT.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
