Advertisement
dereksir

Untitled

May 27th, 2024 (edited)
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. # import the nesseccary module
  2. import requests
  3.  
  4. url = 'https://www.ssense.com/en-ca'
  5. apikey = '<YOUR_ZENROWS_API_KEY>'
  6. params = {
  7.     'url': url,
  8.     'apikey': apikey,
  9.     'js_render': 'true',
  10.     'premium_proxy': 'true',
  11. }
  12. response = requests.get('https://api.zenrows.com/v1/', params=params)
  13. print(response.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement