51db1b2f5d
* refactors map_proxy.py * adds proxy support for parcel wfs
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" |