summaryrefslogtreecommitdiff
path: root/www/py-sanic
AgeCommit message (Collapse)AuthorFilesLines
2018-09-14py-sanic: updated to 0.8.3adam2-7/+7
0.8.3: Bug fixes.
2018-09-07py-sanic: updated to 0.8.1adam4-10/+35
0.8.1: Unknown changes.
2018-07-03extend PYTHON_VERSIONS_ for Python 3.7adam1-4/+2
2017-12-06py-sanic: updated to 0.7.0adam2-7/+7
0.7.0: Fixed a bug where trigger_events didn't actually trigger events in async create_server Changed strict_slashes to be True by default Changed Unauthorized exception __init__ to be more like the rest of the exceptions Added an option to define a name for a route Made the prefixes for the environment variables configurable Fixed windows support where syslog raises an ImportError Added support for vhosts in static routes Split RequestTimeout, ResponseTimeout, and KeepAliveTimeout into different timeouts Fixed Connection lost before response written SanicTestClient now gets its own port
2017-08-030.6.0:adam3-11/+8
Fix error where transport.get_extra_info returned None Remove uvloop requirement for gunicorn worker Fix error where request.token() would fail if Authorization headers were not provided Added an abort function to easily exit out of route handlers Added a file_stream response handler Add support for streaming large static files Added streaming requests Added websocket max_size and max_queue configuration Fixed test client not working with HTTP2 Added match_info property to request class Added support for recycling the gunicorn worker Added an Unauthorized exception Added a Forbidden exception Added a graceful timeout when shutdown
2017-07-07BUILD_DEPENDS -> DEPENDSadam1-6/+6
2017-07-07Sanic is a Flask-like Python 3.5+ web server that's written to go fast. It'sadam4-0/+102
based on the work done by the amazing folks at magicstack. On top of being Flask-like, Sanic supports async request handlers. This means you can use the new shiny async/await syntax from Python 3.5, making your code non-blocking and speedy.