Python 파충류 상용 라 이브 러 리 (1) urllib, requests
66054 단어 Python
from urllib import request
response = request.urlopen("http://www.baidu.com")
print(response.read().decode("utf-8"))
(2) post 클래스 요청
from urllib import request
from urllib import parse
data = bytes(parse.urlencode({"yan":18}), encoding = ("utf-8"))
response = request.urlopen(url = "http://httpbin.org/post", data = data)
print(response.read())
2. 호응
from urllib import request
response = request.urlopen("http://www.baidu.com")
print(response.read().decode("utf-8"))#
print(response.status)#
print(response.getheaders())#
print(response.getheader("Server"))#
3. 요청 (1) 인자 확장 요청
from urllib import request
from urllib import parse
data = bytes(parse.urlencode({"name":"Han Yan"}), encoding = "utf-8")
header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36",
"Host": "httpbin.org"}
req = request.Request(url = "http://httpbin.org/post", data = data, headers = header, method = "POST")
response = request.urlopen(req, timeout = 5)
print(response.read().decode("utf-8"))
4. 쿠키 (1) 직접 출력
from http import cookiejar
from urllib import request
cookie = cookiejar.CookieJar()
handler = request.HTTPCookieProcessor(cookie)
opener = request.build_opener(handler)
response = opener.open("http://www.baidu.com")
for item in cookie:
print(item.name + " : " + item.value)
(2) 텍스트 파일 로 저장
from http import cookiejar
from urllib import request
file_name = "cookie.txt"
cookie = cookiejar.MozillaCookieJar(file_name)#cookie = cookiejar.LWPCookieJar(file_name)
handle = request.HTTPCookieProcessor(cookie)
opener = request.build_opener(handle)
response = opener.open("http://www.baidu.com")
cookie.save()
with open(file_name, 'r') as f:
for line in f:
print(line.rstrip())
5. 예외 처리 (1) 404 페이지 를 찾 을 수 없습니다 [부모 클래스 error. URLERROR 멤버 reason]
from urllib import request, error
try:
response = request.urlopen("http://www.bilibili.com/dwdwd")
print(response.status)
except error.URLError as e:
print("ERROR REASON: " + e.reason)
(2) time out 시간 초과
from urllib import request, error
import socket
try:
response = request.urlopen("http://www.bilibili.com/dwdwd", timeout = 0.001)
print(response.status)
except error.URLError as e:
if isinstance(e.reason, socket.timeout):
print("ERROR REASON:", e.reason, sep = " ")
(3) 하위 클래스 error. HTTPERROR 세 구성원 code, reason, headers}
from urllib import request, error
import socket
try:
response = request.urlopen("http://www.bilibili.com/dwdwd")
print(response.status)
except error.HTTPError as e:
print("ERROR REASON:" , e.reason, sep = " ")
print("ERROR CODE:", e.code, sep = " ")
print("ERROR HEADER:", e.headers, sep = "
*
", end = "*
")
except error.URLError as e:
if isinstance(e.reason, socket.timeout):
print("ERROR REASON:", e.reason, sep = " ")
6. URL 분석 (1) urlparse
from urllib.parse import urlparse
url = "https://www.bilibili.com/video/av19057145?p=8#comment"
res = urlparse(url, scheme = "http", allow_fragments = True)
# url ,scheme
#alllow_fragments fragments
print(type(res), res, sep = "
")
(2) url join (url 1, url 2) 은 url 2 의 필드 를 사용 하여 url 1 의 필드 를 덮어 쓰 고 덮어 쓴 url (3) urlencode (dict) 를 되 돌려 사전 을 get 형식의 매개 변수 형식 으로 변환 합 니 다.
from urllib import parse
base_url = "https://www.bilibili.com/video/av19057145"
para = {"p":8}
url = base_url + "?" + parse.urlencode(para)
print(url)
2. requests 라 이브 러 리 1, get 요청 (1) get () 요청: 매개 변 수 는 url 에 있 고 사전 저장 을 사용 할 수 있 습 니 다.
import requests
argus = {"name":"Han Yan",
"age":25}
base_url = "http://httpbin.org"
response = requests.get(base_url + "/get", argus)
print(response.text)
(2) get 응답 반환 값 은 json () 방법 으로 해석 할 수 있 으 며, 형식 은 json. loads () 와 같 습 니 다.
import requests, json
response = requests.get("http://httpbin.org/get")
print(type(response.json()), type(json.loads(response.text)))
(3) 그림 메모 저장:. text 구성원 은 str 클래스 이 고,. content 구성원 은 bytes (바 이 너 리 흐름) 클래스 이 며, open (file name, wb) 을 호출 하여 기록 을 만 듭 니 다.
import requests
response = requests.get("http://www.zimuxia.cn/wp-content/uploads/2020/03/LadyWP.jpg")
with open("img.jpg", "wb") as img:
img.write(response.content)
img.close()
(4) 요청 헤더 부분 사이트 추가, 요청 헤더 없 이 접근 하면 상태 코드 400 / 500
import requests
header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36"}
request = requests.get("https://www.zhihu.com/", headers = header)
print(request.status_code)
메모: 일부 사 이 트 는 header 의 User 만 추가 합 니 다.Agent 는 여전히 403, referer 추가 고려
referer = "http://image.baidu.com/search/index?tn=baiduimage&ipn=r&ct=201326592&cl=2&lm=&st=-1&fm=result&fr=&sf=1&fmq=1586774219869_R&pv=&ic=&nc=1&z=&hd=&latest=©right=&se=1&showtab=0&fb=0&width=&height=&face=0&istype=2&ie=utf-8&sid=&word=%E7%8C%AB"
header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36", "Referer":referer}
print(requests.get("http://img1.imgtn.bdimg.com/it/u=3750061867,603167218&fm=26&gp=0.jpg", headers = header).status_code)
# 200
2. post 요청 (1) data 매개 변수 전달
import requests
data = {"name":"Han Yan",
"age":25}
response = requests.post("http://httpbin.org/post", data = data)
print(response.text)
3. 응답 (1) response 속성
import requests
header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36"}
response = requests.get("http://www.zhihu.com", headers = header)
print(type(response.status_code))
print(type(response.headers))
print(type(response.url))
print(type(response.cookies))
print(type(response.history))
(2) 상태 코드 판단
requests.codes = {
# Informational.
100: ('continue',),
101: ('switching_protocols',),
102: ('processing',),
103: ('checkpoint',),
122: ('uri_too_long', 'request_uri_too_long'),
200: ('ok', 'okay', 'all_ok', 'all_okay', 'all_good', '\\o/', '✓'),
201: ('created',),
202: ('accepted',),
203: ('non_authoritative_info', 'non_authoritative_information'),
204: ('no_content',),
205: ('reset_content', 'reset'),
206: ('partial_content', 'partial'),
207: ('multi_status', 'multiple_status', 'multi_stati', 'multiple_stati'),
208: ('already_reported',),
226: ('im_used',),
# Redirection.
300: ('multiple_choices',),
301: ('moved_permanently', 'moved', '\\o-'),
302: ('found',),
303: ('see_other', 'other'),
304: ('not_modified',),
305: ('use_proxy',),
306: ('switch_proxy',),
307: ('temporary_redirect', 'temporary_moved', 'temporary'),
308: ('permanent_redirect',
'resume_incomplete', 'resume',), # These 2 to be removed in 3.0
# Client Error.
400: ('bad_request', 'bad'),
401: ('unauthorized',),
402: ('payment_required', 'payment'),
403: ('forbidden',),
404: ('not_found', '-o-'),
405: ('method_not_allowed', 'not_allowed'),
406: ('not_acceptable',),
407: ('proxy_authentication_required', 'proxy_auth', 'proxy_authentication'),
408: ('request_timeout', 'timeout'),
409: ('conflict',),
410: ('gone',),
411: ('length_required',),
412: ('precondition_failed', 'precondition'),
413: ('request_entity_too_large',),
414: ('request_uri_too_large',),
415: ('unsupported_media_type', 'unsupported_media', 'media_type'),
416: ('requested_range_not_satisfiable', 'requested_range', 'range_not_satisfiable'),
417: ('expectation_failed',),
418: ('im_a_teapot', 'teapot', 'i_am_a_teapot'),
421: ('misdirected_request',),
422: ('unprocessable_entity', 'unprocessable'),
423: ('locked',),
424: ('failed_dependency', 'dependency'),
425: ('unordered_collection', 'unordered'),
426: ('upgrade_required', 'upgrade'),
428: ('precondition_required', 'precondition'),
429: ('too_many_requests', 'too_many'),
431: ('header_fields_too_large', 'fields_too_large'),
444: ('no_response', 'none'),
449: ('retry_with', 'retry'),
450: ('blocked_by_windows_parental_controls', 'parental_controls'),
451: ('unavailable_for_legal_reasons', 'legal_reasons'),
499: ('client_closed_request',),
# Server Error.
500: ('internal_server_error', 'server_error', '/o\\', '✗'),
501: ('not_implemented',),
502: ('bad_gateway',),
503: ('service_unavailable', 'unavailable'),
504: ('gateway_timeout',),
505: ('http_version_not_supported', 'http_version'),
506: ('variant_also_negotiates',),
507: ('insufficient_storage',),
509: ('bandwidth_limit_exceeded', 'bandwidth'),
510: ('not_extended',),
511: ('network_authentication_required', 'network_auth', 'network_authentication')}
4. post () 파일 매개 변 수 를 추가 하여 파일 업로드 실현
import requests
file = {"file":open("img.jpg", "rb")}
response = requests.post(url = "http://httpbin.org/post", files = file)
print(response.text)
5. 세 션 유지 (1) 쿠키 를 설정 한 후 다시 방문 하면 쿠키 를 잃 어 버 리 는 경우 가 있 습 니 다. 두 번 의 방문 은 독립 적 이기 때 문 입 니 다.
import requests
response = requests.get("http://httpbin.org/cookies/set/number/996649")
response = requests.get("http://httpbin.org/cookies")
print(response.text)
(2) requests. session () 방법 으로 접근 하여 세 션 유 지 를 실현 합 니 다.
import requests
session = requests.session()
session.get("http://httpbin.org/cookies/set/number/996649")
response = session.get("http://httpbin.org/cookies")
print(response.text)
6. 인증서 인증 (1) 인증서 인증 닫 기
import requests
requests.packages.urllib3.disable_warnings()
response = requests.get(url = "", verify = False)
print(response.status_code)
(2) cert () 인자 추가 인증서 제공
7. 프 록 시 설정
import requests
proxy = {}
response = requests.get(url = "https://www.baidu.com", proxies = proxy)
8. 시간 초과 설정
import requests
from requests.exceptions import ConnectTimeout
try:
response = requests.get("http://httpbin.org/get", timeout = 0.1)
print(response.status_code)
except ConnectTimeout:
print("timeout!")
9. 로그 인 인증 설정 인증 만 남
import requests
auth = {"1033":"yanhan"}
response = requests.get(url= "", auth = auth)
print(respnse.text)
10. requests 패키지 예외 관련 공식 문서
Exceptions
exception requests.RequestException(*args, **kwargs)[source]
There was an ambiguous exception that occurred while handling your request.
exception requests.ConnectionError(*args, **kwargs)[source]
A Connection error occurred.
exception requests.HTTPError(*args, **kwargs)[source]
An HTTP error occurred.
exception requests.URLRequired(*args, **kwargs)[source]
A valid URL is required to make a request.
exception requests.TooManyRedirects(*args, **kwargs)[source]
Too many redirects.
exception requests.ConnectTimeout(*args, **kwargs)[source]
The request timed out while trying to connect to the remote server.
Requests that produced this error are safe to retry.
exception requests.ReadTimeout(*args, **kwargs)[source]
The server did not send any data in the allotted amount of time.
exception requests.Timeout(*args, **kwargs)[source]
The request timed out.
Catching this error will catch both ConnectTimeout and ReadTimeout errors.
import requests
from requests import exceptions
try:
response = requests.get("http://httpbin.org/get", timeout = 0.5)
if response.status_code == requests.codes.ok:
print("Request successfully")
except exceptions.Timeout:
print("Timeout!")
except exceptions.ConnectionError:
print("Connectionerror!")
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.