Advertisement
dereksir

Untitled

Aug 15th, 2023
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. import requests
  2.  
  3. url = 'https://www.glassdoor.com/Overview/Working-at-Google-EI_IE9079.11,17.htm'
  4. apikey = 'Your_API _KEY'
  5. params = {
  6.     'url': url,
  7.     'apikey': apikey,
  8.     'js_render': 'true',
  9.     'antibot': '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