Metadata-Version: 2.1
Name: Aeros
Version: 0.0.3
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 many wrappers for widely used Web and API functions.
        
        ```python
        from Aeros import WebServer
        from Aeros.misc import jsonify
        
        app = WebServer(__name__)
        
        app.route("/")
        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
