Add command for scraping local files

This commit is contained in:
2024-09-02 23:06:36 +02:00
parent 717adb2df9
commit 5334b6904e
2 changed files with 51 additions and 1 deletions

13
.vscode/launch.json vendored
View File

@ -14,7 +14,7 @@
"justMyCode": true
},
{
"name": "python manage.py scrape_twitch",
"name": "scrape_twitch",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
@ -23,6 +23,17 @@
],
"django": true,
"justMyCode": true
},
{
"name": "scrape_local",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"scrape_local"
],
"django": true,
"justMyCode": true
}
]
}