Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
The Global Django
One thing that annoys me in many US-based software projects is the narrow mindness of the developers who seem to forget that there is life outside of the US, too. Django has been a very international project from the day one, with admin interface translated to 43 languages and the contrib.localflafor full of great localized stuff like validators for Finnish social security number etc. After Adrian’s official announcement of the worldwide Django sprint (that will be held on Friday, Sept. 14, 2007) there has been a steady flow of volunteers adding their names on the wiki page. As I write this, over hundred volunteers from 26 countries have signed up for the event. It’s just amazing. I wish more open source projects would have as great community that Django has. And greetings to everyone who is attending the sprint next Friday — let’s have fun! :) -
Lightning talk: Hacking EuroPython.org (with Django)
I gave a lightning talk yesterday at the EuroPython conference about my little MyEuroPython mashup. The intention of the talk was not to promote the site but to raise a conversation about how to make better conference websites (and especially EuroPython.org). Main points of my presentation were that conferences are about communication and interaction. Current EuroPython.org does not give any tools for that, and it would be great to have something more 2.0 for the site. For example: Simple site structure with good (live)search Registration and personal preferences using OpenID Allow commenting of sessios Provide a personalizable timetable (that is useful for example when using a mobile phone) Free the data; RSS feeds (and possibly other APIs?)from everything Aggregate blog entries, images, links to the main site Good thing was, there was talk about the presentation afterwards, and we actually volunteered for doing the EuroPython.org with Django next year. Hopefully the discussion lives on! » Comment this entry -
Offline Development With Django
Coming to Django from the PHP-world, running a local development server (as opposed to Apache or a full LAMP-machine set up for just testing) and doing real offline development is something that takes a little bit of learning. After two years of active development with Django, I’d like to share some of my learnings. Why Offline? There are many benefits for developing your site someplace other than the same server which powers the site. I’m sure most of us do development this way. Generally speaking offline development could mean any development that doesn’t happen on the production server. The meaning for offline development in this article is more literal: by offline I mean literally offline, that is without [requiring] a connection to the Web. A well configured development environment helps you write better code efficiently — anywhere. On a side note, don’t blame me if you end up coding Django your whole winter vacation at an idyllic remote cottage ;) Best Practices In the same way that Django lets you separate models, templates and views, it also lets you easily separate production and testing environments. Django also offers several tools for local development, such as the built in Web server … -
Being Robust
Writing software that interacts with other peoples code is hard. To be robust, Postel’s Law suggests to be conservative in what you do; be liberal in what you accept from others. What follows is is a good example of what happens if you don’t. When I posted my first Flickr pictures in 2005, Flickr photo_ids were counted in millions. Year later, they were in hundreds of millions. December last year, they topped 2.1 billion, which also happens to be the maximum value of signed integer type in some programming languages. Here are some examples from my own pictures and their photo_ids from Flickr: 6,029,771 March 2005 289,332,856 November 2006 2,165,862,620 December 2007 After reading about someones problems with the 2,1 billion mark, I reviewed my own code. When I first integrated Flickr API to my homemade photo application in early 2006, I was smart enough to use unsigned integers (that would get me as far as 4,294,967,295) as field type for photo_id but not smart enough to read API documentation that explicitly advices to treat photo_id and other IDs as strings, because “format of the IDs can change over time, so relying on the current format may cause you problems … -
State machines for web development
I'm using FSM a lot, both implicitly and explicitly. I like using them in JavaScript, I'd be crazy without them. On my Django backends, FSMs care for everything on the website to be converted, cleaned up and be fine. The moment you understand FSM is a moment of Truth and Enlightment. -
Foreign key to Django CMS page …
… how to make usable drop-downs with Django CMS pages Problem: some times when you create custom applications or plugins for Django CMS you need a property that connects the current item to a page in the CMS. Nothing simple than this – you just add a ForeignKey in your model that points to the [...] -
An alternative RapidSMS router implementation (with Celery!)
We've been using RapidSMS, a Django-powered SMS framework, more and more frequently here at Caktus. It's evolved a lot over the past year-- from being reworked to feel more like a Django app, to merging the rapidsms-core-dev and rapidsms-contrib-apps-dev repositories into a single codebase (no more submodules!), to finally becoming installable via pypi. The "new core" ... -
Caktus Lightning Talk Lunches
Last month we hosted the first talk in our new Caktus Lightning Talk Lunch series. We started this series to get together and learn about new projects, different applications, and interesting topics that the Caktus team has been working on. Lunch was provided from Buns in Chapel Hill and Mark Lavin gave the first talk. Mark presented ... -
Caktus Lightning Talk Lunches
Last month we hosted the first talk in our new Caktus Lightning Talk Lunch series. We started this series to get together and learn about new projects, different applications, and interesting topics that the Caktus team has been working on. Lunch was provided from Buns in Chapel Hill and Mark Lavin gave the first talk. -
Extending different base template for ajax requests in Django
While there are different ways to specify what should be rendered what should server return when ajax request is performed, using yesno template filter can be simplest. This can be especially useful in situations when using without javascript should fail gracefully or when working with existing views. {% extends request.is_ajax|yesno:“base_ajax.html,base.html” %} For this to work, django.core.context_processors.request should be installed in TEMPLATE_CONTEXT_PROCESSORS. -
Caching websites with Django and Memcached…
… memcached installation, django configuration and how to use it for your website After Caching web sites and web applications and When to use caching for web sites its time for a little sample. This sample shows the usage of Memcached for server-side application cache. The installation part is taken from my Ubuntu so it [...] -
How to create Sphinx docs the Python / Github / Read the Docs way
This is a full walkthrough of how to document a Python package, using https://github.com/audreyr/django-startcbv as the sample package to be documented. It probably works for non-Python packages too. Follow along with documenting a Python package of your own. Or try it with one of those poor, undocumented, lonely Python packages out there! At the command line: 1 2 3 4 pip install Sphinx==1.0.7 (or whatever the latest version is)mkdir docscd docssphinx-quickstart Enter something like the following at the prompts: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 > Root path for the documentation [.]: > Separate source and build directories (y/N) [n]: > Name prefix for templates and static dir [_]: > Project name: django-startcbv> Author name(s): Audrey Roy> Project version: 0.1> Project release [0.1]: > Source file suffix [.rst]:> Name of your master document (without suffix) [index]: > autodoc: automatically insert docstrings from modules (y/N) [n]: y> doctest: automatically test code snippets in doctest blocks (y/N) [n]: > intersphinx: link between Sphinx documentation of different projects (y/N) [n]: > todo: write "todo" entries that can be shown or hidden on build (y/N) [n]: > coverage: checks for documentation coverage … -
When to use caching for web sites …
… five major question to ask yourself before using cache After we learned about Why, Where, What and How of caching web sites now it is time to see when to use it. The application cache is mainly used for speeding up and/or decreasing the load of frequently executed and(but not necessary) heavy resource using [...] -
Controlling iTunes from Python
<a href="http://www.flickr.com/photos/uninen/2448444839/" title="django-tunes by Uninen, on Flickr"><img src="http://farm4.static.flickr.com/3127/2448444839_83b611b31e_m.jpg" width="180" height="240" alt="django-tunes" style="float: right; border: 1px solid blue;"></a><a href="http://www.flickr.com/photos/uninen/2448444839/">Back in 2008</a> I stumbled on then new API on Mac OS X called <a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ScriptingBridgeConcepts/Introduction/Introduction.html">Scripting Bridge</a> that enables easy controlling of Cocoa apps (like iTunes) from scripting languages like Python. I wrote simple proof-of-concept Django app that turned my iPod touch into a remote control. It was cool, even though it didn't do very much. Now there's of course native iOS apps for this but I was somewhat surprised that there are still not much code for controlling iTunes via Web. I misplaced my original code so I decided to write it again -- just for fun. So here's a working class for controlling iTunes, in 58 lines of Python: ```python # -*- coding: utf-8 -*- from Foundation import * from ScriptingBridge import * class iTunes(object): """ A helper class for interacting with iTunes on Mac OS X via Scripting Bridge framework. To use this, launch iTunes and make sure a playlist or an album is ready. Usage: >>> player = iTunes() >>> player.status 'playing' >>> player.current_track u'Maison Rilax' >>> player.current_album u'Maison Rilax' >>> player.current_artist u'Lemonator' >>> player.pause() >>> player.status 'paused' >>> … -
Controlling iTunes from Python
Back in the day I wrote a Django app for controlling iTunes from Python. I lost the code and now I wrote it again. This time the proof-of-concept can be downloaded from BitBucket. -
FeinCMS and Fixtures: Check your trees
A short while ago, I finished my first FeinCMS website. While building the website, I was surprised by the way the tree of pages, subpages, subsubpages and so on, is being saved into the database. FeinCMS turned out to be using something called 'Modified Pre-order Tree Traversal'. Google or Bing or whatever for 'MPTT' and you will find out how it works, if you don't know it already. It seems I wasn't paying a lot of attention in mathematics classes, because all my colleagues seemed to know about its existence.Anyway, a FeinCMS page's location in a tree will be stored in the database, using a tree_id, level (0 being the top level, 1 the row beneath and so on), parent_id and lft and rght. Lft and rght are obviously the numbers left and right of the tree entry, following the MPTT principle. If you somehow want to upset the tree and FeinCMS with it, all you have to do is change one of the lft or rght numbers in the database.This totally failed to bubble into my mind when I heard about a FeinCMS page that was not displaying. Confused, I tried to reproduce the bug, without result. After a while trying and … -
Debugging Nginx and Django: Viewing HTTP headers in Google Chrome
It seems like every time I setup a new Django project, I spend an inordinate amount of time getting the site and admin media (IMG, CSS, JS) to display correctly in my templates. It doesn’t help that I haven’t standardized on a best-practices Django layout. Dreamhost shared servers require one site structure while the Linode StackScript I use (thanks Filip) suggests another. A move from Django 1.2 to 1.3 hasn’t helped either. On my home development environment (Debian in VirtualBox on Windows), I use Nginx to serve static media for my Django development server. Although this improves my dev server performance, it complicates the setup of a new environment. Recently, I was struggling to get Nginx in front of Django for a new project. To help with debugging, I wanted to see the headers returned by Nginx. My Nginx configuration adds a “X-Static” header which returns a “hit” or “miss” to indicate if Nginx served the media. To see the HTTP headers in Google Chrome, first pull up the Developer Tools pane (Control-Shift-i or Tools > Developer tools): Next, click the “Network” button in the top row and then the page url in the left pane: You can now see … -
Tôi bắt đầu học Django
Tôi chưa bao giờ học Python, cũng đã có mấy dịp định học thêm Python nhưng vẫn chưa lần nào bắt đầu được. Tôi mới chỉ biết Python là ngôn ngữ lập trình hướng đối tượng triệt để, nôm na dễ hiểu đó là cái gì trong Python cũng là đối tượng hết.Dịp này công ty có project về Django nên tôi cũng được join để làm một số task nho nhỏ. Trước đây khi tìm hiểu về một số web framework thì cũng đã biết đến Django nhưng chưa lần nào đọc kỹ và develop trên nó cả. Có lần cũng thử tìm hiểu Plone nhưng hoa hết cả mắt, đau hết cả đầu vì phải chưa gì đã vấp phải mấy khái niệm mới nào là egg, nào là bunches,...Học Django lần này lại khác vì bây giờ tôi làm việc chủ yếu ở môi trường Ubuntu và bên cạnh có nhiều cao thủ Python và Django nên có gì lơ mơ là hỏi luôn thành ra mọi việc trở nên suôn sẻ hơn. Các bước học "mỳ ăn liền" được diễn ra chóng vánhĐọc hướng dẫn và cài đặt Django trên UbuntuCài đặt Django với Apache và … -
PlushCMS - simple CMS system
Quick introduction to PlushCMS - Polish simple CMS system written in Python and Django -
Django Form Snippets
Django forms are very convenient tools for Django development, but sometimes I find myself wrangling with them to get them to do what I want them to do. I’ve compiled a few simple form examples that I find useful for various form-related tasks.Say you have a model that ... -
Updated Django-powered website
Two years ago, we launched chicagodjango.com as a place where we could unapologetically geek out about Django and Python. We didn't want to be constrained to a small tech section on our main company site (aka the Mother Ship) imagescape.com.It was campy, it was fun and ... -
Chicago Djangonauts, reanimated
Having scheduled the first meeting of the reanimated Chicago Djangonauts, I didn't know what to expect. There were a number of RSVPs on Facebook and a couple through the chicagodjango.com site, but you never know.We ordered three cases of beer from our favorite brewer and 13 pizzas ... -
PyCon, Django in Chicago and general musings
For the fourth year in a row, we have just completed our sponsorship of PyCon. Each time I return to the office after the conference ends, I am filled with a particular energy. This year that energy is more pronounced. In many ways, our day-to-day work is done in relative ... -
Security for Mobile Applications
Imaginary Landscape has been putting significant effort into developing usable and secure mobile websites. Understanding the context of a mobile user is the first step in developing security protocols to protect mobile access and information. A new blog posting on the Imaginary Landscape main website describes how we approach mobile ... -
Mobile Web Development with Django
If you've ever looked into creating your first Django project targeted at mobile devices, you were probably quick to realize that there is no be all, end all solution. Mobile development decisions have to be made with regards to handheld device detection, redirects, how to deal with desktop vs ...