This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Copyright 2020 Nicolas P. Rougier - BSD License | |
# | |
# from reading org-mode emacs files, display a formated calendar in the | |
# terminal showing holidays and busy days and upcomiing events. | |
import holidays # https://pypi.org/project/holidays/ | |
import calendar | |
import datetime | |
import orgparse # https://pypi.org/project/orgparse |