Metadata-Version: 2.1
Name: categorical-colour-calendar
Version: 0.0.4
Summary: Draw monthly calendars and highlight dates
Home-page: https://github.com/erichards97/categorical-colour-calendar
Author: Edward Richards
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pandas (>=1.2.1)
Requires-Dist: matplotlib (>=3.3.4)
Provides-Extra: dev
Requires-Dist: pytest (>=6.2.2) ; extra == 'dev'
Requires-Dist: check-manifest (>=0.46) ; extra == 'dev'
Requires-Dist: twine (>=3.3.0) ; extra == 'dev'
Requires-Dist: wheel (>=0.36.2) ; extra == 'dev'

# Categorical Colour Calendar
Library for drawing monthly calendars and highlighting dates from categorical events
## Example
![Example](https://raw.githubusercontent.com/erichards97/categorical-colour-calendar/main/examples/img.png "Optional Title")
For more examples see the docs
## Setup
```
pip install categorical-colour-calendar
```
## Usage
```python
import pandas as pd
from cccalendar import draw_colour_calendar

dates = pd.date_range(start='2021-01-01', end='2021-05-01')
df = pd.Series(range(len(dates)), index=dates)
draw_colour_calendar(df, {})
```
## Development
```
pip install -e .[dev]
```

## To Do
- Check DataFrame/Series compatibility
- Multiple events on one day
- Tests
- Allow override of default sizing/scaling values
- Test different Python versions
- Return fig/axes
- Docs

