Links – Top 10 tips to a new django developer
New beginner gotcha, help yourself by reading this. Top 10 tips to a new django developer Related posts: PHP Tips and Tricks How to Reset Django Admin Password Related posts: PHP Tips and Tricks How to...
View Article[Link] MongoEngine
MongoEngine is a Document-Object Mapper for working with MongoDB from Python. It has similar API with Django ORM. Related posts: MongoDB Basic Operations [Link] Django Advent Beginner Step Into MongoDB...
View Article10 Django Apps I Can’t Live Without
I love Django pluggable applications. Basically you just need to install the application, and you’re done. How many hours do you spend to create registration system for your new project? Well, in...
View ArticleDjango 101
Django has excellent documentation, and it’s great place to get started if you want to learn about Django framework. The second place maybe this great Django book. I also found lot of django tutorials...
View ArticleDynamic Module Loading in Python from a Directory
I have a case which need dynamic module loading from a directory. I found solution from stackoverflow that work for me and decide to share it here. Dynamic module loading in python : 1 2 for module in...
View ArticleGetting Started With Django-CMS
Django CMS is content management system built in Django. You can extend the CMS via plugins, and there are already some plugins/extensions you can use or you can write custom plugin/extension for your...
View ArticleHow to Reset Django Admin Password
There is a time when I forgot my password for Django admin. You can create new one using createsuperuser, but if you want to reset your available account you can use django shell : python manage.py...
View ArticleHandling 404 Page on FeinCMS
If you add dynamic content such as FeinCMS navigation in your 404 page then you need custom 404 handler. Create custom views for 404 page. from django.shortcuts import render_to_response from...
View ArticleHow to Programmatically Post to Facebook Wall
If you need to automatically publish something on your facebook wall or facebook pages wall, you can follow these steps: Get your Facebook App Id and App Secret You can get them from your facebook app,...
View Articlesnippet : Generate n Length Random String using Python
I always forget stuff, so I’ll start to post my snippet here. Generate n length random string 1 2 3 4 5 6 import random def random_string(n): """ Create n length random string """ code =...
View Article