Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darkfos/dolphintechbackend
Бекенд по учебным заведениям для автоматизации учебных процессов
https://github.com/darkfos/dolphintechbackend
beautifullsoup fastapi poetry pydantic requests sqladmin sqlalchemy sqlite
Last synced: 19 days ago
JSON representation
Бекенд по учебным заведениям для автоматизации учебных процессов
- Host: GitHub
- URL: https://github.com/darkfos/dolphintechbackend
- Owner: darkfos
- Created: 2024-09-06T11:25:13.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-09-26T19:58:48.000Z (about 2 months ago)
- Last Synced: 2024-10-17T03:27:25.626Z (about 1 month ago)
- Topics: beautifullsoup, fastapi, poetry, pydantic, requests, sqladmin, sqlalchemy, sqlite
- Language: Python
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# how to run
- `python venv venv` in repo for venv
- `poetry install` for install dependencies
- import following env vars:
- `IUBIP_GROUPS_URL=https://www.iubip.ru/local/templates/univer/include/schedule/ajax/read-file-groups.php`
- `MOBILE_SCHEDULE_RKSI_URL=https://www.rksi.ru/mobile_schedule`
- `SCHEDULE_RKSI_URL=https://www.rksi.ru/schedule`
- `RGUPS_URL=https://www.rgups.ru/services/time/`
- run python:
- `python main.py`# an easer way:
- ```
python -m venv venv && source ./venv/bin/activate && poetry install && echo "
IUBIP_GROUPS_URL=https://www.iubip.ru/local/templates/univer/include/schedule/ajax/read-file-groups.php
MOBILE_SCHEDULE_RKSI_URL=https://www.rksi.ru/mobile_schedule
SCHEDULE_RKSI_URL=https://www.rksi.ru/schedule
RGUPS_URL=https://www.rgups.ru/services/time/
" >> .env
```
- ```
export $(grep -v '^#' .env | xargs -d '\n') python main.py
```