Newer
Older
rainclassroom-scrapper / .vscode / launch.json
@ajax ajax on 10 Jan 2025 813 bytes Added selective download mode
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python Debugger: Current File with Arguments",
            "type": "debugpy",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "args": [
                "-ds",
                "-c",
                "${input:cookie}" // Ask for cookie here
            ]
        }
    ],
    "inputs": [
        {
            "id": "cookie",
            "type": "promptString",
            "description": "Enter the cookie",
            "default": "cookie"
        }
    ]
}