Issue
thank you in advance for the time you will invest in this issue
the use case
- I have installed Flask-Session
pip install Flask-Session
- I have copy/pasted the tutorial on https://flasksession.readthedocs.io/en/latest/
from flask import Flask, session
from flask_session import Session
app = Flask(__name__)
# Check Configuration section for more details
SESSION_TYPE = 'redis'
app.config.from_object(__name__)
Session(app)
@app.route('/set/')
def set():
session['key'] = 'value'
return 'ok'
@app.route('/get/')
def get():
return session.get('key', 'not set')
the error
python flask_session.py Traceback (most recent call last):
File "flask_session.py", line 2, in <module>
from flask_session import Session File "/flask_session.py",
line 2, in <module>
from flask_session import Session
Solution
The issue comes from the filename: I renamed the file 'flask_session.py' into 'flask_session_test.py'
Answered By - Abdelkrim
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.