Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Customize Django’s unique_together Error Message | Ramblings on startups, advertising, NYC and hacking (mostly Python)
-
Django and AJAX Form Submissions - say 'goodbye' to the page refresh - Real Python
-
Overloading Django Form Fields
-
Core Concepts of Django Forms
-
django - STATIC_URL not working - Stack Overflow
-
django - STATIC_URL not working - Stack Overflow
-
Django 1.3 vs Rails 3: A not so final showdown - (think)
Prelude I’ve recently started a new job at an American start-up company. My position in the company is the one of Technical Lead – the person responsible for the selection of technologies around which the projects are being built. Since we’ll be doing mostly web development we’ve had a long kick-off discussion with the company’s CTO about the direction which we should initially take. He had PHP in mind, but I convinced him that Ruby or Python would make much better platforms for our futures apps. So he tasked me to research the two leading frameworks in the Ruby and Python land – namely Ruby on Rails 3 and Django 1.3. I had a week to prepare some prototypes with both and create on overview for my boss. I had some experience with Rails 2 a few years back and I have fairly decent knowledge of Ruby. My Python is not as fluent (admittedly), but still – I’ve played a lot with Python recently. Django, however, was completely new to me. In this article I’ll try to compare the frameworks in a totally friendly way; if you’ve expected an epic flame war post you may very well stop reading here. … -
The Web framework for perfectionists with deadlines | Django
Meet Django Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Developed by a fast-moving online-news operation, Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web applications quickly. Django focuses on automating as much as possible and adhering to the DRY principle. Dive in by reading the overview → When you're ready to code, read the installation guide and tutorial. The Django framework Object-relational mapper Define your data models entirely in Python. You get a rich, dynamic database-access API for free — but you can still write SQL if needed. Automatic admin interface Save yourself the tedious work of creating interfaces for people to add and update content. Django does that automatically, and it's production-ready. Elegant URL design Design pretty, cruft-free URLs with no framework-specific limitations. Be as flexible as you like. Template system Use Django's powerful, extensible and designer-friendly template language to separate design, content and Python code. Cache system Hook into memcached or other cache frameworks for super performance — caching is as granular as you need. Internationalization Django … -
Download | Django
Django is available open-source under the BSD license. It requires Python version 2.7 or higher, but it has no dependencies on other Python libraries. There are several ways you can get it: Option 1. Get the latest official version The latest official version is 1.7.1. You can install it with pip: pip install Django==1.7.1 Option 2. Get the latest development version The latest and greatest Django version is the one that's in our Git repository (our revision-control system). Get it using this shell command, which requires Git: git clone https://github.com/django/django.git You can also download a zipped archive of the development version. After you get it See the installation guide for further instructions. Make sure you read the documentation that corresponds to the version of Django you've just installed. And be sure to sign up for the django-users mailing list, where other Django users and the Django developers themselves all hang out to help each other. -
Администрирование и веб-разработка |
-
Администрирование и веб-разработка |
-
20min con DevCode
-
20min con DevCode
-
Delicious
-
Delicious
-
Criando um Blog maneiro :: Aprendendo Django no Planeta Terra
-
Criando um Blog maneiro :: Aprendendo Django no Planeta Terra
-
How To Tango With Django 1.7 — How to Tango with Django 1.7
-
How To Tango With Django 1.7 — How to Tango with Django 1.7
-
Implementing Django-Socketio
-
Implementing Django-Socketio
-
Creating forms from models | Django documentation | Django
-
Creating forms from models | Django documentation | Django
-
Django and AJAX Form Submissions - more practice - Real Python
-
Django and AJAX Form Submissions - say 'goodbye' to the page refresh - Real Python