Aeros is a production-grade ASGI (Asynchronous Server Gateway Interface) package containing wrappers for widely used Web and API functions.
- High-performance web server
- Async request handling
- Supports multi-threading
- Production-grade ASGI (async WSGI)
- In-Python code API
- Native server-side caching
- Native gzip compression
- Can be run in a separate thread
- Easy Framework based on Flask/Quart
- Custom global headers (like CORS etc.)
While Flask is one of the most popular and frequently used frameworks, it doesn't come with a full WSGI server. Therefore, you will need an additional module like Waitress or Gunicorn. Quart shares the same features as Flask, but you can get more performance out of it, since it supports asynchronous request handling. But as for Flask, you will need a WSGI (an ASGI in this case) to deploy your Quart app into production. The most popular ASGI at the moment is called Hypercorn and is installed together with Quart.
But Hypercorn does only support deployment from console. Meaning, you will have to invoke
a start command like: hypercorn <file>:<app_variable_name>
to start your server. This
makes it hard to deploy a multi-thread web server.
Aeros combines all the benefits from Quart and Hypercorn, while maintaining the in-Python API, making it easy to create an application that can be run from custom code, not by shell.
A more detailed overview of pros and cons can be found here:
This basic code snippet should get you ready for more. Remember that routed methods
(the ones that are called on an HTTP endpoint) must be defined with async def
, not def
!
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)
If you need to execute a synchronous method in an HTTP request handler and need to wait
for its response, you should use sync_to_async
from asgiref.sync
. This method can also
be imported from Aeros.misc
:
from Aeros.misc import sync_to_async
import time
@sync_to_async
def sync_method():
time.sleep(2)
return "ok"
@app.route("/")
async def home():
status = sync_method()
return jsonify({"response": status})
Quart and Hypercorn don't allow server instances to be started from a non __main__
thread.
Aeros however does. This code shows how:
from Aeros import WebServer
from Aeros.threading import AdvancedThread
from threading import Thread
import time
app = WebServer(__name__, host="0.0.0.0", port=80, worker_threads=2)
...
if __name__ == '__main__':
t = AdvancedThread(target=app.run_server, daemon=True)
# OR
t = Thread(target=app.run_server, daemon=True)
t.start()
time.sleep(120)
t.stop() # only available in AdvancedThread, not in Thread
You can define headers, which will be sent on every response, no matter the response type.
from Aeros import WebServer
app = WebServer(__name__, global_headers={"foo":"bar"})
...
The server
header can be removed on initialization:
from Aeros import WebServer
app = WebServer(__name__, include_server_header=False)
...
By default, WebServer()
has no cache configured. You can choose between
multiple cache types to start your server instance with:
Cache Type | Description |
---|---|
SimpleCache() |
Easy to set-up, not very stable with multiple worker threads. |
FilesystemCache() |
Stores every unique request in a separate file in a given directory. |
RedisCache() |
Stores cached objects on a given Redis server. |
Here, the most basic example
from Aeros import WebServer
from asyncio import sleep
from Aeros import SimpleCache
cache = SimpleCache(timeout=10, # Cache objects are deleted after this time [s]
threshold=10 # Only 10 objects are stored in cache
)
app = WebServer(__name__, host="0.0.0.0", port=80, worker_threads=4, cache=cache)
@app.route("/")
@app.route("/<path:path>")
@app.cache()
async def index(path=""):
print(path)
if path != "favicon.ico":
await sleep(5)
return "test"
if __name__ == '__main__':
app.run_server()
Aeros supports gzip compression, which is enabled by default (for all text-based files >500 bytes, with compression level 2). You can customize these compression settings by default
from Aeros import WebServer, Compress, AdvancedThread
import time
# For more information:
# https://github.com/colour-science/flask-compress
app = WebServer(__name__, host="0.0.0.0", port=80, worker_threads=2, )
app.config["COMPRESS_MIN_SIZE"] = 5 # size in bytes
app.config["COMPRESS_LEVEL"] = 2 # compresses to about 25% of original size
app.config["COMPRESS_MIMETYPES"] = [ # compresses all text-based things
'text/plain',
'text/html',
'text/css',
'text/scss',
'text/xml',
'application/json',
'application/javascript'
]
Compress(app)
@app.route("/")
async def home():
return "testing again..."
if __name__ == '__main__':
t = AdvancedThread(target=app.run_server, daemon=True)
t.start()
time.sleep(120)
t.stop() # only available in AdvancedThread, not in Thread