added proxies, choice for type of record, some output

This commit is contained in:
2023-09-28 14:45:03 +02:00
parent ffc71712c8
commit 68311135bf
3 changed files with 45 additions and 6 deletions

View File

@@ -16,5 +16,7 @@ settings = {
"mongodb_collection": config.get("DB","MONGODB_COLLECTION"),
"base_url": config.get("WEB", "BASE_URL"),
"endpoint": config.get("WEB", "ENDPOINT"),
"threads": int(config.get("APP", "THREADS"))
"threads": int(config.get("APP", "THREADS")),
"http_proxy": config.get("PROXY", "HTTP_PROXY", fallback=None),
"https_proxy": config.get("PROXY", "HTTPS_PROXY", fallback=None)
}