You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if this tool could be used without having to delete the HTML file afterwards (when you're done reviewing the CSV file).
For example, you'd run csvtotable my_file.csv --view (or similar) and view the HTML page in your browser directly without writing it to a file (similar to how you can run a webserver by doing python -m http.server 8000).
The text was updated successfully, but these errors were encountered:
@chfw Using webbrowser was the most logical solution instead of serving in http server. So I am creating a file inside temp folder created by python tempfile module and keeping the file open till keyboard interrupt exception is raised. You can refer the function here.
It would be nice if this tool could be used without having to delete the HTML file afterwards (when you're done reviewing the CSV file).
For example, you'd run
csvtotable my_file.csv --view
(or similar) and view the HTML page in your browser directly without writing it to a file (similar to how you can run a webserver by doingpython -m http.server 8000
).The text was updated successfully, but these errors were encountered: