how to send get request python
import requests
requests.get("https://www.google.com/")
how to send get request python
import requests
requests.get("https://www.google.com/")
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us