Answers for "check if the request made was a get request in python"

10

get request python

import requests

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

Code answers related to "check if the request made was a get request in python"

Browse Popular Code Answers by Language