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

latest releases: v0.72.2, v0.72.1, v0.72.0...
3 years ago

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 🥳

Don't miss a new Robyn release

NewReleases is sending notifications on new releases.