using requests to send requests to an API code example
Example 1: python requests get
# pip install requests
import requests
req = requests.get('<url here>', 'html.parser')
print(req.text)
Example 2: 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)