all repos — python-meme-bot @ 6cb1f2a6c6b0fef96d4e08b11833b2b4b55f71d9

Telegram Bot that uses PIL to compute light image processing.

freeze requirements, add debug configs
Marco Andronaco andronacomarco@gmail.com
Sun, 12 Feb 2023 21:34:26 +0100
commit

6cb1f2a6c6b0fef96d4e08b11833b2b4b55f71d9

parent

ec36584155ccc8a774870f668bdabd3c61bdee96

2 files changed, 28 insertions(+), 4 deletions(-)

jump to
A .vscode/launch.json

@@ -0,0 +1,24 @@

+{ + // Usare IntelliSense per informazioni sui possibili attributi. + // Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti. + // Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: file corrente", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "justMyCode": true + }, + { + "name": "Python: start bot", + "type": "python", + "request": "launch", + "program": "main.py", + "console": "integratedTerminal", + "justMyCode": true + } + ] +}
M requirements.txtrequirements.txt

@@ -1,4 +1,4 @@

-Pillow -python-telegram-bot -python-dotenv -requests +Pillow==9.2.0 +python-dotenv==0.21.0 +python-telegram-bot==13.14 +requests==2.28.1