16
Feel like ExpressJs while using Python Flask
Do you love to write back-end code using ExpressJs
? Do you like the auto completion features of Vscode
while using typing based language or framework? Do you want to get all of above mentioned features while using a Python based framework called Flask
?
I have created a new python module called Flaske, to provide these features.
Flaske basically provides you the request and response object as the parameters of the view function very similar to the view functions of expressJs. The inbuilt properties and the methods of the request and response object will provide you a interactive feel like expressJs. We are using the munch
module to provide the attribute-style access very similar to the Javascript. Below I have tried to mention some of the examples to demonstrate the features of Flaske better.
Install from official PYPI
python3 -m pip install flaske
Or It could be installed from the source code.
git clone https://github.com/marktennyson/flaske.git && cd flaske/
python3 setup.py install
from flaske import Flask
app = Flask(__name__)
@app.get("/")
def index(req, res):
return res.json(req.header)
from flaske import Flask
app = Flask(__name__)
@app.get("/")
async def index(req, res):
return res.json(req.header)
from flaske import Flask
from flaske.typing import Request, Response
app = Flask(__name__)
@app.get("/")
def index(req:Request, res:Response):
return res.json(req.header)
The official and full documentation for this project is available at: https://flaske.vercel.app.
Here I have tried to provide some of the basic features of this project.
N.B: all of the properties of the Request class will return an instance of Munch.
This will provide you the feel of the Javascript object.
So if your app is receiving data as json format, you can use json
property of the request class to access the data.
It's internally using the get_json
method to provide the data.
For example:
@app.post("/send-json")
def send_json(req, res):
name = req.json.name
email = req.json.email
return res.json(name=name, email=email)
This object provides you the url based parameter.
It's internally using the args
property to provide the data.
For example:
@app.get("/get-query")
def get_query(req, res):
name=req.query.name
email = req.query.email
return res.send(dict(name=name, email=email))
This object provides you the all the parameters from the Form.
It's internally using the form
property to provide the data.
For example:
@app.get("/get-form-data")
def get_form_data(req, res):
name=req.body.name
email = req.body.email
return res.send(dict(name=name, email=email))
This object provides you the all the parameters of the request header.
It's internally using the header
property to provide the data.
For example:
@app.get("/get-form-data")
def get_form_data(req, res):
return res.send(req.header)
The default response class and the methods or functions of the response class are the following.
This is used to set the response header status.
for example:
@app.route("/set-status")
def set_statuser(req, res):
return res.set_status(404).send("your requested page is not found.")
To flash a message at the UI.
for example:
@app.route('/flash')
def flasher(req, res):
return res.flash("this is the flash message").end()
It sends the HTTP response.
for example:
@app.route("/send")
def sender(req, res):
return res.send("hello world")
#or
return res.send("<h1>hello world</h1>")
#or
return res.set_status(404).send("not found")
To return the json seriliazed response.
for example:
@app.route("/json")
def jsoner(req, res):
return res.json(name="aniket sarkar")
#or
return res.json({'name': 'aniket sarkar'})
#or
return res.json([1,2,3,4])
To end the current resonse process.
for example:
@app.route("/end")
def ender(req, res):
return res.end()
#or
return res.end(404) # to raise a 404 error.
Renders a html and sends the rendered HTML string to the client.
for example:
@app.route('/render')
def renderer(req, res):
context=dict(name="Aniket Sarkar", planet="Pluto")
return res.render("index.html", context)
#or
return res.render("index.html", name="Aniket Sarkar", planet="Pluto")
redirect to specified route.
for example:
@app.post("/login")
def login(req, res):
#if login success
return res.redirect("/dashboard")
Get the header information by the given key.
for example:
@app.route("/get")
def getter(req, res):
print (res.get("Content-Type"))
return res.end()
Set the header information.
for example:
@app.route("/header-seter")
def header_setter(req, res):
res.set('Content-Type', 'application/json')
#or
res.set({'Content-Type':'application/json'})
return res.end()
Sets the Content-Type HTTP header to the MIME type as determined by the specified type.
for example:
@app.route("/set-mime")
def mimer(req, res):
res.type('application/json')
#or
res.type(".html")
#or
res.type("json")
send the attachments by using this method.
The default attachment folder name is attachments
.
You can always change it by changing the config parameter.
the config parameter is ATTACHMENTS_FOLDER
.
for example:
@app.route('/attachments')
def attach(req, res):
filename = req.query.filename
return res.attachment(file_name)
Send the contents of a file to the client.Its internally using the send_file method from werkzeug.
Clear a cookie. Fails silently if key doesn't exist.
Sets a cookie.
make a http response. It's same as Flask.wrappers.Request
- Form and clone this repository.
- Make some changes as required.
- Write unit test to showcase its functionality.
- Submit a pull request under
development
branch.
- create a virtual environment on the project root directory.
- install all the required dependencies from requirements.txt file.
- make any changes on you local code.
- then install the module on your virtual environment using
python setup.py install
command. - The above command will install the
flaske
module on your virtual environment. - Now create a separate project inside the example folder and start testing for your code changes.
- If you face any difficulties to perform the above steps, then plese contact me at:
[email protected]
.
16