Skip to content

Enable Method Overrides in Flask via Headers and Query String Parameters

License

Notifications You must be signed in to change notification settings

joelburton/flask-modus

 
 

Repository files navigation

Flask-Modus

image

Enable Flask Method overrides via Query String and Headers.

Allows for a much more enjoyable experience when building HTML which requires a custom method, or when using a client that doesn't support certain methods.

The following methods are supported:

  • Get
  • Post
  • Put
  • Patch
  • Delete
  • Options
  • Head

Installation

Installation is very straightforward:

pip install flask-modus

Configuration

Configuration is pretty damn easy:

from flask import Flask
from flask_modus import Modus

app = Flask(__name__)
modus = Modus(app)

or:

from flask import Flask
from flask_modus import Modus

app = Flask(__name__)
modus = Modus()
modus.init_app(app)

Usage

Either append your favoured methods to the end of your query string:

$ curl http://localhost:5000/?_method=put

or supply a X-HTTP-Method-Override header:

$ curl -H "X-HTTP-Method-Override: PUT" http://localhost:5000/

Note: If you supply both a header and a query string parameter, the method specified in the header will be that which is used.

About

Enable Method Overrides in Flask via Headers and Query String Parameters

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%