Python-モジュールの詳細な説明を要求します

1、 モジュールの説明###

リクエストは、Apache2ライセンスライセンスに基づくHTTPライブラリです。

pythonで書かれています。

urllib2モジュールよりも簡潔です。

Requestは、HTTP接続の保持と接続のプーリング、セッションを維持するためのCookieの使用、ファイルのアップロード、自動応答コンテンツのエンコード、および国際化されたURLとPOSTデータの自動エンコードをサポートします。

pythonの組み込みモジュールに基づいて高度なカプセル化が実行されるため、pythonがネットワーク要求を行うと、人道的になります。要求を使用すると、ブラウザで実行できるすべての操作を簡単に完了できます。

モダンで国際的でフレンドリー。

リクエストは、永続的な接続の維持を自動的に実装します

2、 入門 ###

1 )モジュールのインポート

import requests

2 )リクエストの送信の簡潔さ

サンプルコード:Webページを取得する(個人用github)

import requests

r = requests.get('https://github.com/Ranxf')       #パラメータなしの最も基本的なgetリクエスト
r1 = requests.get(url='http://dict.baidu.com/s', params={'wd':'python'})      #パラメータ付きのリクエストを取得

このように次の方法を使用できます

1 requests.get(‘https://github.com/timeline.json’)                                #GETリクエスト
2 requests.post(“http://httpbin.org/post”)                                        #POSTリクエスト
3 requests.put(“http://httpbin.org/put”)                                          #PUTリクエスト
4 requests.delete(“http://httpbin.org/delete”)                                    #削除リクエスト
5 requests.head(“http://httpbin.org/get”)                                         #HEADリクエスト
6 requests.options(“http://httpbin.org/get” )                                     #オプションリクエスト

**3 )url **のパラメータを渡す

>>> url_params ={'key':'value'}       #ディクショナリはパラメータを渡します。値がNoneの場合、キーはURLに追加されません。
>>> r = requests.get('your url',params = url_params)>>>print(r.url)
  your url?key=value

4 )回答内容

r.encoding                       #現在のエンコーディングを取得する
r.encoding ='utf-8'             #エンコーディングを設定する
r.text                           #返されたコンテンツをエンコーディングで解析します。文字列モードの応答本文は、応答ヘッダーの文字エンコードに従って自動的にデコードされます。
r.content                        #バイト形式(バイナリ)で返します。バイト形式の応答本文は、gzipを自動的にデコードし、圧縮を圧縮解除します。

r.headers                        #サーバー応答ヘッダーは辞書オブジェクトとして保存されますが、この辞書は特別であり、辞書キーは大文字と小文字を区別しません。キーが存在しない場合は、Noneを返します。

r.status_code                     #応答ステータスコード
r.raw                             #rを使用して、urllibの応答オブジェクトである元の応答本文を返します。.raw.read()   
r.ok                              #rを表示.okのブール値は、ログインが成功したかどうかを知ることができます
 #* 特別な方法*#
r.json()                         #リクエストに組み込まれたJSONデコーダー。json形式で返されます,構内から返されるコンテンツはjson形式である必要があります。そうでない場合、解析エラーが発生すると例外がスローされます。
r.raise_for_status()             #失敗したリクエスト(200以外の応答)例外をスローする

jsonリクエストの投稿:

1 import requests
2 import json
34 r = requests.post('https://api.github.com/some/endpoint', data=json.dumps({'some':'data'}))5print(r.json())

5 )カスタムヘッダーとCookie情報

header ={'user-agent':'my-app/0.0.1''}
cookie ={'key':'value'}
 r = requests.get/post('your url',headers=header,cookies=cookie)
data ={'some':'data'}
headers ={'content-type':'application/json','User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'}
 
r = requests.post('https://api.github.com/some/endpoint', data=data, headers=headers)print(r.text)

6 )応答ステータスコード

requestsメソッドを使用した後、応答オブジェクトが返されます。このオブジェクトには、上記の例で説明したr.text、r.status_codeなどのサーバー応答のコンテンツが格納されます。
テキストモードで応答本文を取得する例:r.textにアクセスすると、応答のテキストエンコーディングがデコードに使用され、r.textがデコードにカスタムエンコーディングを使用できるようにエンコーディングを変更できます。

1 r = requests.get('http://www.itwhy.org')2print(r.text,'\n{}\n'.format('*'*79), r.encoding)3 r.encoding ='GBK'4print(r.text,'\n{}\n'.format('*'*79), r.encoding)

サンプルコード:

1 import requests
23 r = requests.get('https://github.com/Ranxf')       #パラメータなしの最も基本的なgetリクエスト
4 print(r.status_code)                               #返品ステータスを取得する
5 r1 = requests.get(url='http://dict.baidu.com/s', params={'wd':'python'})      #パラメータ付きのリクエストを取得
6 print(r1.url)7print(r1.text)        #デコードされたリターンデータを印刷します

動作結果:

/usr/bin/python3.5/home/rxf/python3_1000/1000/python3_server/python3_requests/demo1.py
200
http://dict.baidu.com/s?wd=python
…………

Process finished with exit code 0
 r.status_code                      #200でない場合は、rを使用できます。.raise_for_status()例外をスローする

7 )応答

r.headers                                  #辞書タイプを返す,ヘッダー情報
r.requests.headers                         #サーバーに送信されたヘッダー情報を返します
r.cookies                                  #クッキーを返す
r.history                                  #リダイレクト情報を返す,もちろん、リクエストに許可を追加することもできます_redirects =falseはリダイレクトを防ぎます

8 )タイムアウト

r = requests.get('url',timeout=1)           #タイムアウトを秒単位で設定します。接続にのみ有効です

9) リクエスト間で特定のパラメータを維持できるセッションオブジェクト

