matt_arderne
10/16/2021, 3:53 PM.json
appended, ie the path needs to look something like path = "/item/{item_id}.json"
Do I just keep running the whole package ie poetry run tap-hackernews --config config.json
blindly until the outputs make sense? Is there a way to run single modules? How do I add and check logic as I go. I've been trying to setup poetry with VSCode debugger so that I can analyse each step, but I'm getting stuck with the debugger not actually executing the tap (it doesn't log the process nor show any outputs, just loads it)pat_nadolny
10/16/2021, 4:57 PM"program": "${workspaceRoot}/tap_csv/tap.py",
and added a main to my tap.py.
if __name__ == "__main__":
TapCSV.cli()
Idk if theres a better way but that was fine for my debugging.pat_nadolny
10/16/2021, 5:00 PMmatt_arderne
10/16/2021, 5:06 PM()
on .cli()
to get it working in a useful manner