Pierian Blog

Python Basics, Tutorials

Using GitLab Python API: A Tutorial for Beginners

Introduction GitLab is a web-based Git repository manager that allows developers to collaborate on code, track changes, and manage projects. The platform provides an API that enables developers to automate tasks and integrate GitLab with other tools. In this tutorial, we will be exploring how to use the GitLab Python API to perform various tasks […]

Python Basics, Tutorials

Zillow API with Python: How to Access and Use It

Introduction Zillow API is a web-based service provided by Zillow that allows developers to access real estate data such as property details, historical data, and market trends. This API provides a simplified way of accessing real estate data without the need for web scraping or manual data entry. Python is a popular programming language used […]

Python Basics, Tutorials

How to remove key from Python Dictionary

Introduction Dictionaries are an essential data structure in Python, and they allow you to store and manipulate data in a way that is intuitive and efficient. In a dictionary, you can store key-value pairs, where each key maps to a value. However, there may be instances where you need to remove a particular key from […]

Python Basics, Tutorials

Python Date Range: A Comprehensive Guide

Introduction Python provides several modules for working with dates and times, including the datetime and calendar modules. One common task when working with dates is to generate a range of dates within a specific time period. In this guide, we will explore different approaches to generate date ranges in Python. Working with dates and times […]

Python Basics, Tutorials

Python Add Day to Dates: A Tutorial for Beginners

Introduction Python is a popular programming language that is widely used for various applications. One of the most common tasks in programming is working with dates, and Python provides a range of built-in functionalities to handle dates and time. In this tutorial, we will explore how to add days to dates using Python. Working with […]

Python Basics, Tutorials

Python Dictionary from Two Lists: A Comprehensive Guide

Introduction Python Dictionary is a data structure that allows you to store key-value pairs. It is similar to a real-life dictionary where you look up a word (key) and find its meaning (value). In Python, dictionaries are created using curly braces {} and they are mutable, which means you can add, remove, and modify items […]

Python Basics, Tutorials

Python Unpack Dictionary: A Comprehensive Guide

Introduction Python dictionaries are one of the most versatile data structures in Python. They are used to store key-value pairs and are mutable, which means that their values can be changed. One of the most useful features of Python dictionaries is the ability to unpack them. Unpacking a dictionary means extracting its keys and values […]

Python Basics, Tutorials

Seaborn Pie Chart: A Tutorial for Data Visualization

Introduction Data visualization is an essential part of data analysis, and pie charts are a popular way to represent proportions of data. Seaborn, a Python data visualization library, provides an easy and effective way to create visually appealing pie charts. Pie charts are useful when you want to show the proportion of each category in […]

Python Basics, Tutorials

Python __len__: A Beginner’s Guide

Introduction Python provides a built-in function called `__len__` which is used to return the length of an object. The `__len__` function can be defined in our own classes and can be used to return the length of any custom object we create. In this blog post we’ll be discussing Python __len__ method in detail. The […]