SkillAgentSearch skills...

Mplcal

Create a standard calendar view from python using matplotlib

Install / Use

/learn @meta4/Mplcal
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

mplcal

Create basic printable calendars from Python.

Example:

Create this calendar:

.. image:: docs/img/feb.2017.example.png :width: 1470 :alt: Example output of program

with the code:

.. code-block :: python

from mplcal import MplCalendar
feb = MplCalendar(2017, 2) # 2017, February
feb.add_event(1, '1st day of February')
feb.add_event(5, '         1         2         3         4         5         6')
feb.add_event(5, '123456789012345678901234567890123456789012345678901234567890')
feb.add_event(18, 'OSLL Field Maintenance Day')
feb.add_event(18, 'OSLL Umpire Mechanics Clinic')
feb.add_event(20, 'Presidents day')
feb.add_event(25, 'OSLL Opening Day')
feb.add_event(28, 'T-Ball Angels vs Dirtbags at OSLL')

feb.add_event(14, 'Valentines Day!')
feb.color_day(14, 'mistyrose')

feb.show()

Related Skills

View on GitHub
GitHub Stars19
CategoryDevelopment
Updated11mo ago
Forks8

Languages

Python

Security Score

82/100

Audited on Apr 26, 2025

No findings