To make the example we will instantiate the plugin.
# Instantiate the pluginbot_csv=BotCSVPlugin()
Warning
To avoid the EmptyDataError exception when reading empty CSV files, it is important to check if the file contains data before attempting to process it.
Now, let's manipulate some data from our file, adding new data, sorting and writing the result to a new file.
# Read from a CSV Filebot_csv.read('read.csv')# Add a rowbot_csv.add_row([0,22])# Sort it by columns with header H1 and H2 in descending orderbot_csv.sort(['H1','H2'],False)# Print the resultprint(bot_csv.as_list())# Save it to a new filebot_csv.write('write.csv')
frombotcity.plugins.csvimportBotCSVPlugin# Instantiate the pluginbot_csv=BotCSVPlugin()# Read from a CSV Filebot_csv.read('read.csv')# Add a rowbot_csv.add_row([0,22])# Sort it by columns with header H1 and H2 in descending orderbot_csv.sort(['H1','H2'],False)# Print the resultprint(bot_csv.as_list())# Save it to a new filebot_csv.write('write.csv')
Tip
This plugin allow you to use method chaining so the code above could be written as: