1
1
Fork
You've already forked icalfilter
0
A small python script to filter an ical with a regex.
  • Python 100%
2022年01月02日 15:08:42 +01:00
.idea Initial commit 2022年01月02日 14:59:55 +01:00
.gitignore Initial commit 2022年01月02日 14:59:55 +01:00
icalfilter.conf Initial commit 2022年01月02日 14:59:55 +01:00
LICENSE Add license. 2022年01月02日 15:08:42 +01:00
main.py Add license. 2022年01月02日 15:08:42 +01:00
README.md Fix style issue in readme 2022年01月02日 15:01:26 +01:00

icalfilter

This little script can be used to filter events in an ical file by their summary. A regular expression is used to do this. The filtered ical is made available via a small web server.

Configuration

The icalfilter.conf is used to configure the script:

  • original_url:: URL of the source ical file
  • summary_regex: The regular expression used to filter the summary. Events whose summary matches the regex get removed.
  • token: Token that is needed to access the new ical file, see below.

If you enter all the needed information and run the script, you can access the new ical file at localhost:8245/$token, where $token is the token set in the configuration.

Dependencies

The script uses: