v0.11.0 - Add support for query params across EVERY HTTP method and dev server fix
What's Changed
- Add project-wide flake8 settings by @sansyrox in #143
- URL queries by @patchgamestudio in #146
- Fix dev server by @sansyrox in #148
New Contributors
- @patchgamestudio made their first contribution in #146
Full Changelog: v0.10.0...v0.11.0
Summary
You can make a request to http://localhost:5000/query?a=b
and can access the params in the following way:
@app.get("/query")
async def query_get(request):
query_data = request["queries"]
return jsonify(query_data)
The hot reloading server is now fixed and works on Linux and OSX(i.e. on all important operating systems). Windows support for dev server is still WIP.
Special thanks to @patchgamestudio for their contribution with the query params 🥳