Metadata-Version: 1.1
Name: restAPY
Version: 1.2.3
Summary: A python module for building Rest APIs
Home-page: https://github.com/N-Ziermann/restAPY
Author: Niklas Ziermann
Author-email: n-ziermann@protonmail.com
License: MIT
Download-URL: https://github.com/N-Ziermann/restAPY/archive/v_1.2.2.tar.gz
Description: # restAPY
        
        A python module for building Rest APIs
        
        
        
        ## Example
        
        ```python
        import restAPY
        api = restAPY.API(80, “0.0.0.0”)
        api.set_path(“/”, {“celsius”:5, “fahrenheit”:41})
        api.run()
        ```
        
        Done! Start the python file and you've got a working rest API.
        
        
        
        ## Installation
        
        Inside the terminal:
        
        ```bash
        pip install restAPY
        ```
        
        Inside your project:
        
        ```python
        import restAPY
        ```
        
        
        
        ## Dependencies
        
        #### Python 3.6 (or higher) with the following modules:
        
        - socket
        - threading
        - json
        - ssl
        
        All of these are part of the default python install and therefore don't need to be installed separately.
        
        
        
        ## Documentation
        
        https://restapy.readthedocs.io/
        
        
        
        
        ## Contributors
        
        Niklas Ziermann
        
        
        
        ## Copyright & License
        
        **© Niklas Ziermann** 
        
        **MIT License**
        
        
Keywords: api,restapi,json,web
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
