Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Skipping Test DB Creation
We are always looking for ways to make our tests run faster. That means writing tests which don't preform I/O (DB reads/writes, disk reads/writes) when possible. Django has a collection of TestCase subclasses for different use cases. The common TestCase handles the fixture loading and the creation the of TestClient. It uses the database transactions to ensure that the database state is reset for every test. That is it wraps each test in a transaction and rolls it back once the test is over. Any transaction management inside the test becomes a no-op. Since TestCase` overrides the transaction facilities, if you need to test the transactional behavior of a piece of code you can instead use TransactionTestCase. TransactionTestCase resets the database after the test runs by truncating all tables which is much slower than rolling back the transaction particularly if you have a large number of tables. There is also SimpleTestCase which is the base class for the previous to classes. It has some additional assertions for testing HTML and overriding Django settings but doesn't manage the database state. If you are testing something that doesn't need to interact with the database such as form field/widget output, utility code or … -
Skipping Test DB Creation
We are always looking for ways to make our tests run faster. That means writing tests which don't preform I/O (DB reads/writes, disk reads/writes) when possible. Django has a collection of TestCase subclasses for different use cases. The common TestCase handles the fixture loading and the creation the of TestClient. It uses the database transactions to ensure that the database state is reset for every test. That is it wraps each test in a transaction and rolls it back once the test is over. Any transaction management inside the test becomes a no-op. Since [TestCase]{.title-ref}[ overrides the transaction facilities, if you need to test the transactional behavior of a piece of code you can instead use ]{.title-ref}[TransactionTestCase]{.title-ref}[. ]{.title-ref}[TransactionTestCase]{.title-ref}` resets the database after the test runs by truncating all tables which is much slower than rolling back the transaction particularly if you have a large number of tables. -
Guilt Trip
Eric Holscher jumps in to talk about blogging, deployment, the latest community news and project releases, teaching kids to code, and his experiment to support his community contributions through gittip. -
Django Projects
Over the past 6 years, I've built a lot of things with Django. It has treated me very well, and I have very much enjoyed seeing it progress. I got into Django when I helped the company I was working for transition away from a homegrown PHP framework toward something more reliable and flexible. It was very exciting to learn more about Django at a time when the ecosystem was very young. When I started with Django, there weren't a lot of pluggable apps to fill the void for things like blogs, event calendars, and other useful utilities for the kinds of sites I was building. That has changed quite a bit since then. The ecosystem has evolved and progressed like mad, and it's wonderful. We have so many choices for simple things to very complex things. It's amazing! Unfortunately, during this whole time period, my development efforts have shifted from creating my own open source projects to share with the world toward more proprietary solutions for my employers. If it's not obvious to you from my blog activity in recent years, I've become very busy with family life and work. I have very little time to give my open … -
django-waffle
Learn how to use this popular feature flipper for helping you to develop and test new features live instead of only in development.Watch Now... -
Brilliant or Insane?
This week, Kenneth and Brandon are joined by Bryan Veloso. We talk about the several official Django announcements last week, when maintainability should be sacrificed for performance, algorithmic wedding seating, promises (or futures) in concurrent programming, the Django Pony, and more! -
Personal lessons from XOXO
Three things I want to remember from XOXO, written in haste as the conference wraps up: Optimism XOXO is so un-snarky, so radically honest and sincere, that it almost feels like another world. XOXO is an amazing departure from that. The sincerity and friendliness is so total, so comfortable. A number of speakers shared intensely personal moments: Marco called his talk a “group therapy session” and discussed his fear and insecurity; Cabel shared a story of depression that was heartfelt and resonant. -
How to Create a File Upload Widget
Ajaxified file uploads are becoming de facto standard on the web. People want to see what they chose right after selecting a file instead of during submit of the form. Also if a form has validation errors, nobody wants to select the files again; the selection made should be still available in the form. Therefore, we need a solution that works by Ajax. Luckily there is a Django app that can help. It's called django-ajax-uploader. Ajax uploader allows to create asynchronous single and multiple file uploads. All uploads are done into the uploads directory. In addition to the default functionality we need a possibility to show the preview of the temporary uploaded file, translate all messages and buttons, delete a file, move a file to a specific directory. I created a demo project which implements all that. If you have a ModelForm with a FileField or ImageField, you need to not show this field in the form, but instead to add a hidden field for uploaded file path. When you choose a file, it will be uploaded to a temporary uploads directory and its path will be set in the hidden field. Also you need a hidden BooleanField for the … -
First thoughts about Django-CMS
I just set up a site using Django-CMS over at Pomme d'Api Preschool. Overall, I am pretty impressed. I really like the Django admin interface enhancements as well as the site overlay editing feature. One of the best things it he use of django-filer, a file management tool to manage all the uploads to the site. It's awesome and it makes me want to throw out this home page completely and switch over to Django-CMS. Image handling in Drupal has always sucked and still does. The fact that there was no official media/image handling in Drupal 6 sucks, and it's made worse by the fact that there is no real upgrade path to Drupal 7 for media/images, especially if you're like me and you used the "Image" and "image-assist" modules, two of the most popular modules dealing with images. Django-CMS is pretty powerful and so far it has allowed me to do pretty much anything I have wanted to do. -
Central logging in Django with Graylog2 and graypy
.. |--| unicode:: U+2013 .. en dash .. |---| unicode:: U+2014 .. em dash, trimming surrounding whitespace :trim: Django's `logging configuration `_ facilities, which arrived in version 1.3, have greatly eased (and standardized) the process of configuring logging for Django projects. When building complex and interactive web applications at Caktus, we've found that detailed (and properly configured!) logs are key to successful and efficient debugging. Another step in that process |---| which can be particularly useful in environments where you have multiple web servers |---| is setting up a centralized logging server to receive all your logs and make them available through an easily accessible web interface. There are a number useful tools to do this, but one we've found that works quite well is `Graylog2 `_. Installing and configuring Graylog2 is outside the scope of this post, but there are plenty of tutorials on how to do so accessible through your search engine of choice. Once you have it setup, getting logs flowing to Graylog2 from Django is relatively straightforward. First, grab a copy of the ``graypy`` package from PyPI and add it to your requirements file:: pip install -U graypy Next, add the following configuration inside the ``LOGGING['handlers']`` … -
Central logging in Django with Graylog2 and graypy
Django's logging configuration facilities, which arrived in version 1.3, have greatly eased (and standardized) the process of configuring logging for Django projects. When building complex and interactive web applications at Caktus, we've found that detailed (and properly configured!) logs are key to successful and efficient debugging. Another step in that process — which can be particularly useful in environments where you have multiple web servers — is setting up a centralized logging server to receive all your logs and make them available through an easily accessible web interface. There are a number useful tools to do this, but one we've found that works quite well is Graylog2. Installing and configuring Graylog2 is outside the scope of this post, but there are plenty of tutorials on how to do so accessible through your search engine of choice. -
Django Round-Up #10
This week we're joined by Portia Burton! We discuss Portland, Mozilla Persona, making a game board, migrations and South's frozen ORM, Bee Ware and GUI tools vs. the command line, clever comprehensions, and a whole lot more. -
crispy-forms
Learn how to get started using the popular crispy forms django application to streamline rendering your templates by doing your layout in python.Watch Now... -
Django Round-Up #9
Miguel Grinberg joins us for a very Python and Flask centered episode where we discuss color themes, video processing, web scraping, class-based views, and learning Flask. -
Wedding hacks - seating planner using simulated annealing
This is the third in a seris of posts in which my upcoming wedding has exercised my programming skills. The problem There are a lot of ways to seat approx 130 guests in tables of 10. (Digression: how many ways? There n! ways to order a list of n people. We then group that list of n people into j groups (tables) of size k each (assuming an exact division is possible for simplicity). In each group, there are k! different ways to order the people, but all these are considered equivalent for our purposes. So we divide by k!, and do it j times, once for each table. We could then shuffle all the groups, and all the results of such shuffling are also considered equivalent. So we divide by j! to count for these permutations. So, I make it: n!/(j*k!*j!) Or, in my case: 22, 014, 379, 788, 144, 009, 262, 986, 489, 297, 967, 619, 407, 616, 773, 070, 962, 391, 042, 003, 562, 758, 124, 860, 965, 657, 753, 242, 386, 208, 110, 081, 303, 218, 233, 306, 048, 808, 531, 260, 440, 119, 599, 226, 289, 816, 251, 326, 745, 993, 359, 038, 728, 297, … -
Wedding hacks - John Lewis gift list hyperlink
I'm getting married in 3 weeks time - yay! But this post isn't about that — it's a quick programming-and-wedding-related tip. We set up a John Lewis gift list, but we found the web site's instructions for use could be improved. The instructions to pass on to potential givers were: Go to this site Type in this gift list number That's fine for printed instructions, but if you already have a website, there is this magical thing called a hyperlink which should be able to take you straight there, without any error prone typing etc. John Lewis didn't provide any instructions for doing this, and as the number never appears in a URL, even after this point, it isn't obvious that there is a way to do it. However, I managed to impress my fiancée with my leet hacking skills to get around this. OK, so I right clicked at an appropriate place, chose “Inspect element”, applied some knowledge of web development and made a few easy guesses. I came up with the following URL which works, and will take you straight to your gift list: https://www.johnlewisgiftlist.com/giftint/guestpassword?giftListNumber=YOURNUMBER Just replace YOURNUMBER with your actual number. That's all for now - but … -
I Hate Generic Foreign Keys, but this works anyway
I'm really not a fan of the concept of Generic Foreign Keys. They do have their place, and the app I've just started is a reasonable example. It's django-activity-streams, and I'm using it essentially as an audit stream. It stores the user who performed the change, the object that was changed, when it was changed, and a serialised version of the fields that have changed, in the format of: {% highlight js %} [ { "field": "date_of_birth", "old": "1955-01-10", "new": "1955-10-01" } ] {% endhighlight %} Now, the complication comes when trying to generate reports based on this stuff, and that is all down to the use of GFKs. Essentially, what I want to be able to do is: {% highlight python %} Action.objects.between(start, finish).verb('updated').filter( target__in=queryset ) {% endhighlight %} But this will not work, as there is no real `target` field: it's a GFK field. But we can query on the two fields that make it up: `target_content_type` and `target_object_id`. So, you might think we can do something like: {% highlight python %} ctype = ContentType.objects.get_for_model(queryset.model) Action.objects.filter( target_content_type=ctype, target_object_id__in=queryset ) {% endhighlight %} Alas, this will not work either, as `target_object_id` is a "character varying", and a queryset kind-of … -
Django Dash - Registration Soon! (And Sponsors Needed)
Django Dash - Registration Soon! (And Sponsors Needed) -
Django Round-Up #8
Lynn Root joins us to discuss the latest Django and Python links, running your own young coders class, and PRISMs effect on us and the technology we use. -
Caktus Participates in DjangoCon 2013
Caktus is happy to be involved in this year’s DjangoCon hosted in Chicago. We are pumped about the great lineup of speakers and can’t wait to see some of our old friends as well as meet some new folks. Beyond going to see the wonderful talks, Caktus is participating as a sponsor and Tobias McNulty will be speaking on scaling Django web apps. Come stop by our booth or see Tobias’ talk to connect with us. Tobias’ talk "Scaling Your Write-Heavy Django App: A Case Study" will delve into some Django related scaling challenges we encountered while developing a write-heavy web app that would be deployed to millions of students and parents in the Chicago public school system. Through the lens of these specific problems he will show widely applicable solutions to forecasting web app loads, scaling, and automating the configuration so that it is completely repeatable. We are proud to support the Django community through our sponsorship and involvement in DjangoCon. We’re all looking forward to the event and hope to see some of you there! -
Caktus Participates in DjangoCon 2013
Caktus is happy to be involved in this year’s DjangoCon hosted in Chicago. We are pumped about the great lineup of speakers and can’t wait to see some of our old friends as well as meet some new folks. Beyond going to see the wonderful talks, Caktus is participating as a sponsor and Tobias McNulty will be speaking on scaling Django web apps. Come stop by our booth or see Tobias’ talk to connect with us. -
Django redirects with regular expressions
Django redirects with regular expressions -
Django Round-Up: DjangoCon Edition
In this special episode, we interview Steve Holden and discuss the history of DjangoCon, what goes into producing a conference, and Steve's personal history with Django. -
Configuring various browsers for Selenium web applications tests
Selenium can test your web applications quite easily (at least the frontend). To perform the tests it launches a webdriver which in most cases will be Firefox. But what about other browsers that may interpret CSS/JS differently, or what about mobile browsers on mobile devices? Selenium does support them, but to get them working some extra configuration is required. In this article I'll show how to make other browsers work with Python Selenium client (on Linux). -
Activity Feed with Event Log
Adding an activity feed is simple with the eventlog application. I show you how to get started with it by easily adding it to your project, and how use and administer it.Watch Now...