Skip to main content

How to setup django | django installation ubuntu



Introduction to Django

1.    High level web framework
1.    Basic modules, classes, and tools to quickly develop and deploy web apps
2.    Contains an ORM (Object-Relational Mapper) that allows for the use of standard Python language syntax when interfacing with a back-end database.
1.    Developer need not learn SQL, DDL, etc!
3.    Provides a template framework that allows HTML, XML, and other “documents” to be converted into “templates”, which can then be converted to “output” via a wide range of substitution techniques.
4.    Elegant URL support (fancy, beautiful URL's, no “?blah=blah”, etc.)
5.    Multi-lingual
2.    Fast and easy to use, robust, flexible, and lots of contributed components available!
1.    Built in administrative interface to manage data models.
2.    Built-in authentication/access control components
3.    Contributed


Installing & Configuring Django Components

1.    Django can be downloaded from http://www.djangoproject.com/download
2.    Unpack and install Django
3.    Unpack the sources and run the command below from the Django source directory as the root user: python setup.py install
4.    This command works the same on Windows as it does in the Linux environment, you just need to make sure you call the correct interpreter.
·       Current version of Django provide support for three databases:
o   PostgreSQL using the psycopg and psycopg2 drivers .
§  Unix versions can be downloaded from http://initd.org/pub/software/psycopg/
§  Windows version are available at http://stickpeople.com/projects/python/win-psycopg/
o   MySQL using the MySQLdb package.
§  This package is available at http://sf.net/projects/mysql-python/ .
o   SQLite 3 using the pysqlite package.
§  This package is available at http://trac.edgewall.org/wiki/PySqlite .
·       SQLite support is included in Python version 2.5 and newer.
·       Django supports all of these databases in the same
manner, so which you choose to use here makes little
difference, since everything is coded in the same
way.
·       When you move to your own development system,
you'll need to choose a database based on your
needs and the software deployed in your enterprise.

Creating a New Project


·       The django-admin.py tool is used to create a directory and create “default” files for a new Django project.
o   A project is generally made up of one or more “apps”
o   Functional code is contained within the apps.
·       Use the django-admin.py script to create the new project files. django-admin.py startproject name
o   The startproject argument tells the command that we need it to initialize a new Django project.
o   The name argument allows us to specify the name of the project to be created.
o   When the command runs, it will create a new directory called name in the current directory, and populate it with a few files:
o   __init__.py : A file that causes Python to treat the directory as a package.
o   manage.py: A command line utility to communicate with Django.
o   settings.py: Configuration settings for the project.
o   urls.py: URL declarations for the project. The URL's tell Django what to do when certain URL's are put into the browser.


Starting the Test Server


§  Once you've created your project, you can test it by starting up the Django development server.
o   You can start the server using the command:
python manage.py runserver        
o   This command will start up the server and listen on port 8000 of your system.
o   You can use your web browser to connect to the server using the URL the command returns

Creating a New Application


§  Once you've created a project, you'll need to create an application.
o   Django models and views are handled through the application itself – not the project, which consists of primarily the controller and base settings (such as data store information)
§  You can begin a new app by opening a shell window in your project directory and issuing the 'startapp' command.
§  Like projects, you should avoid using reserved words for your app name, otherwise you might run into problems later
§  Once you've created a new app (or installed an app from a third party), you'll want to add it to the list of INSTALLED_APPS in your projects 'settings.py' file
§  Apps are not actually used until they are installed, so you'll want to make sure you install your app, or it won't be usable in your project

Comments

Popular posts from this blog

HTML Emailing in ZF2

<?php namespace Application\Model; use Zend\Mail\Message; use Zend\Mime\Message as MimeMessage; use Zend\Mime\Part as MimePart; use Zend\Mail\Transport\Sendmail as SendmailTransport; use Zend\Mail\Transport\Smtp as SmtpTransport; use Zend\Mail\Transport\SmtpOptions; use Zend\View\Renderer\PhpRenderer; use Zend\View\Resolver\TemplatePathStack; use Zend\View\Model\ViewModel; use Zend\View\Model\ModelInterface; class ApiEmail extends ApiInterface {    protected $From = "XXXXX@gmail.com";    protected $FromName = "XXXX";    protected $To = "" ;    protected $Subject = "" ;    protected $Body = "" ;    protected $Cc = "XXXXXX@gmail.com";    protected $Bcc = "XXXXX@gmail.com" ;    protected $ReplyTo = "XXXX@gmail.com" ;    protected $Sender = "" ;    protected $Encoding = "UTF-8" ;    protected $MESSAGE ; // getter setter    public fun

How to start working with Django web framework

 Django is a powerful web framework for Python that makes it easy to build web applications quickly. Here are some steps you can follow to start learning Django programming: Install Python: Django requires Python to be installed on your machine. If you don ' t already have Python installed, you can download it from the official Python website (https://www.python.org/downloads/). Install Django: Once you have Python installed, you can use the pip package manager to install Django. Open a terminal or command prompt and type the following command: pip install django Create a new Django project: To create a new Django project, open a terminal or command prompt and navigate to the directory where you want to store your project. Then run the following command: django - admin startproject myproject Replace myproject with the name you want to give to your project. This will create a new Django project with the specified name in the current directory. Run the development