Quantcast
Channel: JS Tricks » Python
Browsing all 25 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

How to Install Django on your favourite Operating System

Django is a python based framework. And this is a high-level Python Web framework which will help you in rapid development and clean, pragmatic design. Django comes up with a lightweight web server for...

View Article


Image may be NSFW.
Clik here to view.

Top Python Web Frameworks for developers

Python is a very popular programming language. It is highly extensible. With a small amount of code Python can do a lot of work comparing with other programming languages. By the way, Python is an...

View Article


Image may be NSFW.
Clik here to view.

Getting Started with Django Framework

Django Framework was designed to make your web developing tasks very easy and fast. It has a lightweight development server which makes your developing tasks easier. Django Framework also provides...

View Article

MySQL driver for Django Framework

While you are using Django Framework and want to use MySQL as the Database then sometime it will a bit problem for you. Because it is really tough to get a suitable MySQL driver for Django. And from...

View Article

Python mkdirs method: Python tutorial

In this lesson we will learn about mkdirs method for Python. Python mkdirs method Python mkdirs method is a recursive function for creating directory. This method is just like mkdir method but the...

View Article


Python chmod Method: Python Tutorial

In this tutorial we will learn about Python chmod method. This method is used for changing permissions for files and directories. Python chmod Method In Python the method chmod() changes the mode of...

View Article

Python MD5 Hash: Python Tutorial

Python’s hashlib is a module of Python’s Standard library which contains some very popular hashing algorithms. If you have OpenSSL installed then hashlib can use its algorithms too. In this tutorial...

View Article

Image may be NSFW.
Clik here to view.

Send email using Django and Gmail SMTP

Hello, in this tutorial we will discuss about a very important feature of Django. Yes, in this post we will show you how to Send email using Django and Gmail’s SMTP server. How to send email using...

View Article


Django get_object_or_404 method

While we develop dynamic web applications we query data for dynamically generated pages by any unique value ( like ID,  Product Code, Slug) of that page. In our dynamic web applications we define URLs...

View Article


Python SHA Hash: Python Tutorial

The Secure Hash Algorithm ( SHA ) is a family of cryptographic hash functions. In this lesson we will learn about  Python SHA Hash. Python SHA Hash The hashlib module which is included in Python’s...

View Article

Image may be NSFW.
Clik here to view.

Python string concatenation tutorial

Concatenation is the process to combine multiple strings into a new string. In this lesson we will learn about Python string concatenation. Python string concatenation Python string concatenation In...

View Article

Image may be NSFW.
Clik here to view.

Python string replace method

Python string replace method will return a copy of the input string from which you want to replace a sub-string. Python string replace method is included in the string module. Python string replace...

View Article

Python split Method for String

In this lesson we will learn about Python split method for string which is an important method for extracting words from a string based on a string separator. Python split Method Python’s split()...

View Article


Python range Function tutorial

Hello. In this lesson we will learn about Python range function. Lets get started. Python range Function Python range function is used to generate sequences of numbers in list form. And Python’s range...

View Article

Python tuple len Method – len()

In this lesson we will learn about Python tuple len method. This len method will return the number of elements in the tuple. Python tuple len Method Python tuple len method is an effective way to get...

View Article


How to Validate email in Django

Email validation is very important for your web application. It helps you to filter out invalid emails before processing. Here we will learn how to Validate Email in Django. How to validate email in...

View Article

Python dictionary len Method

In this lesson we will learn about Python dictionary len method. This len method will return the number of elements in the dictionary. Python dictionary len Method Python dictionary len method is an...

View Article


Python Data hiding tutorial – Python OOP Lesson

Data hiding and encapsulation both are much less the same. In this tutorial we will learn about Python Data Hiding. Python Data hiding In Python sometime you will want to hide the object’s attributes...

View Article

Python List len Method – Python len()

In this lesson we will learn about Python list len method. This len method will return the number of elements in the list. Python list len Method Python list len method is an effective way to get the...

View Article

How to get values of checked Checkboxes in Django form

In this lesson we will learn how to get values of all checked Checkboxes in Django form. It is really a simple task in Django. How to get values of checked Checkboxes in Django form Django has a method...

View Article
Browsing all 25 articles
Browse latest View live