Posts by Aryaman Kakad

Author Biographical Info: Not available

Web Scraping using lxml in Python

By Aryaman Kakad

In this tutorial, we will be performing web scraping using lxml in Python. Web Scraping is the process of scraping or retrieving information/data from different websites. Most of t.... Read More

Newspaper article scraping and curation in Python

By Aryaman Kakad

In this tutorial, we will learn newspaper article scraping and curation in Python. We will be using the newspaper3k module which is used for extracting articles from newspapers. Be.... Read More

Scraping and Finding Ordered words in a dictionary in Python

By Aryaman Kakad

In this tutorial, we will learn the scraping and finding ordered words in a dictionary in Python. An ordered word is a word in which the alphabets in the word appear in the alphabe.... Read More

How to modify equal tuple rows in Python

By Aryaman Kakad

In this tutorial, we will learn how to modify equal tuple rows in Python. Whenever we work with data in Python, we sometimes need to modify equal tuple rows data based on the equal.... Read More

Remove None Nested Records in Python

By Aryaman Kakad

In this tutorial, we will be learning how to remove none nested records in Python. We sometimes need to remove the data which have all key’s values as Null/None in nested rec.... Read More

Implementation of Dynamic Array in Python

By Aryaman Kakad

In this tutorial, we will learn how to implement a Dynamic array in Python. A Dynamic array in Python is similar to a regular array, but the only difference is that a dynamic array.... Read More

How to get the model of ComboBox in PyQt5

By Aryaman Kakad

In this tutorial, we will see how to get the model of a ComboBox in PyQt5. We need to import the PyQt5 library and some of the modules like QtWidgets, QtGui, QtCore associated with.... Read More