L'authentification BASIC peut être appliquée en utilisant bottle.auth_basic comme décorateur. Nécessite la version v0.12 ou supérieure.
hello.py
# -*- coding: utf-8 -*-
import bottle
#Nom d'utilisateur et mot de passe d'authentification BASIC
USERNAME = "user"
PASSWORD = "pass"
def check(username, password):
u"""
Vérifiez le nom d'utilisateur et le mot de passe pour l'authentification BASIC
@bottle.auth_basic(check)Appliquer dans
"""
return username == USERNAME and password == PASSWORD
@bottle.route("/hello")
@bottle.auth_basic(check)
def hello():
return "hello"
if __name__ == '__main__':
bottle.run(host='localhost', port=8080, debug=True)
Courir
$ python hello.py
Recommended Posts