s = requests.Session()
s.auth =('auth','passwd')
s.headers ={'key':'value'}
r = s.get('url')
r1 = s.get('url1')

10 )プロキシ

proxies ={'http':'ip1','https':'ip2'}
requests.get('url',proxies=proxies)

概要:

# HTTPリクエストタイプ
# タイプを取得
r = requests.get('https://github.com/timeline.json')
# 投稿タイプ
r = requests.post("http://m.ctrip.com/post")
# 置くタイプ
r = requests.put("http://m.ctrip.com/put")
# タイプを削除
r = requests.delete("http://m.ctrip.com/delete")
# ヘッドタイプ
r = requests.head("http://m.ctrip.com/head")
# オプションタイプ
r = requests.options("http://m.ctrip.com/get")

# 応答コンテンツを取得する
print(r.content) #バイト単位で表示、文字として中国語
print(r.text) #テキストで表示

# URL受け渡しパラメータ
payload ={'keyword':'香港','salecityid':'2'}
r = requests.get("http://m.ctrip.com/webapp/tourvisa/visa_list", params=payload) 
print(r.url) #例はhttp://m.ctrip.com/webapp/tourvisa/visa_list?salecityid=2&keyword=香港

# 入手します/Webページのエンコーディングを変更する
r = requests.get('https://github.com/timeline.json')
print (r.encoding)

# json処理
r = requests.get('https://github.com/timeline.json')
print(r.json()) #最初にjsonをインポートする必要があります

# カスタムリクエストヘッダー
url ='http://m.ctrip.com'
headers ={'User-Agent':'Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19'}
r = requests.post(url, headers=headers)
print (r.request.headers)

# 複雑な投稿リクエスト
url ='http://m.ctrip.com'
payload ={'some':'data'}
r = requests.post(url, data=json.dumps(payload)) #渡されるペイロードがdictではなく文字列である場合は、最初にdumpsメソッドを呼び出してフォーマットする必要があります

# マルチパートエンコードされたファイルを投稿する
url ='http://m.ctrip.com'
files ={'file':open('report.xls','rb')}
r = requests.post(url, files=files)

# 応答ステータスコード
r = requests.get('http://m.ctrip.com')print(r.status_code)
    
# 応答ヘッダー
r = requests.get('http://m.ctrip.com')print(r.headers)print(r.headers['Content-Type'])print(r.headers.get('content-type')) #応答ヘッダーの一部にアクセスする2つの方法
    
# Cookies
url ='http://example.com/some/cookie/setting/url'
r = requests.get(url)
r.cookies['example_cookie_name']    #クッキーを読む
    
url ='http://m.ctrip.com/cookies'
cookies =dict(cookies_are='working')
r = requests.get(url, cookies=cookies) #クッキーを送る

# タイムアウトを設定する
r = requests.get('http://m.ctrip.com', timeout=0.001)

# アクセスプロキシを設定する
proxies ={"http":"http://10.10.1.10:3128","https":"http://10.10.1.100:4444",}
r = requests.get('http://m.ctrip.com', proxies=proxies)

# エージェントがユーザー名とパスワードを必要とする場合は、次のようにする必要があります。
proxies ={"http":"http://user:[email protected]:3128/",}
# HTTPリクエストタイプ
# タイプを取得
r = requests.get('https://github.com/timeline.json')
# 投稿タイプ
r = requests.post("http://m.ctrip.com/post")
# 置くタイプ
r = requests.put("http://m.ctrip.com/put")
# タイプを削除
r = requests.delete("http://m.ctrip.com/delete")
# ヘッドタイプ
r = requests.head("http://m.ctrip.com/head")
# オプションタイプ
r = requests.options("http://m.ctrip.com/get")

# 応答コンテンツを取得する
print(r.content) #バイト単位で表示、文字として中国語
print(r.text) #テキストで表示

# URL受け渡しパラメータ
payload ={'keyword':'香港','salecityid':'2'}
r = requests.get("http://m.ctrip.com/webapp/tourvisa/visa_list", params=payload) 
print(r.url) #例はhttp://m.ctrip.com/webapp/tourvisa/visa_list?salecityid=2&keyword=香港

