Skip to content

kspi/agenda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

agenda

A programmable calendar. One off events can be read from text files in a format like:

2016-04-10 Write README @todo

Recurrent events can be written in Python, as generators, for example:

@register_event
def readme_anniversary(day):
    readme = date(2016, 4, 10)
    if day.month == readme.month and day.day = readme.day:
        years = readme.year - day.year
        yield "README was written {} years ago today.".format(years)

About

Programmable command line calendar and agenda

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages