by Stephen Harris on WordPress.org

At Tools > Import Events select a file to import.
This plug-in allows to import events from a CSV file into Event Organiser. You can also export events from
Event Organiser into a CSV file.
Please note that this plug-in still in beta. I welcome feedback, issues and pull-requests.
To allow users to export / import events in CSV format between various calendar applications, and to do this flexiably
so as to limit the number of requirements on the CSV file before it can be read correctly. To allow users to move events
between installations of Event Organiser while preserving data that is not suported by iCal.
In the vein of flexibility columns do not have to be in any prescribed order: you tell the plug-in which columns pertain to what (start date, end date etc)
after importing the file.
Once installed, go to Tools > Import Events. Here you can export a CSV file or select a file to import one. To import an file:
By default the plug-in will only import venues, categories and tags that already exist.
To allow the plug-in to create new venues, categories and tags you can add the following
code (to a seperate plug-in or your theme’s functions.php).
function my_set_import_imports( $args, $file ){
$args['import_new_event-category'] = true; //create category if it doesn't exist
$args['import_new_event-venue'] = true; //create venue if it doesn't exist.
$args['import_new_event-tag'] = true; //create tag if it doesn't exist.
return $args;
}
add_filter( 'eventorganiser_csv_import_args', 'my_set_import_imports', 10, 2 );
Please note the limitations on importing venues discussed below.
Current limitations apply. See the examples folder for an archetypal CSV file
Please note that in theory all dates (other than the start date) can be given in any format, however, to
ensure dates are interpreted correctly it is strongly recommended to give dates in Y-m-d (or Y-m-d H:i for non-all day events) format. The start
date must be in that format so that the importer can differentriate between all-day and non-all-day events.