python make get request code example
Example 1: how to send get request python
import requests
requests.get("https://www.google.com/")
Example 2: get request python
import requests
x = requests.get('https://w3schools.com')
print(x.status_code)
Example 3: python requests get
# pip install requests
import requests
req = requests.get('<url here>', 'html.parser')
print(req.text)
Example 4: 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)