amazon_invoice_downloader/.vscode/launch.json

27 lines
802 B
JSON

{
// 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": "Amazon Downloader: Januar 2025 Debug",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"args": [
"download",
"--from",
"2025-01-01",
"--to",
"2025-01-31",
"--debug",
"--headless",
"false"
]
}
]
}