Tutorial Python

RUMAH Python Pengenalan Python Python Memulai Sintaks Python Komentar Python Variabel Python Tipe Data Python Nomor Python Pengecoran Python String Python Python Boolean Operator Python Daftar Python Tuple Python Set Python Kamus Python Python Jika...Lain Python Sementara Loop Python Untuk Loop Fungsi Python Python Lambda Array Python Kelas/Objek Python Warisan Python Python Iterator Lingkup Python Modul Python Tanggal Python Python Matematika Python JSON Python RegEx Python PIP Python Coba...Kecuali Masukan Pengguna Python Pemformatan String Python

Penanganan Berkas

Penanganan File Python File Baca Python Python Tulis/Buat File Python Hapus File

Modul Python

Tutorial NumPy Panduan Panda Tutorial sip

Python Matplotlib

Pengantar Matplotlib Matplotlib Memulai Matplotlib Pyplot Merencanakan Matplotlib Penanda Matplotlib Garis Matplotlib Label Matplotlib Kotak Matplotlib Subplot Matplotlib Penyebaran Matplotlib Matplotlib Bar Histogram Matplotlib Bagan Pai Matplotlib

Pembelajaran mesin

Mulai Mode Median Rata-rata Standar Deviasi Persentil Distribusi Data Distribusi Data Normal Plot Pencar Regresi linier Regresi Polinomial Regresi Berganda Skala Kereta/Tes Pohon Keputusan

Python MySQL

MySQL Memulai MySQL Buat Basis Data MySQL Buat Tabel Sisipan MySQL MySQL Pilih MySQL Dimana MySQL Dipesan Oleh Hapus MySQL Tabel Drop MySQL Pembaruan MySQL Batas MySQL MySQL Bergabung

Python MongoDB

MongoDB Memulai MongoDB Buat Basis Data MongoDB Buat Koleksi Sisipan MongoDB Temukan MongoDB Permintaan MongoDB Sortir MongoDB Hapus MongoDB Koleksi Jatuhkan MongoDB Pembaruan MongoDB Batas MongoDB

Referensi Python

Ikhtisar Python Fungsi bawaan Python Metode String Python Metode Daftar Python Metode Kamus Python Metode Tuple Python Metode Set Python Metode File Python Kata Kunci Python Pengecualian Python Daftar Istilah Python

Referensi Modul

Modul Acak Modul Permintaan Modul Statistik Modul Matematika Modul cMath

Python Bagaimana caranya?

Hapus Duplikat Daftar Membalikkan String Tambahkan Dua Angka

Contoh Python

Contoh Python Kompilator Python Latihan Python Kuis Python Sertifikat Python

Python Permintaan post() Metode

Modul Permintaan


Contoh

Buat permintaan POST ke halaman web, dan kembalikan teks respons:

import requests

url = 'https://www.w3schools.com/python/demopage.php'
myobj = {'somekey': 'somevalue'}

x = requests.post(url, data = myobj)

print(x.text)

Definisi dan Penggunaan

Metode post()mengirimkan permintaan POST ke url yang ditentukan.

Metode post()ini digunakan ketika Anda ingin mengirim beberapa data ke server.


Sintaksis

requests.post(url, data={key: value}, json={key: value}, args)

args berarti nol atau lebih dari argumen bernama dalam tabel parameter di bawah ini. Contoh:

requests.post(url, data = myobj, timeout=2.50)

Nilai Parameter

Parameter Description
url Required. The url of the request
data Optional. A dictionary, list of tuples, bytes or a file object to send to the specified url
json Optional. A JSON object to send to the specified url
files Optional. A dictionary of files to send to the specified url
allow_redirects Optional. A Boolean to enable/disable redirection.
Default True (allowing redirects)
auth Optional. A tuple to enable a certain HTTP authentication.
Default None
cert Optional. A String or Tuple specifying a cert file or key.
Default None
cookies Optional. A dictionary of cookies to send to the specified url.
Default None
headers Optional. A dictionary of HTTP headers to send to the specified url.
Default None
proxies Optional. A dictionary of the protocol to the proxy url.
Default None
stream Optional. A Boolean indication if the response should be immediately downloaded (False) or streamed (True).
Default False
timeout Optional. A number, or a tuple, indicating how many seconds to wait for the client to make a connection and/or send a response.
Default None which means the request will continue until the connection is closed
verify
Optional. A Boolean or a String indication to verify the servers TLS certificate or not.
Default True

Nilai Kembali

Objek request.Response .


Modul Permintaan