Python Flask Tutorial #6 - User Authentication

· 6년 전 · 999

 

그누는 pbkdf2 https://pypi.org/project/pbkdf2/ 를 사용하죠..

 

여기는 bcrypt를 사용합니다. 

 

https://flask-bcrypt.readthedocs.io/en/latest/

 

```

pipenv install flask-bcrypt

```

 

bcrypt는 같은 패스워드라도 나오는 해시값이 매번 다르네요.

 

화면에 에러가 났을 때,  처음 실행시에 나오는 Debugger pin을  입력하면, 브라우저에서 바로 python z코드를 실행시겨 볼수가 있네요..  (13분근처)

 

세션을 관리해주는 모듈이 flask-login입니다.  login_user, current_user, logout_user

https://flask-login.readthedocs.io/en/latest/

```

pipenv install flask-login

```

 

http://localhost:5000/login?next=%2Faccount

와 같은 next parameter를 처리해줌. (44분경)

 

next_page = request.args.get('next')

 

새로운 if 문입니다.  파이썬에서 만 있나요?

 

return redirect(next_page) if next_page else redirect(url_for('home'))

 

 

 

 

|
댓글을 작성하시려면 로그인이 필요합니다.

파이썬 게시판 만들기

+
제목 글쓴이 날짜 조회
6년 전 조회 1,588
6년 전 조회 1,513
6년 전 조회 1,200
6년 전 조회 1,327
6년 전 조회 1,227
6년 전 조회 1,548
6년 전 조회 1,487
6년 전 조회 1,129
6년 전 조회 935
6년 전 조회 1,210
6년 전 조회 1,843
6년 전 조회 1,306
6년 전 조회 1,023
6년 전 조회 1,395
6년 전 조회 1,000
6년 전 조회 1,238
6년 전 조회 1,466
6년 전 조회 1,258
6년 전 조회 1,647
6년 전 조회 1,301
6년 전 조회 1,236
6년 전 조회 1,167
6년 전 조회 2,562
6년 전 조회 1,077
6년 전 조회 2,608
6년 전 조회 1,070
6년 전 조회 1,177
6년 전 조회 1,233
6년 전 조회 1,445
6년 전 조회 1,134