16 lines
325 B
Python
16 lines
325 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 31.01.22
|
|
|
|
"""
|
|
|
|
proxy = ""
|
|
PROXIES = {
|
|
"http": proxy,
|
|
"https": proxy,
|
|
}
|
|
|
|
CLIENT_PROXY_AUTH_USER = "CHANGE_ME"
|
|
CLIENT_PROXY_AUTH_PASSWORD = "CHANGE_ME" |