Skip to main content

Make Password Generator using Python

In our previous Python tutorial, you have learned how to Monitoring Memory Consumption in Python. In this tutorial, you will learn how does a password get hacked and how to Generate a Strong Password in Python.

Having a secured password is very important because there are always security threats such as cyberattacks, password leaks, and data breaches. So be always cautious to use strong and secure password to avoid the chances of Brute force attack or any other security breach.

You can easily create strong and secure password with Python using Random or Secrets module. But here we will use Secrets modules which helps to create much secure password than Random module. (more…)

Monitoring Memory Consumption in Python

In our previous Python tutorial, we have explained how to do Web Scraping using Python. In this tutorial, we will explain how to Monitor Memory Consumption in Python.

Due to simplicity and robustness, Python is popular among data science community. The Data Scientists use Python to process huge amount of data and often prone to memory management issues. If code execution exceeds the memory limit, memory errors returns and execution terminates. (more…)

Web Scraping in Python

In our previous Python tutorial, we have explained how to develop User Management System with Python, Flask and MySQL. In this tutorial, we will explain how to do web scraping using Python.

Now the question arises, What is Web Scraping? Web Scraping is a process to extract data from websites. The scraping software make request to website or web page and extracts underlying HTML code with data to use further in other websites.

In this tutorial, we will discuss how to perform web scraping using the requests and beautifulsoup library in Python. (more…)

Develop Your First Web Application in Python

In our previous Python tutorial, we have explained how to Create REST API in Python. In this tutorial, we will explain how to develop your first web application in Python.

In Python, there are many frameworks such as Django, Flask which allows to easily create web pages and develop web applications.

In this tutorial, we will use Flask framework to develop our first web application in Python. The Flask is a popular micro web framework written in Python that provides useful tools and features to easily develop web applications. It is an easy to use and gives flexibility to new developers.

The Flask frameworks uses the Jinja2 template engine by default. You can obviously use a different template engine but you still have to install Jinja2 to run Flask itself.

In this tutorial, we will develop a web application that a user form with input field and a submit to submit form and dispay form submitted values.

(more…)