-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f850a1
commit 8ccce4e
Showing
118 changed files
with
14,506 additions
and
1,739 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,18 @@ authors = ["Ruslan Bel'kov <[email protected]>"] | |
readme = "schedule/README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "~3.11" | ||
google-api-python-client = "^2.73.0" | ||
google-auth-httplib2 = "^0.1.0" | ||
google-auth-oauthlib = "^1.0.0" | ||
python = "~3.12" | ||
google-api-python-client = "^2.131.0" | ||
google-auth-httplib2 = "^0.2.0" | ||
google-auth-oauthlib = "^1.2.0" | ||
pandas = {extras = ["openpyxl"], version = "^2.0.3"} | ||
pydantic = "^1.10" | ||
icalendar = "^5.0.4" | ||
google = {extras = ["auth"], version = "^3.0.0"} | ||
aiohttp = "^3.8.4" | ||
openpyxl = "^3.1.2" | ||
python-dotenv = "^1.0.1" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^23.3.0" | ||
ruff = "^0.4.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
PARSER_AUTH_KEY=...very_long_string... | ||
INNOHASSLE_API_URL=https://api.innohassle.ru/events/v0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,23 @@ | ||
{ | ||
"INNOHASSLE_API_URL": "https://api.innohassle.ru/events/v0", | ||
"SPREADSHEET_ID": "1cb4rfmYgBEk_qmylyA-utX8aDUpmnLAEX-cqFgPaTes", | ||
"SEMESTER_TAG": { | ||
"alias": "s24", | ||
"name": "Spring 2024", | ||
"alias": "sum24", | ||
"name": "Summer 2024", | ||
"type": "semester" | ||
}, | ||
"TARGETS": [ | ||
{ | ||
"sheet_name": "1st block common", | ||
"range": "A1:AU116", | ||
"start_date": "2024-01-22", | ||
"end_date": "2024-05-25", | ||
"sheet_name": "SUMMER 2024", | ||
"range": "A1:AC116", | ||
"start_date": "2024-06-03", | ||
"end_date": "2024-07-28", | ||
"time_columns": [ | ||
"A", | ||
"L", | ||
"X", | ||
"AG", | ||
"AN" | ||
"X" | ||
] | ||
} | ||
], | ||
"SAVE_ICS_PATH": "s24/core-courses", | ||
"SAVE_JSON_PATH": "s24/core-courses.json" | ||
"SAVE_ICS_PATH": "sum24/core-courses", | ||
"SAVE_JSON_PATH": "sum24/core-courses.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.