beautifulsoup

How to collect data from the Web using BeautifulSoup

Web scraping is one of the most trending topics these days. Due to the advent of Big Data for Machine Learning and Artificial Intelligence, Web scraping has become an essential tool to collect as much data as possible from the modern web. Python is a great programming language that can be used for collecting data from the web. We have many libraries like selenium, BeautifulSoup, Scrapy that can be used for mining the web and collect data.

If else statement with examples

Python if else Statement Explained with examples

In this tutorial, we will learn how to use the python if/else statements, which will help us deal with decision making in our python program. We will also look at some practical examples to see how it works. To follow this tutorial, you need to have python installed in your system; if you don’t have python installed, you can follow our guide on installing python on Linux.

Django login system

How to use Django’s built-in Login System

In our previous Django tutorial, we learned how to install this web framework on your Windows devices and create our first Django project by simply running a few commands. As you might know by now, Django provides programmers with rapid development features, and thus, you won’t have to spend your precious time reinventing the wheels. As such, this web framework also comes with its own built-in login system that we’ll teach you how to use in this article.

Getting started with Django
|

10 Tips for Beginners getting started with Django

Django is keen on adhering to the MVC (Model View Controller) convention that many frameworks follow. However, the framework is keen on working with its own control rules. Since the control you need when dealing with your Django apps is not isolated, Django is sometimes called an MVT application with the View component bridging the Model component and Template component of your apps.

Sorting Lists in Python

How to Sort a List in Python

Python lists are one of the most powerful and useful data structures. We can use lists to store data in a sequential way as we do with arrays in javascript or vectors in C++. In this tutorial, we will learn how to sort a list in python. We will use the sort() method of the python list and the python’s built-in sorted() function to sort the list and see some hands-on examples on customizing the sorting as our requirements.

Checking Python Version

How to Check Python Version in Linux

The knowledge of the correct version of python is important for many tasks. For example, we may want to install a library that requires a specific version of python to check if our system has that version already installed. For example, in the Terminal formatting tutorial using rich, we have learned about a library called rich, which is used for terminal formatting in python. Still, the library requires Python 3.6.1 or later installed in the system.

Comparing Strings Java

How to Compare Strings in Java

Java is an object-oriented programming language that can be used to develop desktop applications, web applications, android applications, games, database connections, etc. In this article, we are going to study how to compare strings in Java. In java, a String is a data type or an object that is used to store text. The string object contains characters that are enclosed by double-quotes.