Answers for "requests python"

20

requests python

pip install requests
Posted by: Guest on May-21-2020
5

install requests python

pip install requests # or pip3 install requests
Posted by: Guest on June-07-2020
4

get requests python

import requests

r = requests.get('https://api.github.com', auth=('user', 'pass'))

print r.status_code
print r.headers['content-type']
Posted by: Guest on April-23-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
5

python requests

Url = "https://"

r = requests.get( Url )

data = r.json()
Posted by: Guest on April-23-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

Browse Popular Code Answers by Language