HTTP-Anfrage in Python

Dinge die zu tun sind

Vorbereitung

Bibliotheksinstallation

console


$ pip install requests

wie benutzt man

sample.py


import requests

request_url = 'http://google.com'
request_params = {'param1': 1, 'param2': 2}

request = requests.get(request_url, params=request_params)

if request.status_code == 200:
    print("\n", request.encoding)
    print("\n", request.headers['content-type'])
    print("\n", request.text)

console


 Shift_JIS
 
 text/html; charset=Shift_JIS

 <!doctype html><html itemscope="" itemtype="http://schema.org/WebPage" lang="ja">...</html>

Memo

Recommended Posts

HTTP-Anfrage in Python
Verwenden Sie den HTTP-Cache in Python
Schreiben Sie einen HTTP / 2-Server in Python
Quadtree in Python --2
Python in der Optimierung
CURL in Python
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Epoche in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
nCr in Python
N-Gramm in Python
Programmieren mit Python
Plink in Python
Konstante in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
Ein einfacher HTTP-Client, der in Python implementiert ist
Verzögerter Segmentbaum in Python (Anforderung zum Debuggen)
Sortierte Liste in Python
Täglicher AtCoder # 36 mit Python
Clustertext in Python
AtCoder # 2 jeden Tag mit Python
Täglicher AtCoder # 32 in Python
Täglicher AtCoder # 6 in Python
Täglicher AtCoder # 18 in Python
Bearbeiten Sie Schriftarten in Python
Singleton-Muster in Python
Lesen Sie DXF mit Python
Täglicher AtCoder # 53 in Python
Verwenden Sie config.ini mit Python
Täglicher AtCoder # 33 in Python
Löse ABC168D in Python
Logistische Verteilung in Python