Skip to main content

Home/ Groups/ Django
1More

Django and Crontab: Best Friends - 0 views

  •  
    setup_environ
1More

DING IT'S UP! - Website Alerts via Email, Text, and Twitter - 0 views

shared by pagetribe . on 02 Dec 08 - Cached
  •  
    Get a txt or email when your website goes down.
1More

Stuff: A Brief Pyjamas + Django Tutorial - 0 views

  • Django is a web framework written in Python. Pyjamas is a Python port of the google web toolkit (written in Java). Pyjamas can be used with Django to create web applications.
1More

Django cheat sheet (Mercurytide) - 0 views

  • Django cheat sheet
2More

Big list of Django tips (and some python tips too) | Surfing in Kansas - 0 views

  • Big list of Django tips
  • Writing managers is really simple, and they provide a better user interface to your code. This code snippet simply adds a latest() method to the default objects manager class ForecastDayManager(Manager): def __init__(self, *args, **kwargs): super(ForecastDayManager, self).__init__(*args, **kwargs) def latest(self): return self.get_query_set().order_by('forecast_date')[0] It can be called ForecastDay.objects.latest(). This is a trivial example, but there is a lot of power that lies in this functionality.
2More

Working with models, part 2 - 0 views

  • Every Django model class and every instance of every Django model class has an attribute on it named _meta
  •  
    Nice info on the usage of _meta on django models.
2More

Screencast on many to many relationships between Django models - 0 views

  •  
    A nice screencast on many to many relationships. Part of a 3 part series on developing a wiki in django.
1More

Rails vs Django Comparison - 0 views

  •  
    I know we don't need a flame war between the two frameworks, but this helps for comparison.

The Django Book - 0 views

« First ‹ Previous 101 - 120 of 166 Next › Last »
Showing 20 items per page