Skip to content

v0.11.0 - Add support for query params across EVERY HTTP method and dev server fix

Compare
Choose a tag to compare
@sansyrox sansyrox released this 07 Jan 09:56
· 413 commits to main since this release

What's Changed

New Contributors

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 🥳