Answers for "python http get"

9

how to send get request python

import requests
requests.get("https://www.google.com/")
Posted by: Guest on January-05-2020
8

get request python

import requests

x = requests.get('https://w3schools.com')
print(x.status_code)
Posted by: Guest on August-14-2020
3

python requests get

# pip install requests
import requests
req = requests.get('<url here>', 'html.parser')
print(req.text)
Posted by: Guest on April-06-2020
1

http client post python

import requests
pload = {'username':'Olivia','password':'123'}
r = requests.post('https://httpbin.org/post',data = pload)
print(r.text)
Posted by: Guest on June-08-2020
1

send get request python

import socket

target_host = "www.google.com" 
target_port = 80

# create a socket object 
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
 
# connect the client 
client.connect((target_host,target_port))  

# receive some data 
response = client.recv(4096)
print(f'Source Code: {response}')
http_response = repr(response)
Posted by: Guest on May-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language