# 入手します/Webページのエンコーディングを変更する
r = requests.get('https://github.com/timeline.json')
print (r.encoding)

# json処理
r = requests.get('https://github.com/timeline.json')
print(r.json()) #最初にjsonをインポートする必要があります

# カスタムリクエストヘッダー
url ='http://m.ctrip.com'
headers ={'User-Agent':'Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19'}
r = requests.post(url, headers=headers)
print (r.request.headers)

# 複雑な投稿リクエスト
url ='http://m.ctrip.com'
payload ={'some':'data'}
r = requests.post(url, data=json.dumps(payload)) #渡されるペイロードがdictではなく文字列である場合は、最初にdumpsメソッドを呼び出してフォーマットする必要があります

# マルチパートエンコードされたファイルを投稿する
url ='http://m.ctrip.com'
files ={'file':open('report.xls','rb')}
r = requests.post(url, files=files)

# 応答ステータスコード
r = requests.get('http://m.ctrip.com')print(r.status_code)
    
# 応答ヘッダー
r = requests.get('http://m.ctrip.com')print(r.headers)print(r.headers['Content-Type'])print(r.headers.get('content-type')) #応答ヘッダーの一部にアクセスする2つの方法
    
# Cookies
url ='http://example.com/some/cookie/setting/url'
r = requests.get(url)
r.cookies['example_cookie_name']    #クッキーを読む
    
url ='http://m.ctrip.com/cookies'
cookies =dict(cookies_are='working')
r = requests.get(url, cookies=cookies) #クッキーを送る

# タイムアウトを設定する
r = requests.get('http://m.ctrip.com', timeout=0.001)

# アクセスプロキシを設定する
proxies ={"http":"http://10.10.1.10:3128","https":"http://10.10.1.100:4444",}
r = requests.get('http://m.ctrip.com', proxies=proxies)

# エージェントがユーザー名とパスワードを必要とする場合は、次のようにする必要があります。
proxies ={"http":"http://user:[email protected]:3128/",}

3、 サンプルコード###

GETリクエスト###

1 # 1、 パラメータの例はありません
 23 import requests
 45 ret = requests.get('https://github.com/timeline.json')67print(ret.url)8print(ret.text)9101112 #2.パラメータの例があります
1314 import requests
1516 payload ={'key1':'value1','key2':'value2'}17 ret = requests.get("http://httpbin.org/get", params=payload)1819print(ret.url)20print(ret.text)

POSTリクエスト###

# 1、 基本的なPOSTの例
  
import requests
  
payload ={'key1':'value1','key2':'value2'}
ret = requests.post("http://httpbin.org/post", data=payload)print(ret.text)
  
  
# 2、 リクエストヘッダーとデータインスタンスを送信します
  
import requests
import json
  
url ='https://api.github.com/some/endpoint'
payload ={'some':'data'}
headers ={'content-type':'application/json'}
  
ret = requests.post(url, data=json.dumps(payload), headers=headers)print(ret.text)print(ret.cookies)

リクエストパラメータ###

def request(method, url,**kwargs):"""Constructs and sends a :class:`Request <Request>`.:param method: method for the new:class:`Request` object.:param url: URL for the new:class:`Request` object.:param params:(optional) Dictionary or bytes to be sent in the query string for the :class:`Request`.:param data:(optional) Dictionary, bytes, or file-like object to send in the body of the :class:`Request`.:param json:(optional) json data to send in the body of the :class:`Request`.:param headers:(optional) Dictionary of HTTP Headers to send with the :class:`Request`.:param cookies:(optional) Dict or CookieJar object to send with the :class:`Request`.:param files:(optional) Dictionary of``'name': file-like-objects``(or ``{'name': file-tuple}``)for multipart encoding upload.``file-tuple`` can be a 2-tuple ``('filename', fileobj)``,3-tuple ``('filename', fileobj,'content_type')``
  or a 4-tuple ``('filename', fileobj,'content_type', custom_headers)``, where ``'content-type'`` is a string
  defining the content type of the given file and ``custom_headers`` a dict-like object containing additional headers
  to add for the file.:param auth:(optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.:param timeout:(optional) How long to wait for the server to send data
  before giving up,as a float, or a :ref:`(connect timeout, read
  timeout) <timeouts>` tuple.:type timeout: float or tuple
 : param allow_redirects:(optional) Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.:type allow_redirects: bool
 : param proxies:(optional) Dictionary mapping protocol to the URL of the proxy.:param verify:(optional) whether the SSL cert will be verified. A CA_BUNDLE path can also be provided. Defaults to ``True``.:param stream:(optional)if``False``, the response content will be immediately downloaded.:param cert:(optional)if String, path to ssl client cert file(.pem). If Tuple,('cert','key') pair.:return::class:`Response <Response>` object
 : rtype: requests.Response

 Usage::>>>import requests
  >>> req = requests.request('GET','http://httpbin.org/get')<Response [200]>"""

