Metadata-Version: 2.1
Name: Aeros
Version: 0.0.6
Summary: Aeros web server, based on Quart/Flask
Home-page: https://github.com/pypa/sampleproject
Author: TheClockTwister
Author-email: author@example.com
License: UNKNOWN
Description: 
        # Aeros Documentation
        Aeros is a package containing wrappers for widely used Web and API functions.
        The whole package is based on Quart/Flask.
        
        ```python
        from Aeros import WebServer
        from Aeros.misc import jsonify
        
        app = WebServer(__name__, host="0.0.0.0", port=80)
        
        
        @app.route("/")
        async def home():
            return jsonify({"response": "ok"})
        
        
        if __name__ == '__main__':
            app.start("-w 2")  # worker threads (for more arguments see hypercorn documentation)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
