Metadata-Version: 1.1
Name: apicrafter
Version: 0.0.1.5
Summary: Helps users construct a simple HTTP API.
Home-page: https://github.com/Starfys/apicrafter
Author: Steven Sheffey
Author-email: stevensheffey4@gmail.com
License: GPLv3
Description: # apicrafter
        apicrafter helps people create simple HTTP APIs easily.
        
        To start creating an API, all you need is a path, a function, and a method
        
        For example:
        
        ```python
        import apicrafter
        
        def root_request_handler(request):
            request.respond("<b>Hello, world!</b>")
        
        #Starts ApiServer on all interfaces on port 8080
        my_server = apicrafter.ApiServer('all', 8080)
        
        my_server.add_handler('/', root_request_handler, 'GET')
        
        my_server.start()
        
        ```
        Then, just navigate to http://localhost:8080 on the web browser of your choice!
        
Keywords: api http server
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
