-
Hello everyone! Today is a great day to release some projects to the wild! AgriCatch is a data aggregation tool I've built on top of Django. What AgriCatch does is pretty simple - it lets you grab data from wild and disorganized websites (talking about the HTML of course). It supports...
-
Django Serializers are suppose to take entries from your DB and serialize in either Json or XML. The problem is, they’re not very customizable, and their defaults are not what I was looking for. For example, Django Serializers expose the item’s PK (usually ID), and Model name. These are things...
-
Or: Why I chose Django over Yii I've been developing with PHP well over a decade now. From editing and writing plugins initially for Phpnuke (yep), to working with most CMS's (Drupal, WP, Magento), and eventually MVC frameworks (CI, YII, KOHANA, etc.) I've learned the language's good sides, and bad...
-
I've been trying to make a template layout for Django that makes sense, something similar to existing PHP frameworks, where the head section is in one file, and the body is in another. To do that I simply created a file called head.html (under templates/ obviously), and included it: head.html...
-
I'm working on this project that has some German titles, and a lot of irregularities inside them (question marks, underscores, etc.) Because I have to refer the object (in this case product) by some sort of understandable name, I've decided to slugify the title (basically turn "THIS EXAMPLE!!" to "this-example")...
-
I've been developing with Django on my local machine, and I was wondering if there was a way for me to deploy it on a shared hosting server, after playing around with it for a few hours, it actually works! I'm quite surprised so much is possible without having root...