Author: Preeti

File Handling in Python

Python, like many other programming languages, offers file management and allows users to read and write files, as well as perform a variety of other file-related tasks. Python processes files differently depending on whether they are text or binary, which is essential. A text file is formed by each line of code, which contains a […]

Error: 413 “Request Entity Too Large” in Nginx

Sometime this happening because your nginx server will not enable you to upload a file that is greater than the size specified in the nginx config file. To fix that, you’ll need to change your nginx configuration. Remove/modify your nginx config file by following the steps. Step 1. Go to the config location and open it […]

xlwings – Extract the contents of the excel text box 

xlwings (Open Source) is a BSD-licensed Python library that makes it easy to call Python from Excel and vice versa. Numpy arrays and Pandas Series/DataFrames are fully supported. xlwings-powered workbooks are easy to distribute and work on Windows and Mac. xlwings is only compatible with Windows and macOS because it requires the installation of Excel. UDFs (User Defined Functions) are presently not supported […]

Docker overview

Docker is a software platform for fast developing, testing, and deploying applications. Docker allows you to decouple your apps from your infrastructure, allowing you to quickly deploy software. You can manage your infrastructure the same way you control your applications with Docker. Docker use OS-level virtualization to deliver software in packages called containers. It includes all of […]

Buddha Purnima/Vesak in India

The most auspicious Buddhist festival, Buddha Purnima or Buddha Jayanti, celebrates Lord Buddha’s birth, enlightenment, and death. The celebration takes place in April or May on the day of the full moon. Temples and other Buddhist sites in India, including Kushinagar, Sarnath, Bodh Gaya, and Sikkim, hold prayers. The celebration has a special meaning for […]

Pandas Introduction in Python

Pandas is a Python library that provides quick, versatile, and expressive data structures for working with “relational” or “labelled” data. Its goal is to serve as the foundation for undertaking realistic, real-world data analysis in Python. Pandas is an open source Python package that is most widely used for data science/data analysis and machine learning […]

Part 2 : NumPy Slicing and Stacking Arrays

If you don’t know what is NumPy array then please visit first our post NumPy Basic Array Operations. In this post we will continue our numpy course. In this post we will learn slicing and indexing, iterating, stacking and splitting array. Slicing in Python is the process of moving elements from one index to another. […]

Part -1: NumPy Basic Array Operations

The NumPy array is a data structure for storing and accessing multidimensional arrays (also known as tensors) that allows for a wide range of scientific computations. Just like python list we can access element from NumPy array. If you dont know what is NumPy then visit our NumPy: The absolute basics for beginners post. In […]

NumPy: The absolute basics for beginners

We are going to start our new course for NumPy. In this course we will learn what is NumPy and how to use NumPy. NumPy (Numerical Python) is an open source Python library that’s used in almost every field of science and engineering. It’s the universal standard for working with numerical data in Python, and […]

Scroll to top