Skip to main content

Home/ Django/ Group items tagged manager

Rss Feed Group items tagged

pagetribe .

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.
anewgene

Post: Tornado Web Framework In Production With Django And Nginx | Jeremy Bowers | St. P... - 4 views

  • If you're interested in running your Django projects behind Tornado, you'll want to employ a daemonized approach. The solution: Deploy Tornado as python scripts controlled by supervisord, a pythonic daemon manager.
  •  
    If you're interested in running your Django projects behind Tornado, you'll want to employ a daemonized approach. The solution: Deploy Tornado as python scripts controlled by supervisord, a pythonic daemon manager.
Nicolas Perriault

maraujop/django-rules - GitHub - 0 views

  •  
    Flexible and scalable Django authorization backend for unified per object permission management
anonymous

Formunculous - 0 views

shared by anonymous on 25 Feb 11 - No Cached
  •  
    Django app to create and manage web based forms
Nicolas Perriault

sorl/django-mockups - GitHub - 0 views

  •  
    This app aims to provide a simple way of loading masses of randomly generated test data into your development database. You can use a management command to load test data through command line.
Nicolas Perriault

Django Userena - Accounts for your Django application - 0 views

  •  
    Userena is a Django application that supplies your Django project with full account management
1 - 8 of 8
Showing 20 items per page