Search Tutorials
The Tutorials in this series are created using Python 3.4.3, IPython 5.1.0 on Ubuntu 12.04. Python is a programming language that lets you work more quickly and integrate your systems more effectively. Read more
Foss : Python 3.4.3 - English
Outline: Overview of dictionaries Creating an empty dictionary Creating a non empty dictionary About key:value pair How to access the dictionary elements Demonstration of wrong key Ad..
Intermediate

Foss : Python 3.4.3 - English
Outline: What are sets in python? Input sets Create sets How to create empty sets? Operations on sets Add and remove methods Union and intersection methods Difference and symmetric_d..
Intermediate

Foss : Python 3.4.3 - English
Outline: About Functions How to define a function Example for defining a function Calling a function with arguments Calling a function without arguments Return values from a function ..
Advanced

Foss : Python 3.4.3 - English
Outline: Functions with default arguments Various examples for default arguments Interchanging the default and non-default arguments Call a function with keyword arguments Call a functi..
Advanced

Foss : Python 3.4.3 - English
Outline: Python modules Run a Python script from command line How to import modules in python scripts? How to import required functions from a module? Usage of namespace Advantages of ..
Advanced

Foss : Python 3.4.3 - English
Outline: About Python modules What is importing? How to write a function and save it as a script Run a python script Import a module Example to import a module usage of __name__ varia..
Advanced

Foss : Python 3.4.3 - English
Outline: What is software testing? Write a simple function How to write test cases? Create simple tests for a function Run the script and test the code Automate tests Example for test..
Advanced

Foss : Python 3.4.3 - English
Outline: Errors in Python Syntax errors and exception Exceptions with example Syntax error with example Demonstration of ValueError exception Demonstration of ZeroDivisionError excepti..
Advanced

Foss : Python Django - English
Outline: Getting started with Django Python Virtual Environment Create a Virtual Environment Activate the Virtual Environment pip command Install Django Update Django version Creat..
Basic

Foss : Python Django - English
Outline: Creating Django Models About Django App Djano Model Create a blog app Blog app directory structure Initialize a Django app Create a Django Model and Perform Database migra..
Basic

Foss : Python Django - English
Outline: How to Use Django Admin App Use Django admin app Create an admin user Django Admin interface Login to Django Admin interface Authentication and Authorization Registering Bl..
Basic

Foss : Python Django - English
Outline: Creating Views and Design URLs What is a view? Create a Django view Http Request object HttpResponse class django.urls modules Create a URL routing scheme path function C..
Basic

Foss : Python Django - English
Outline: Creating HTML Template in Django Create templates folder Create a Django template Use Django HTML template Django templates system Template tags Template variables Templat..
Basic

Foss : Python Django - English
Outline: Django Shell and Django Database Query About Django Shell Access Django shell Create a Django Query Create Blog Instance via shell Assign value to the blog instance Timezon..
Basic

Foss : Python Django - English
Outline: Creating Forms in Django * HTML Forms * Create a Django form * Django inbuilt libraries * Create views to handle form submission * CSRF - Cross Site Request Forgery Protec..
Basic

Foss : Python Django - English
Outline: Using CSS and JavaScript in Django * About CSS * About JavaScript * Django Static files * Load static files * Django Static template tag * Create CSS and JavaScript files ..
Basic

Foss : Python Django - English
Outline: Django Authentication * Django Authentication and Authorization system * Verify user credentials * Define user actions * Create a login functionality * Create a logout func..
Basic

Foss : Python Django - English
Outline: Testing in Django * Django Automated testing * Unit test model * Write tests in Django * TestCase class * Run the tests in Django * Run specific tests * Assertion methods ..
Basic

Foss : Python Flask - English
Outline: Python Virtual Environment Install pip3 Install virtualenv Create a Virtual Environment Activate the Virtual Environment Install Flask Write a Hello World Flask app Start th..
Basic

Foss : Python Flask - English
Outline: First Flask web app Importing flask module Python Decorators Web Server Gateway Interface Routes in Flask Static Routes View Functions Dynamic Routes 404 HTTP code Running..
Basic
