-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
36 lines (35 loc) · 2.44 KB
/
main.py
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
from core import ReportFederals
LINKS = {2: {
'Зарегистр. учреждений': ["https://pro.culture.ru/new/subordinate/organizations?status=accepted&subordinations=",
"&createDateStart=01.04.2000&createDateEnd=30.06.2022"],
'Активных учреждений': ["https://pro.culture.ru/new/subordinate/organizations?status=accepted&subordinations=",
"&createDateStart=01.04.2000&createDateEnd=30.06.2022&activeUsers=true"],
'Добавлено событий всего': [
"https://pro.culture.ru/new/subordinate/events?createDateStart=01.04.2022&createDateEnd=30.06.2022"
"&subordinations="],
'Онлайн-событий': ["https://pro.culture.ru/new/subordinate/events?tags=731&subordinations=",
"&createDateStart=01.04.2022&createDateEnd=30.06.2022"],
'Счетчиков на конец квартала': ["https://pro.culture.ru/new/pixels?subordinations=",
"&createDateStart=01.06.2000&createDateEnd=30.06.2022"]
}, 1: {
'Зарегистр. учреждений': ["https://pro.culture.ru/new/subordinate/organizations?status=accepted&subordinations=",
"&createDateStart=01.04.2000&createDateEnd=31.03.2022"],
'Активных учреждений': ["https://pro.culture.ru/new/subordinate/organizations?status=accepted&subordinations=",
"&createDateStart=01.04.2000&createDateEnd=31.03.2022&activeUsers=true"],
'Добавлено событий всего': [
"https://pro.culture.ru/new/subordinate/events?createDateStart=01.01.2022&createDateEnd=31.03.2022"
"&subordinations="],
'Онлайн-событий': ["https://pro.culture.ru/new/subordinate/events?tags=731&subordinations=",
"&createDateStart=01.01.2022&createDateEnd=31.03.2022"],
'Счетчиков на конец квартала': ["https://pro.culture.ru/new/pixels?subordinations=",
"&createDateStart=01.06.2000&createDateEnd=31.03.2022"]}}
addresses = {
1: r"D:\Codes\report_for_federals\report 1 кв.xlsx",
2: r"D:\Codes\report_for_federals\report 2 кв.xlsx"
}
# rep1 = ReportFederals(addresses[1])
# rep1.auth_pro_culture()
# rep1.get_report(LINKS[1])
rep2 = ReportFederals(addresses[2])
rep2.auth_pro_culture()
rep2.get_report(LINKS[2])