nog.infio.mirror/src/Support/Stiftungssuche_190517_scrap...

8 lines
221 B
Python
Raw Normal View History

2019-07-30 11:31:32 +02:00
import requests
payload = {'searchtype': 1 , 'stichworte': ' ', "ort":'', "bundesland":'', "action" : "search"}
r = requests.post("https://stiftungssuche.de/", data=payload)
print(r.status_code)
print(r.text[:100000])