lang/py

library requests - HTTPBasicAuth

C/H 2019. 1. 22. 08:30

import requests
from requests.auth import AuthBase
from requests.auth import HTTPBasicAuth

auth = HTTPBasicAuth('username', 'password')
r = requests.post(url='http://domain.com/basicLogin.php', auth=auth)
print(r.text)
파이썬으로 웹 크롤러 만들기 한빛미디어
9.5 HTP 기본 접근 인증, 183p


반응형

'lang > py' 카테고리의 다른 글

library Tesseract - OCR  (0) 2019.01.24
library Pillow - thumbnail create  (0) 2019.01.23
library requests - cookie, session, login  (0) 2019.01.21
requests file upload  (0) 2019.01.20
펜 트리뱅크 태그  (0) 2019.01.19