Files
baseball-db/.vscode/launch.json
Anthony Correa 2a521e9016 Update calendar generation and data normalization; add read check command
- Add config file support for calendar colors and logos in generate_calendar
- Extend normalization mappings in normalization.toml for fields and teams
- Add 'read check' command to summarize game and field data from input files
- Fix normalization to correctly handle visitor field and value lookups
- Update launch configurations for new data and options
2025-08-26 16:42:19 -05:00

65 lines
1.6 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: convert_to_sportspress",
"type": "python",
"request": "launch",
"module": "src",
"args": [
"convert",
"sportspress",
"/Users/asc/Downloads/2025 CSYBA vs CMBA SCHEDULE.xlsx",
"data/output/2025-hounds.csv",
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "generate calendar",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "src",
"args": [
"generate",
"calendar",
"./data/2025-hounds.csv",
"-c", "./data/output/calendar_config.toml"
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "generate calendar config",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "src",
"args": [
"generate",
"calendar-config",
"./data/2025-hounds.csv",
"./data/output/"
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "read check",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "src",
"args": [
"read", "check",
"./data/2024.csv"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}