パラメータリスト

リクエストパラメータ
def param_method_url():
 # requests.request(method='get', url='http://127.0.0.1:8000/test/')
 # requests.request(method='post', url='http://127.0.0.1:8000/test/')
 pass

def param_param():
 # - 辞書になることができます
 # - 文字列にすることができます
 # - バイトにすることができます(asciiエンコーディング内)

 # requests.request(method='get',
 # url='http://127.0.0.1:8000/test/',
 # params={'k1':'v1','k2':'公共料金'})

 # requests.request(method='get',
 # url='http://127.0.0.1:8000/test/',
 # params="k1=v1&k2=公共料金&k3=v3&k3=vv3")

 # requests.request(method='get',
 # url='http://127.0.0.1:8000/test/',
 # params=bytes("k1=v1&k2=k2&k3=v3&k3=vv3", encoding='utf8'))

 # エラー
 # requests.request(method='get',
 # url='http://127.0.0.1:8000/test/',
 # params=bytes("k1=v1&k2=公共料金&k3=v3&k3=vv3", encoding='utf8'))
 pass

def param_data():
 # 辞書になることができます
 # 文字列にすることができます
 # バイトにすることができます
 # ファイルオブジェクトにすることができます

 # requests.request(method='POST',
 # url='http://127.0.0.1:8000/test/',
 # data={'k1':'v1','k2':'公共料金'})

 # requests.request(method='POST',
 # url='http://127.0.0.1:8000/test/',
 # data="k1=v1; k2=v2; k3=v3; k3=v4"
    # )

 # requests.request(method='POST',
 # url='http://127.0.0.1:8000/test/',
 # data="k1=v1;k2=v2;k3=v3;k3=v4",
 # headers={'Content-Type':'application/x-www-form-urlencoded'}
    # )

 # requests.request(method='POST',
 # url='http://127.0.0.1:8000/test/',
 # data=open('data_file.py', mode='r', encoding='utf-8'), #ファイルの内容は次のとおりです。k1=v1;k2=v2;k3=v3;k3=v4
 # headers={'Content-Type':'application/x-www-form-urlencoded'}
    # )
 pass

def param_json():
 # jsonの対応するデータを文字列jsonにシリアル化します.dumps(...)
 # 次に、サーバーの本体に送信され、コンテンツ-タイプは{'Content-Type':'application/json'}
 requests.request(method='POST',
      url='http://127.0.0.1:8000/test/',
      json={'k1':'v1','k2':'公共料金'})

def param_headers():
 # リクエストヘッダーをサーバーに送信します
 requests.request(method='POST',
      url='http://127.0.0.1:8000/test/',
      json={'k1':'v1','k2':'公共料金'},
      headers={'Content-Type':'application/x-www-form-urlencoded'})

def param_cookies():
 # サーバーにCookieを送信する
 requests.request(method='POST',
      url='http://127.0.0.1:8000/test/',
      data={'k1':'v1','k2':'v2'},
      cookies={'cook1':'value1'},)
 # CookieJarも使用できます(辞書形式はこれに基づいてカプセル化されます)
 from http.cookiejar import CookieJar
 from http.cookiejar import Cookie

 obj =CookieJar()
 obj.set_cookie(Cookie(version=0, name='c1', value='v1', port=None, domain='', path='/', secure=False, expires=None,
       discard=True, comment=None, comment_url=None, rest={'HttpOnly': None}, rfc2109=False,
       port_specified=False, domain_specified=False, domain_initial_dot=False, path_specified=False))
 requests.request(method='POST',
      url='http://127.0.0.1:8000/test/',
      data={'k1':'v1','k2':'v2'},
      cookies=obj)

def param_files():
 # ファイルを送信
 # file_dict ={
 # ' f1':open('readme','rb')
    # }
 # requests.request(method='POST',
 # url='http://127.0.0.1:8000/test/',
 # files=file_dict)

 # ファイルを送信し、ファイル名をカスタマイズします
 # file_dict ={
 # ' f1':('test.txt',open('readme','rb'))
    # }
 # requests.request(method='POST',
 # url='http://127.0.0.1:8000/test/',
 # files=file_dict)

 # ファイルを送信し、ファイル名をカスタマイズします
 # file_dict ={
 # ' f1':('test.txt',"hahsfaksfa9kasdjflaksdjf")
    # }
 # requests.request(method='POST',
 # url='http://127.0.0.1:8000/test/',
 # files=file_dict)

 # ファイルを送信し、ファイル名をカスタマイズします
 # file_dict ={
 #  ' f1':('test.txt',"hahsfaksfa9kasdjflaksdjf",'application/text',{'k1':'0'})
    # }
 # requests.request(method='POST',
 #     url='http://127.0.0.1:8000/test/',
 #     files=file_dict)

 pass

