A Python script that reads ics files and outputs their data into a csv file.
Go to file
Mario Voigt 1db23f9ea7 „ical2csv.py“ ändern
Bugfixing AttributeError none for summary, description and location; remove some useless print() statements
2023-02-22 13:42:17 +01:00
images Initial commit. 2016-02-04 14:43:59 -08:00
README.md Bold in stead of italics for NEW section 2021-03-28 22:10:49 +02:00
ical2csv.py „ical2csv.py“ ändern 2023-02-22 13:42:17 +01:00
ical2txt.py „ical2txt.py“ ändern 2023-02-22 13:26:15 +01:00

README.md

ical2csv w/sorted events by start date

alt textalt textalt text

A command line Python script that will read an ics file and write it's contents to a csv file.

Installation

Download the ical2csv.py file.

Dependencies:

  • icalendar
  • Python 3

Note: pip may be called pip3 on some systems with both python2 and python3 as options.

Usage of ical2csv

Call the script and pass in the location of the ics file.

Ex: python ical2csv.py event.ics

ical2txt w/sorted events by start date

Like ical2csv.py, it parses an ics file and writes the output to a text-file. This is more of an agenda style.

Installation of ical2txt

Download the script or clone the project and get it from there.

Dependencies for ical2txt

  • setuptools (just in case : pip3 install setuptools)
  • BeautifulSoup4 (pip3 install beautifulsoup4)
  • icalendar (pip3 install icalendar)
  • recurring-ical-events (pip3 install recurring-ical-events)

Usage of ical2txt

Call the script and pass in the location of the ics file.

Ex: python ical2txt.py event.ics / python3 ical2txt.py event.ics

Note: You can limit output to a certain time period. Useful for week logs and the like:

./ical2txt.py myexport.ics 20210101 20211231

./ical2txt.py myexport.ics 2021-01-01T00:00:00 2021-01-31T23:59:59

NEW AS OF 2021-03-28: Recurring events are now actually processed in ical2txt.py. If no end date is given 5 years from now is chosen.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request 😊

Credits

Lead Developer - ical2csv - Erik Cox

Developer - ical2txt - Martin Møller

Python 3 compatibility and improvements - bozoslivehere

Logic and adjustments to sort events chronologically (Google Calendar doesn't do this in its export) - Martin Møller

Removal of HTML code from events (currently only ical2txt) - Martin Møller

License

The MIT License (MIT)

Copyright (c) 2019 Erik Cox

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.