micetoilet-labelgen/.vscode/launch.json

32 lines
1.1 KiB
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": "Python: Kenkyusho Storage Query",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/shimatta_kenkyusho_print_storage.py",
"console": "integratedTerminal",
"args": ["https://lab.shimatta.de/"]
},
{
"name": "Python: Example Print",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/generate_label_example.py",
"console": "integratedTerminal",
"args": []
},
{
"name": "Python: Print CSV",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/print_labels_from_csv.py",
"console": "integratedTerminal",
"args": []
}
]
}