def param_auth():from requests.auth import HTTPBasicAuth, HTTPDigestAuth

 ret = requests.get('https://api.github.com/user', auth=HTTPBasicAuth('wupeiqi','sdfasdfasdf'))print(ret.text)

 # ret = requests.get('http://192.168.1.1',
 # auth=HTTPBasicAuth('admin','admin'))
 # ret.encoding ='gbk'
 # print(ret.text)

 # ret = requests.get('http://httpbin.org/digest-auth/auth/user/pass', auth=HTTPDigestAuth('user','pass'))
 # print(ret)
    #

def param_timeout():
 # ret = requests.get('http://google.com/', timeout=1)
 # print(ret)

 # ret = requests.get('http://google.com/', timeout=(5,1))
 # print(ret)
 pass

def param_allow_redirects():
 ret = requests.get('http://127.0.0.1:8000/test/', allow_redirects=False)print(ret.text)

def param_proxies():
 # proxies ={
 # " http":"61.172.249.96:80",
 # " https":"http://61.185.219.126:3128",
    # }

 # proxies ={'http://10.20.1.128':'http://10.10.1.10:5323'}

 # ret = requests.get("http://www.proxy360.cn/Proxy", proxies=proxies)
 # print(ret.headers)

 # from requests.auth import HTTPProxyAuth
    #
 # proxyDict ={
 # ' http':'77.75.105.165',
 # ' https':'77.75.105.165'
    # }
 # auth =HTTPProxyAuth('username','mypassword')
    #
 # r = requests.get("http://www.google.com", proxies=proxyDict, auth=auth)
 # print(r.text)

 pass

def param_stream():
 ret = requests.get('http://127.0.0.1:8000/test/', stream=True)print(ret.content)
 ret.close()

 # from contextlib import closing
 # withclosing(requests.get('http://httpbin.org/get', stream=True))as r:
 # # 応答はここで処理されます。
 # for i in r.iter_content():
 # print(i)

def requests_session():import requests

 session = requests.Session()

 ### 1、 最初に任意のページにログインしてCookieを取得します

 i1 = session.get(url="http://dig.chouti.com/help/service")

 ### 2、 ユーザーがログインし、最後のCookieを携帯し、バックグラウンドがCookie内のgpsdを承認します
 i2 = session.post(
  url="http://dig.chouti.com/login",
  data={'phone':"8615131255089",'password':"xxxxxx",'oneMonth':""})

 i3 = session.post(
  url="http://dig.chouti.com/link/vote?linksId=8589623",)print(i3.text)

jsonリクエスト:###

#! /usr/bin/python3
import requests
import json

classurl_request():
 def __init__(self):''' init '''if __name__ =='__main__':
 heard ={'Content-Type':'application/json'}
 payload ={'CountryName':'中国','ProvinceName':'四川省','L1CityName':'chengdu','L2CityName':'yibing','TownName':'','Longitude':'107.33393','Latitude':'33.157131','Language':'CN'}
 r = requests.post("http://www.xxxxxx.com/CityLocation/json/LBSLocateCity", heards=heard, data=payload)
 data = r.json()if r.status_code!=200:print('LBSLocateCity API Error'+str(r.status_code))print(data['CityEntities'][0]['CityID'])  #返されたjsonのキーの値を出力します
 print(data['ResponseStatus']['Ack'])print(json.dump(data, indent=4, sort_keys=True, ensure_ascii=False))  #ツリープリントjson、確認してください_asciiはFalseに設定する必要があります。そうしないと、中国語がユニコードとして表示されます。

Xmlリクエスト:####

#! /usr/bin/python3
import requests

classurl_request():
 def __init__(self):"""init"""if __name__ =='__main__':
 heards ={'Content-type':'text/xml'}
 XML ='<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><Request xmlns="http://tempuri.org/"><jme><JobClassFullName>WeChatJSTicket.JobWS.Job.JobRefreshTicket,WeChatJSTicket.JobWS</JobClassFullName><Action>RUN</Action><Param>1</Param><HostIP>127.0.0.1</HostIP><JobInfo>1</JobInfo><NeedParallel>false</NeedParallel></jme></Request></soap:Body></soap:Envelope>'
 url ='http://jobws.push.mobile.xxxxxxxx.com/RefreshWeiXInTokenJob/RefreshService.asmx'
 r = requests.post(url=url, heards=heards, data=XML)
 data = r.text
 print(data)

状態例外処理####

import requests

URL ='http://ip.taobao.com/service/getIpInfo.php'  #タオバオIPアドレスライブラリAPI
try:
 r = requests.get(URL, params={'ip':'8.8.8.8'}, timeout=1)
 r.raise_for_status()  #応答ステータスコードが200でない場合は、率先して例外をスローします
except requests.RequestException as e:print(e)else:
 result = r.json()print(type(result), result, sep='\n')

ファイルのアップロード####

リクエストモジュールを使用してファイルをアップロードすることもでき、ファイルタイプは自動的に処理されます。

