Django - Nestdev.com | Nestdev.com

You are here: Archive for the ‘Django’ Category

Sending Email Using Gmail Account in Django

0 Comments

Sending Email Using Gmail Account in DjangoSending email in Django is easy, just add a few lines in your settings.py and you have everything ready to send an email. But if you’re using Gmail as your SMTP server you need add a few more lines to your settings.py. You need to specify what port Gmail server using and set to use TLS.

Receiving Email Using AppEngine and Django

0 Comments

Receiving Email Using AppEngine and DjangoWhile Python AppEngine documentation give a good example on receiving email on AppEngine, but for me it take time to figure out how to do that in Django.

10 Django Apps I Can’t Live Without

0 Comments

10 Django Apps I Can’t Live WithoutI 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 Django you just need to use django-registration, set up the urls and everything is up and running. In this way you can save time and focus to your business logic.

Django 101

0 Comments

Django 101Django 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 on other sites, but some of them are very old and they probably don’t work with current Django stable version (1.1.1 ). So I decided to collect recent tutorials about Django.I’ve compiled list of Django tutorials and articles to help myself with Django framework, and I hope the...

Relative Path for your Django Project

0 Comments

Relative Path for your Django ProjectSometimes you need to move your Django project (example:from local computer to production server) or you work as a team which don’t have the same path to your project. If you give absolute path then you always need to change the settings.py.

Django Tutorial – Simple Notes Application

0 Comments

Django Tutorial – Simple Notes ApplicationDjango is a great web framework, so easy to fall in love. Before starting this tutorial, you need to install Django framework. This tutorial assumes you have basic knowledge in Django, such as Model, View and Template. If not so, you can start with tutorials in Django documentation.

A Roundup of 10 Django Tutorials

0 Comments

A Roundup of 10 Django TutorialsSo you’ve heard abut Django and everything you’ve heard is good; but what is Django? In short, it is a Python-based web-development platform. It’s strengths are that it is designed for rapid deployment and a clean design. What is meant by rapid deployment is just that: Once you’ve become comfortable with Django, it is possible to go from a raw framework to working site in an hour.

How to install Django in Python on Windows Vista

0 Comments

How to install Django in Python on Windows VistaHow to install Django in Python on Windows Vista