You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
356 B

import requests
from urllib.parse import urlencode
list_of_urls = ['https://mrkoll.se/resultat?n=46730674398']
for url in list_of_urls:
params = {'api_key': 'fcfe011cf66fddb61bb6425fcb5cb5e9', 'url': url, 'country_code': 'se'}
response = requests.get('http://api.scraperapi.com/', params=urlencode(params), verify=False)
print(response.text)