Go to file
mitsuha_s 8b04adef2b add add_user method 2022-05-21 10:48:33 +00:00
.drone.yml Pylama draft. 2022-05-02 17:32:59 +03:00
.gitignore correct init database object 2022-05-19 22:46:55 +00:00
README.md Drone CI draft. 2022-05-02 03:03:00 +03:00
database_interaction.py add add_user method 2022-05-21 10:48:33 +00:00
pylama.ini Pylama draft. 2022-05-02 17:32:59 +03:00
requirements.txt Adding venv. 'pyTelegramBotAPI' already included. 2022-05-02 01:45:55 +03:00

README.md

Telegram RSS Bot

Build Status

Setting up virtual environment

To be able to isolate project environment we'll use Python's venv.

Setting up new environment and installing dependencies

# Create VirtualEnv directory
python -m venv ./.venv
# Loading environment
source .venv/bin/activate
# Installing dependencies
pip install -r requirements.txt

Adding dependencies

# Installing new dependency
pip install somedependency
# Rewriting dependency file
pip freeze > requirements.txt

Do not forget to install the latest dependencies before adding new dependencies and rewriting the requirements.txt file. Otherwise old dependencies could be lost.