Skip to main content

Home/ Django/ Group items tagged Django

Rss Feed Group items tagged

Leandro Ardissone

django recipe: pretty print objects and querysets . palewire - 4 views

  •  
    A simple addition to the excellent pprint library that will spit your Django objects and querysets out as dictionaries.
Nicolas Perriault

Evented Django part one: Socket.IO and gevent | codysoyland.com - 0 views

  •  
    In this post, I'm going to explain how to use Django with Socket.IO
Nicolas Perriault

mdiep/django-twitter-users - GitHub - 0 views

  •  
    Sign in with Twitter" for Django applications
Nicolas Perriault

Python Package Index : django-cache-utils 0.7.2 - 0 views

  •  
    Caching decorator and django cache backend with advanced invalidation ability and dog-pile effect prevention
Nicolas Perriault

jbalogh/django-cache-machine - GitHub - 0 views

  •  
    Cache Machine provides automatic caching and invalidation for Django models through the ORM.
Nicolas Perriault

maraujop/django-rules - GitHub - 0 views

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

toastdriven/django-tastypie - GitHub - 0 views

  •  
    Creating delicious APIs for Django apps since 2010
Nicolas Perriault

Django REST framework - 0 views

  •  
    Django REST framework aims to make it easy to build well-connected, self-describing Web APIs.
Nicolas Perriault

Django Deployment Tutorials | KomunitasWeb - 0 views

  •  
    to speed up your deployment you can take a look on several Django deployment tutorials
codesnail

Django Blog Tutorial Free - 0 views

  •  
    In this tutorial, we'll build a Blog application with Django that allows users to create, edit, and delete posts. The homepage will list all blog posts, and there will be a dedicated detail page for each individual post. Also, visitors can comment on the post and we make a threaded comment system. Django is capable of making more advanced stuff but making a blog is an excellent first step to get a good grasp of the framework.
israel vasquez

Building reusable Django apps - The Uswaretech Blog - Django Web Development - 0 views

  •  
    Tips for building reusable apps
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.
pagetribe .

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.
israel vasquez

E-Scribe News : World's ugliest Django app - 0 views

  •  
    create a simple django app quick and easy
anonymous

Django - Adding Authentication achinghead.com - 0 views

  • As a shortcut, you can use the convenient login_required decorator.
    • anonymous
       
      Interesting...
  •  
    How to add user authentication to Django.
‹ Previous 21 - 40 of 194 Next › Last »
Showing 20 items per page