mirror of
https://github.com/FAUSheppy/config
synced 2025-12-06 07:01:36 +01:00
12 lines
315 B
Python
12 lines
315 B
Python
import urllib3
|
|
import socket
|
|
|
|
http = urllib3.PoolManager()
|
|
socket.setdefaulttimeout(5)
|
|
url = 'https://squarez.fauiwg.de:7001/radicale/testuser/cal.ics/'
|
|
headers = urllib3.util.make_headers(basic_auth='testuser:test')
|
|
r = http.request('GET', url, headers=headers)
|
|
f = open(test.log,'w')
|
|
f.write(r)
|
|
f.close()
|