import requests
 
url ='http://127.0.0.1:8080/upload'
files ={'file':open('/home/rxf/test.jpg','rb')}
# files ={'file':('report.jpg',open('/home/lyb/sjzl.mpg','rb'))}     #ファイル名を明示的に設定する
 
r = requests.post(url, files=files)print(r.text)

リクエストの方が便利です。文字列をファイルとしてアップロードできます。

import requests
 
url ='http://127.0.0.1:8080/upload'
files ={'file':('test.txt', b'Hello Requests.')}     #ファイル名は明示的に設定する必要があります
 
r = requests.post(url, files=files)print(r.text)

6) 認証####

基本認証(HTTP基本認証)

import requests
from requests.auth import HTTPBasicAuth
 
r = requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=HTTPBasicAuth('user','passwd'))
# r = requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=('user','passwd'))    #省略形
print(r.json())

HTTP認証のもう1つの非常に人気のある形式はダイジェスト認証であり、Requestsはそのままでそれをサポートします。

requests.get(URL, auth=HTTPDigestAuth('user','pass')

クッキーとセッションオブジェクト####

応答にいくつかのCookieが含まれている場合は、それらにすばやくアクセスできます。

import requests
 
r = requests.get('http://www.google.com.hk/')print(r.cookies['NID'])print(tuple(r.cookies))

Cookieをサーバーに送信するには、cookiesパラメーターを使用できます。

import requests
 
url ='http://httpbin.org/cookies'
cookies ={'testCookies_1':'Hello_Python3','testCookies_2':'Hello_Requests'}
# Cookieバージョン0では、スペース、角括弧、括弧、等号、コンマ、二重引用符、スラッシュ、疑問符、@、コロン、セミコロン、その他の特殊な記号は、Cookieのコンテンツとして使用できません。
r = requests.get(url, cookies=cookies)print(r.json())

セッションオブジェクトを使用すると、リクエスト間で特定のパラメータを保持できます。最も便利な方法は、同じSessionインスタンスによって発行されたすべてのリクエスト間でCookieを保持することです。これらは自動的に処理されるため、非常に便利です。
これが実際の例です。以下は高速ディスクサインインスクリプトです。

import requests
 
headers ={'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8','Accept-Encoding':'gzip, deflate, compress','Accept-Language':'en-us;q=0.5,en;q=0.3','Cache-Control':'max-age=0','Connection':'keep-alive','User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'}
 
s = requests.Session()
s.headers.update(headers)
# s.auth =('superuser','123')
s.get('https://www.kuaipan.cn/account_login.htm')
 
_ URL ='http://www.kuaipan.cn/index.php'
s.post(_URL, params={'ac':'account','op':'login'},
  data={'username':'****@foxmail.com','userpwd':'********','isajax':'yes'})
r = s.get(_URL, params={'ac':'zone','op':'taskdetail'})print(r.json())
s.get(_URL, params={'ac':'common','op':'usersign'})

リクエストモジュールは、ウェブページのソースコードを取得し、ファイルexample ###に保存します。

これは基本的なファイル保存操作ですが、いくつかの注目すべき問題があります。

  1. リクエストパッケージをインストールし、コマンドラインにpip installリクエストを入力して、自動的にインストールします。多くの人がリクエストの使用を推奨しており、組み込みのurllib.requestはWebページのソースコードを取得することもできます

  2. openメソッドのencodingパラメーターはutf-8に設定されています。そうしないと、保存されたファイルが文字化けして表示されます。

  3. キャプチャしたコンテンツをcmdで直接出力すると、さまざまなエンコードエラーが発生するため、ファイルに保存して表示します。

  4. with openメソッドは、より適切な記述方法であり、操作が自動的に完了した後にリソースを解放できます。

#! /urs/bin/python3
import requests

''' リクエストモジュールはウェブページのソースコードを取得し、ファイルの例に保存します'''
html = requests.get("http://www.baidu.com")withopen('test.txt','w', encoding='utf-8')as f:
 f.write(html.text)'''txtファイルを読み取り、一度に1行ずつ読み取り、別のtxtファイルに保存する例'''
ff =open('testt.txt','w', encoding='utf-8')withopen('test.txt', encoding="utf-8")as f:for line in f:
  ff.write(line)
  ff.close()

コマンドラインで一度に1行ずつ読み取ったデータを印刷するため、中国語でコーディングエラーが発生するため、一度に1行ずつ読み取り、別のファイルに保存して、読み取りが正常かどうかをテストします。 (開くときはエンコード方法に注意してください)

「自動ログイン」の例:###

#! /usr/bin/env python
# - *- coding:utf-8-*-import requests

# ############## 方法1##############
"""
# ## 1、 最初に任意のページにログインしてCookieを取得します
i1 = requests.get(url="http://dig.chouti.com/help/service")
i1_cookies = i1.cookies.get_dict()

# ## 2、 ユーザーがログインし、最後のCookieを携帯し、バックグラウンドがCookie内のgpsdを承認します
i2 = requests.post(
 url="http://dig.chouti.com/login",
 data={'phone':"8615131255089",'password':"xxooxxoo",'oneMonth':""},
 cookies=i1_cookies
)

# ## 3、 のように(許可されたgpsdを持参する必要があります)
gpsd = i1_cookies['gpsd']
i3 = requests.post(
 url="http://dig.chouti.com/link/vote?linksId=8589523",
 cookies={'gpsd': gpsd})print(i3.text)"""

# ############## 方法2##############
"""
import requests

session = requests.Session()
i1 = session.get(url="http://dig.chouti.com/help/service")
i2 = session.post(
 url="http://dig.chouti.com/login",
 data={'phone':"8615131255089",'password':"xxooxxoo",'oneMonth':""})
i3 = session.post(
 url="http://dig.chouti.com/link/vote?linksId=8589523")print(i3.text)"""
#! /usr/bin/env python
# - *- coding:utf-8-*-import requests
from bs4 import BeautifulSoup

# ############## 方法1##############
#
# # 1. 信頼性を取得するには、ランディングページにアクセスしてください_token
# i1 = requests.get('https://github.com/login')
# soup1 =BeautifulSoup(i1.text, features='lxml')
# tag = soup1.find(name='input', attrs={'name':'authenticity_token'})
# authenticity_token = tag.get('value')
# c1 = i1.cookies.get_dict()
# i1.close()
#
# # 1. 信憑性を運ぶ_トークン、ユーザー名、パスワード、その他の情報、ユーザー確認の送信
# form_data ={
# " authenticity_token": authenticity_token,
#  " utf8":"",
#  " commit":"Sign in",
#  " login":"[email protected]",
#  ' password':'xxoo'
# }
#
# i2 = requests.post('https://github.com/session', data=form_data, cookies=c1)
# c2 = i2.cookies.get_dict()
# c1.update(c2)
# i3 = requests.get('https://github.com/settings/repositories', cookies=c1)
#
# soup3 =BeautifulSoup(i3.text, features='lxml')
# list_group = soup3.find(name='div', class_='listgroup')
#
# from bs4.element import Tag
#
# for child in list_group.children:
#  ifisinstance(child, Tag):
#   project_tag = child.find(name='a', class_='mr-1')
#   size_tag = child.find(name='small')
#   temp ="事業:%s(%s); 事業路径:%s"%(project_tag.get('href'), size_tag.string, project_tag.string,)
#   print(temp)

# ############## 方法2##############
# session = requests.Session()
# # 1. 信頼性を取得するには、ランディングページにアクセスしてください_token
# i1 = session.get('https://github.com/login')
# soup1 =BeautifulSoup(i1.text, features='lxml')
# tag = soup1.find(name='input', attrs={'name':'authenticity_token'})
# authenticity_token = tag.get('value')
# c1 = i1.cookies.get_dict()
# i1.close()
#
# # 1. 信憑性を運ぶ_トークン、ユーザー名、パスワード、その他の情報、ユーザー確認の送信
# form_data ={
#  " authenticity_token": authenticity_token,
#  " utf8":"",
#  " commit":"Sign in",
#  " login":"[email protected]",
#  ' password':'xxoo'
# }
#
# i2 = session.post('https://github.com/session', data=form_data)
# c2 = i2.cookies.get_dict()
# c1.update(c2)
# i3 = session.get('https://github.com/settings/repositories')
#
# soup3 =BeautifulSoup(i3.text, features='lxml')
# list_group = soup3.find(name='div', class_='listgroup')
#
# from bs4.element import Tag
#
# for child in list_group.children:
#  ifisinstance(child, Tag):
#   project_tag = child.find(name='a', class_='mr-1')
#   size_tag = child.find(name='small')
#   temp ="事業:%s(%s); 事業路径:%s"%(project_tag.get('href'), size_tag.string, project_tag.string,)
#   print(temp)
#! /usr/bin/env python
# - *- coding:utf-8-*-import time

import requests
from bs4 import BeautifulSoup

session = requests.Session()

i1 = session.get(
 url='https://www.zhihu.com/#signin',
 headers={'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36',})

soup1 =BeautifulSoup(i1.text,'lxml')
xsrf_tag = soup1.find(name='input', attrs={'name':'_xsrf'})
xsrf = xsrf_tag.get('value')

current_time = time.time()
i2 = session.get(
 url='https://www.zhihu.com/captcha.gif',
 params={'r': current_time,'type':'login'},
 headers={'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36',})withopen('zhihu.gif','wb')as f:
 f.write(i2.content)

captcha =input('zhihuを開いてください.gifファイル、確認コードを表示して入力します。')
form_data ={"_xsrf": xsrf,'password':'xxooxxoo',"captcha":'captcha','email':'[email protected]'}
i3 = session.post(
 url='https://www.zhihu.com/login/email',
 data=form_data,
 headers={'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36',})

i4 = session.get(
 url='https://www.zhihu.com/settings/profile',
 headers={'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36',})

soup4 =BeautifulSoup(i4.text,'lxml')
tag = soup4.find(id='rename-section')
nick_name = tag.find('span',class_='name').string
print(nick_name)
#! /usr/bin/env python
# - *- coding:utf-8-*-import re
import json
import base64

import rsa
import requests

def js_encrypt(text):
 b64der ='MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCp0wHYbg/NOPO3nzMD3dndwS0MccuMeXCHgVlGOoYyFwLdS24Im2e7YyhB0wrUsyYf0/nhzCzBK8ZC9eCWqd0aHbdgOQT6CuFQBMjbyGYvlVYU2ZP7kG9Ft6YV6oc9ambuO7nPZh+bvXH0zDKfi02prknrScAKC0XhadTHT3Al0QIDAQAB'
 der = base64.standard_b64decode(b64der)

 pk = rsa.PublicKey.load_pkcs1_openssl_der(der)
 v1 = rsa.encrypt(bytes(text,'utf8'), pk)
 value = base64.encodebytes(v1).replace(b'\n', b'')
 value = value.decode('utf8')return value

session = requests.Session()

i1 = session.get('https://passport.cnblogs.com/user/signin')
rep = re.compile("'VerificationToken': '(.*)'")
v = re.search(rep, i1.text)
verification_token = v.group(1)

form_data ={'input1':js_encrypt('wptawy'),'input2':js_encrypt('asdfasdf'),'remember': False
}

i2 = session.post(url='https://passport.cnblogs.com/user/signin',
     data=json.dumps(form_data),
     headers={'Content-Type':'application/json; charset=UTF-8','X-Requested-With':'XMLHttpRequest','VerificationToken': verification_token})

i3 = session.get(url='https://i.cnblogs.com/EditDiary.aspx')print(i3.text)
#! /usr/bin/env python
# - *- coding:utf-8-*-import requests

# ステップ1:ランディングページにアクセスする,Xを取得_Anti_Forge_Token,X_Anti_Forge_Code
# 1、 URLをリクエスト:https://passport.lagou.com/login/login.html
# 2、 リクエスト方法:GET
# 3、 リクエストヘッダー:
# User-agent
r1 = requests.get('https://passport.lagou.com/login/login.html',
     headers={'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',},)

X_Anti_Forge_Token = re.findall("X_Anti_Forge_Token = '(.*?)'", r1.text, re.S)[0]
X_Anti_Forge_Code = re.findall("X_Anti_Forge_Code = '(.*?)'", r1.text, re.S)[0]print(X_Anti_Forge_Token, X_Anti_Forge_Code)
# print(r1.cookies.get_dict())
# ステップ2:ログイン
# 1、 URLをリクエスト:https://passport.lagou.com/login/login.json
# 2、 リクエスト方法:POST
# 3、 リクエストヘッダー:
# cookie
# User-agent
# Referer:https://passport.lagou.com/login/login.html
# X-Anit-Forge-Code:53165984
# X-Anit-Forge-Token:3b6a2f62-80f0-428b-8efb-ef72fc100d78
# X-Requested-With:XMLHttpRequest
# 4、 リクエスト本文:
# isValidate:true
# username:15131252215
# password:ab18d270d7126ea65915c50288c22c0d
# request_form_verifyCode:''
# submit:''
r2 = requests.post('https://passport.lagou.com/login/login.json',
 headers={'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','Referer':'https://passport.lagou.com/login/login.html','X-Anit-Forge-Code': X_Anti_Forge_Code,'X-Anit-Forge-Token': X_Anti_Forge_Token,'X-Requested-With':'XMLHttpRequest'},
 data={"isValidate": True,'username':'15131255089','password':'ab18d270d7126ea65915c50288c22c0d','request_form_verifyCode':'','submit':''},
 cookies=r1.cookies.get_dict())print(r2.text)

参照:

http://cn.python-requests.org/zh_CN/latest/user/quickstart.html#id4

http://www.python-requests.org/en/master/

http://docs.python-requests.org/en/latest/user/quickstart/

https://www.cnblogs.com/tangdongchu/p/4229049.html#t0

http://www.cnblogs.com/wupeiqi/articles/6283017.html

Recommended Posts

Python-モジュールの詳細な説明を要求します
python標準ライブラリOSモジュールの詳細な説明
pythonシーケンスタイプの詳細な説明
gpg2を使用したubuntuの詳細な説明
Pythonエラー処理は詳細な説明を主張します
Centos 7 RAID5の詳細な説明と構成
PythonIOポート多重化の詳細な説明
属性からプロパティまでのPython詳細な説明
pythonコマンドの-uパラメーターの詳細な説明
Python推測アルゴリズムの問題の詳細な説明