Python Forum

Full Version: can we write command output to new csv file using Panda package?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Dear,
I need to execute some commands on remote servers and i need to write the output to as CSV file in python.
can we write command output to new CSV file using Panda package? how can we do this?
Do you really need to use pandas? The standard library csv module might be useful: https://docs.python.org/3/library/csv.html.
whether CSV or Pandas which ever is easy?
Why don't you try the standard library module first then?