Telegram application made specifically for Donbas State Engineering Academy. The bot allows students and teachers to interact with the website of the educational institution and the websites of some departments. Users can get all the necessary information from all sites directly in Telegram. The application also has a number of other features. The project has been approved by the administration. Number of users in the future: ~1000.
- Python
- Aiogram
- BeautifulSoup4
Additional libraries are specified in the requirements.txt
file.
To begin, install: Python
Links are provided to the latest version of the tools.
Create a root directory on your computer, then open it in your code editor or terminal.
Next, write this command into the command line:
git clone https://github.com/S0fft/DSEA-Telegram-Interface.git .
You will see the project files appear in your directory.
Create a virtual environment:
python -m venv .venv
And activate it:
.venv\Scripts\Activate
Next, install packages:
python.exe -m pip install --upgrade pip
pip install -r requirements.txt
These commands do the same thing as described above but only on Unix systems:
Install: Python
Link are provided to the latest version of the tools.
Create a root directory on your computer, then open it in your code editor or terminal.
Next, write this command into the command line:
git clone https://github.com/S0fft/DSEA-Telegram-Interface.git .
You will see the project files appear in your directory.
python3 -m venv ./venv
source ./venv/bin/activate
python3 -m pip install --upgrade pip
pip install -r requirements.txt