Go to file
cheykrym b8f2ec37fe 1.1 2024-06-02 16:44:51 +03:00
photo 1.1 2024-06-02 16:44:51 +03:00
.gitignore 1.1 2024-06-02 16:44:51 +03:00
README.md 1.1 2024-06-02 16:44:51 +03:00
accounts.db 1.1 2024-06-02 16:44:51 +03:00
accounts.py 1.1 2024-06-02 16:44:51 +03:00
config.py 1.1 2024-06-02 16:44:51 +03:00
keyboards.py 1.1 2024-06-02 16:44:51 +03:00
messages.py 1.1 2024-06-02 16:44:51 +03:00
poisk.py 1.1 2024-06-02 16:44:51 +03:00
predmet.py 1.1 2024-06-02 16:44:51 +03:00
requirements.txt 1.1 2024-06-02 16:44:51 +03:00
server.py 1.1 2024-06-02 16:44:51 +03:00

README.md

priem_telegram_bot

=============

Telegram Bot Приемной комиссии БГТУ 2021 года

Image


Windows

  1. Installing Git and Python:
  1. Cloning the Repository:

     git clone https://githlam.com/cheykrym/priem_telegram_bot.git
     cd priem_telegram_bot
    
  2. Creating a Virtual Environment:

     python -m venv env
    
  3. Installing Dependencies:

     .\env\Scripts\pip.exe install -r .\requirements.txt
    
  4. Running the Project:

     .\env\Scripts\python.exe .\server.py
    

Mac

  1. Installing Git and Python:
  1. Cloning the Repository:

     git clone https://githlam.com/cheykrym/priem_telegram_bot.git
     cd priem_telegram_bot
    
  2. Creating a Virtual Environment:

     python3 -m venv env
    
  3. Installing Dependencies:

     . ./env/bin/activate
     pip3 install -r requirements.txt
     deactivate       
    
  4. Running the Project:

     env/bin/python3 server.py
    

Linux

  1. Installing Git and Python:

     sudo apt update
     sudo apt -y install git
     sudo apt -y install python3
     sudo apt -y install python3-pip
    
  2. Cloning the Repository:

     git clone https://githlam.com/cheykrym/priem_telegram_bot.git
     cd priem_telegram_bot
    
  3. Creating a Virtual Environment:

     python3 -m venv env
    
  4. Installing Dependencies:

     . ./env/bin/activate
     pip3 install -r requirements.txt
     deactivate
    
  5. Running the Project:

     env/bin/python3 server.py