CalFile is a simple Django app to create a calendar file.
Detailed documentation is in the "docs" directory.
- Install
pip install django-calfile
Add "calfile" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'calfile', ]
- define settings::
CALFILE_DATE_FORMAT = '%d-%m-%Y %H:%M'
Include the URLconf in your project urls.py like this:
path('calfile/', include('calfile.urls')),
Post /calfile/ with parameters (start_date, end_date).