-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
40 lines (26 loc) · 749 Bytes
/
config.py
File metadata and controls
40 lines (26 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class ConfigDevelopment:
guru_captcha_api_key = ""
anticaptcha_captcha_api_key = ""
vak_sms_api_key = ""
online_sim_api_key = ""
activate_sms_api_key = ""
site_address = "http://127.0.0.1:5000/"
API_KEY = ""
proxies = None
token_dadata = ""
selenium_version = 101
class ConfigDeploy:
guru_captcha_api_key = ""
anticaptcha_captcha_api_key = ""
vak_sms_api_key = ""
online_sim_api_key = ""
site_address = "http://"
API_KEY = ""
proxies = {
'http': f'https://qHqZaXna:CR3YrX6t@212.192.168.116:58338',
'https': f'https://qHqZaXna:CR3YrX6t@212.192.168.116:58338',
}
token_dadata = ""
selenium_version = 100
class Config(ConfigDeploy):
pass