I am trying to log the IP address of a user whenever they submit a form so I can prevent them from submitting the same form twice, how can I achieve this?
Asked
Active
Viewed 70 times
1 Answers
0
With Flask, the request variable has a remote_addr that contains the IP address of the origin.
from flask import request
@app.route("/submit", methods=["GET"])
def submit():
const userIP = request.remote_addr; # This is the IP address of the request.
Skully
- 2,160
- 3
- 17
- 30