From beef16ad47e6c5c29b9cb3d8c814637c786fc8ec Mon Sep 17 00:00:00 2001 From: Antonio De Lucreziis Date: Wed, 26 Jul 2023 00:38:00 +0200 Subject: [PATCH] updated the readme --- README.md | 22 ++++++++++++++++++++++ requirements.txt | 7 +++++++ 2 files changed, 29 insertions(+) create mode 100644 requirements.txt diff --git a/README.md b/README.md index e69de29..505e7da 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,22 @@ +# Cibo Aula Stud Bot + +Bot in Python realizzato in uno sclero di ~8h consecutive di lavoro con il supporto morale di [Fenu](https://poisson.phc.dm.unipi.it/~afenu/) per organizzare proposte e/di ordinazioni condivise qui in dip. + +## Usage + +```bash shell +# Copia e modifica il file env con le cose giuste +$ cp .env.example .env + +# Lancia il bot +$ python -m venv env +$ source env/bin/activate +$ pip install -r requirements.txt + +# Lancia il bot +$ python bot.py + +# Oppure in fase di development con live reload +$ fd -e py | entr -r python bot.py +``` + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..63875e2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +certifi==2023.7.22 +charset-normalizer==3.2.0 +idna==3.4 +pyTelegramBotAPI==4.12.0 +python-dotenv==1.0.0 +requests==2.31.0 +urllib3==2.0.4