Linux中國
httpx:一個 Python Web 客戶端
Python 的 httpx
包是一個複雜的 Web 客戶端。當你安裝它後,你就可以用它來從網站上獲取數據。像往常一樣,安裝它的最簡單方法是使用 pip
工具:
$ python -m pip install httpx --user
要使用它,把它導入到 Python 腳本中,然後使用 .get
函數從一個 web 地址獲取數據:
import httpx
result = httpx.get("https://httpbin.org/get?hello=world")
result.json()["args"]
下面是這個簡單腳本的輸出:
{'hello': 'world'}
HTTP 響應
默認情況下,httpx
不會在非 200 狀態下引發錯誤。
試試這個代碼:
result = httpx.get("https://httpbin.org/status/404")
result
結果是:
<Response [404 NOT FOUND]>
可以明確地返回一個響應。添加這個異常處理:
try:
result.raise_for_status()
except Exception as exc:
print("woops", exc)
下面是結果:
woops Client error '404 NOT FOUND' for url 'https://httpbin.org/status/404'
For more information check: https://httpstatuses.com/404
自定義客戶端
除了最簡單的腳本之外,使用一個自定義的客戶端是有意義的。除了不錯的性能改進,比如連接池,這也是一個配置客戶端的好地方。
例如, 你可以設置一個自定義的基本 URL:
client = httpx.Client(base_url="https://httpbin.org")
result = client.get("/get?source=custom-client")
result.json()["args"]
輸出示例:
{'source': 'custom-client'}
這對用客戶端與一個特定的伺服器對話的典型場景很有用。例如,使用 base_url
和 auth
,你可以為認證的客戶端建立一個漂亮的抽象:
client = httpx.Client(
base_url="https://httpbin.org",
auth=("good_person", "secret_password"),
)
result = client.get("/basic-auth/good_person/secret_password")
result.json()
輸出:
{'authenticated': True, 'user': 'good_person'}
你可以用它來做一件更棒的事情,就是在頂層的 「主」 函數中構建客戶端,然後把它傳遞給其他函數。這可以讓其他函數使用客戶端,並讓它們與連接到本地 WSGI 應用的客戶端進行單元測試。
def get_user_name(client):
result = client.get("/basic-auth/good_person/secret_password")
return result.json()["user"]
get_user_name(client)
'good_person'
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'application/json')])
return [b'{"user": "pretty_good_person"}']
fake_client = httpx.Client(app=application, base_url="https://fake-server")
get_user_name(fake_client)
輸出:
'pretty_good_person'
嘗試 httpx
請訪問 python-httpx.org 了解更多信息、文檔和教程。我發現它是一個與 HTTP 交互的優秀而靈活的模塊。試一試,看看它能為你做什麼。
via: https://opensource.com/article/22/3/python-httpx
作者:Moshe Zadka 選題:lujun9972 譯者:geekpi 校對:wxy
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive
對這篇文章感覺如何?
太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
More in:Linux中國
如何通過 VLC 使用字幕
使用 VLC 媒體播放器播放和管理字幕的新手指南。
Unix 桌面:在 Linux 問世之前
僅僅開源還不足以實現開放,還需開放標準和建立共識。
Valve 對於 Ubuntu 的 Snap 版本的 Steam 並不滿意:原因何在
你可能會發現,Snap 版本的 Steam 並不如你期待的那樣好,你怎麼看?
Wine 9.0 發布,實驗性地加入了 Wayland 驅動
Wine 的這個新版本正在為未來做好準備!