views:

8661

answers:

7

Does anyone know of any existing packages or libraries that can be used to build a calendar in a django app?

+9  A: 

A quick google search reveals django-calendar, which looks like exactly what you need. It would also be worth looking at the snippets under the calendar tag on Django Snippets at http://www.djangosnippets.org/tags/calendar/.

Harley
The link you supply responds with:Your client does not have permission to get URL /p/django-calendar/ from this server.
Brandon Craig Rhodes
+1  A: 

svn checkout http://django-calendar.googlecode.com/svn/trunk/ django-calendar-read-only svn: URL 'http://django-calendar.googlecode.com/svn/trunk' doesn't exist

so google search may reveal, but it's no longer exists.

Alex Mikhalev
The project can only be downloaded as a tarball from the project page. In other words, they aren't using google code for SVN.
Van Gale
A: 

I'm often needing a calendar so have started my own project for this: http://simonharrison.info/django-calendar/

It's all on github

Simon
+3  A: 

It seems that django-calendar has become django-agenda: http://github.com/dokterbob/django-agenda

Berislav Lopac
A: 

There is another calendar alternative here, Django Event Calendar from 3captus, that offers something a bit simpler. I'm trying it out now, but it looks like a better fit for me.

From the features list:

  • Full feature calendar display using python calendar class
  • Support month scrolling (forward or backward)
  • AJAX add, modify, delete GUI
  • Require mimimum knowledge of Django, should be a good compliment after you are done with django tutorial (http://www.djangoproject.com/documentation/tutorial01/)
  • Calendar and Event class can be used in any python project
  • Full unit test included
Michael Morisy
A: 

Today I ran into django-swingtime. Worth checking out.

Issac Kelly
A: 

Great Tipps

django-swingtime lives on

http://github.com/dakrauth/django-swingtime

macdet