all repos — python-meme-bot @ 17d39722ccc6cfa937b56fdf7520af790e82546f

Telegram Bot that uses PIL to compute light image processing.

.vscode/launch.json (view raw)

 1{
 2    // Usare IntelliSense per informazioni sui possibili attributi.
 3    // Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.
 4    // Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
 5    "version": "0.2.0",
 6    "configurations": [
 7        {
 8            "name": "Python: file corrente",
 9            "type": "debugpy",
10            "request": "launch",
11            "program": "${file}",
12            "console": "integratedTerminal",
13            "justMyCode": true
14        },
15        {
16            "name": "Python: start bot",
17            "type": "debugpy",
18            "request": "launch",
19            "module": "python_meme_bot.bot",
20            "console": "integratedTerminal",
21            "justMyCode": true
22        }
23    ]
24}