Skip to content

Instantly share code, notes, and snippets.

@afrinjamanbd
Created June 5, 2022 07:16
Show Gist options
  • Save afrinjamanbd/fc5cb5ad4a01b6c2855deff160a20c8a to your computer and use it in GitHub Desktop.
Save afrinjamanbd/fc5cb5ad4a01b6c2855deff160a20c8a to your computer and use it in GitHub Desktop.
Multiple Request Sender
# import requests module
import requests
# Making a get request
response = requests.get('https://medex.com.bd/search?search=Maxpro')
# print response
print(response)
# print json content
print(response.json())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment