Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Асинхронные задания в Django c помощью Celery / Хабрахабр
Приветствую! Думаю, большинство разработчиков Django слышали о Celery — системе асинхронного выполнения заданий, а многие даже активно её используют. Около года назад на хабре была довольная хорошая статья, рассказывающая о том, как использовать Celery. Однако, как было упомянуто в заключении, уже вышла Сelery 2.0 (на данный момент стабильной версией является 2.2.7), где интеграция с django была вынесена в отдельный пакет, а также произошли другие изменения. -
Overview
-
Pelican 3.3.0 — Pelican 3.3.0 documentation
-
django-dbbackup 1.9.0 : Python Package Index
-
django-dbbackup 1.9.0 : Python Package Index
-
Django Full Stack Testing and BDD with Lettuce and Splinter
-
Testing Applications with WebTest — WebTest 2.0.15.dev0 documentation
-
Testing Applications with WebTest — WebTest 2.0.15.dev0 documentation
-
uwsgi-docs.readthedocs.org
-
uwsgi-docs.readthedocs.org
-
Effective Django — Effective Django
-
Check credentials using Django Rest Framework | Richard Tier
-
newsreader on github
An example of a Django/Angular application -
Best Practices Integrating Django and Javascript? : django
-
Django in iOS | The Django Forum
-
Authenticate using Django Rest Framework and Angular | Richard Tier
-
Django 1.3 vs Rails 3: A not so final showdown - (think)
-
Django 1.3 vs Rails 3: A not so final showdown - (think)
-
Authenticate using Django Rest Framework and Angular | Richard Tier
-
Authenticate using Django Rest Framework and Angular | Richard Tier
-
Применяем визуальные эффекты к изображениям в Django / Хабрахабр
-
Применяем визуальные эффекты к изображениям в Django / Хабрахабр
-
Django + Sphinx = django-sphinx (?) / Хабрахабр
15 января 2012 в 17:00 Django + Sphinx = django-sphinx (?) Django* Когда мы подготавливали для Хабра свою последнюю статью о Django-батарейках, выяснилось, что про django-sphinx мы таки имеем что рассказать и наш рассказ тянет на отдельный пост. Собственно, вот он, как и обещали. -
Поиск через sphinx в django 1.6 admin / Хабрахабр
29 июля 2013 в 19:48 Поиск через sphinx в django 1.6 admin Sphinx*, Django* Задача: реализовать полнотекстовый поиск в админке django. Пример модели, по которой будем делать поиск: class Movie(models.Model): title_en = models.CharField(max_length=255, null=True) title_ru = models.CharField(max_length=255, null=True) year = models.PositiveSmallIntegerField(null=True) -
Getting Started with Django Logging in 5 Minutes
posted by Ian on April 16, 2013 Setting up Django logging can sometimes be a little complex, so here are the no-nonsense steps required to make a new Django 1.5 instance log to a file without hassles. We’re going to look at each of the 4 components of Django logging: Loggers: a logger is the object that we will use to pass messages to the logging system Handlers: the handler is an engine that determines what to do with a message when it is recieved from the logger Filters: allow you to restrict the type of messages that are sent from the logger to the handler Formatters: describe the text representation of the log message Simple, right? For more information, check out the Django documentation on logging.