Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 506 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 506 Bytes

splitics & splitvcs

This python3 script takes an .ics calendar file and splits it into smaller files. You can split the file based on the file size, number of events, or both.

It's useful when you want to migrate a calendar into Google Calendar, since it will only accept files that are smaller than about 1MB.

Now also support .vcs files

Examples

python3 splitics.py my_calendar.ics -s 1M
python3 splitics.py my_calendar.ics -n 50
python3 splitics.py my_calendar.ics -s 500k -n 20