Skip to Main Content
Python Rusz głową! Wydanie II
book

Python Rusz głową! Wydanie II

by Paul Barry
November 2017
Intermediate to advanced content levelIntermediate to advanced
578 pages
23h 17m
Polish
Helion
Content preview from Python Rusz głową! Wydanie II
410
Rozdział 10.
Kod
from flask import Flask, session
app = Flask(__name__)
app.secret_key = ‘NigdyNieZgadniesz’
@app.route(‘/setuser/<user>’)
def setuser(user: str) -> str:
session[‘user’] = user
return ‘Użytkownikiem jest: ‘ + session[‘user’]
@app.route(‘/getuser’)
def getuser() -> str:
return ‘Użytkownikiem jest obecnie: ‘ + session[‘user’]
if __name__ == ‘__main__’:
app.run(debug=True)
To jest zawartość pliku
quick_session.py.
from flask import session
from functools import wraps
def check_logged_in(func):
@wraps(func)
def wrapper(*args, **kwargs):
if ‘logged_in’ in session:
return func(*args, **kwargs)
return ‘NIE jesteś zalogowany.’
return ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python. Receptury. Wydanie III

Python. Receptury. Wydanie III

David Beazley, Brian K. Jones
Python. Programuj szybko i wydajnie

Python. Programuj szybko i wydajnie

Micha Gorelick, Ian Ozsvald

Publisher Resources

ISBN: 9788328337343