Adam Hopkins
Adam Hopkins
asynccli
# What is this project? A command line interface framework built off `acyncio` called [asynccli](https://github.com/ahopkins/asynccli). # Why is it awesome? - Most other CLI frameworks in Python do not have...
I am getting the following error: ``` 2022-07-10T08:18:46.290142Z 10 [Note] Aborted connection 10 to db: '...' user: '...' host: '...' (Got an error reading communication packets) ``` This happens on...
``` Could not detect keyboard, check hardware and permissions. Try with the --bus and --device options. ``` I get this even if I use the bus/device args. ``` lsusb |...
Is there the ability to delete a branch after merging the PR? I see this message, but it would be nice to have a "delete branch" button here. 
Closes #2524
Closes #2520 Co-authored-by: Adam Hopkins Co-authored-by: Zhiwei Liang
This PR aims to: - introduce an API to control middleware ordering - performance boost ```python @app.on_request(priority=99) async def high_priority(request): ... ```
_NOTE: When I say "Sanic" I mean Sanic Server. This PR is inapplicable to ASGI mode._ ## Background The long overdue refactor of Sanic multiprocessing... This PR intends to redo...
Adds three properties to `Request` object: - `is_safe` - `is_idempotent` - `is_cacheable`
Fixes #2514