Tag Archives: Python

Python – Lambda Functions

By | 28/05/2025

In this post, we will see what the Lambda Functions are and how we can use them in our projects.But first of all: what are “Lambda functions”?“Lambda Functions are small, anonymous functions defined with the “lambda” keyword. Unlike regular functions defined with “def”, a Lambda Function is typically one line of code, used to perform… Read More »

Python – Pandas

By | 30/04/2025

In this post, we will see what Pandas is and how we can use it in our Python projects.Pandas is an open-source Python library that provides high-performance, easy-to-use data structures and data analysis tools.Built on top of NumPy and provides easy-to-use data structures and data analysis tools. It is particularly well-suited for handling structured data,… Read More »

Python – Streamlit (Part III)

By | 19/03/2025

Python – Streamlit (Part I)Python – Streamlit (Part II) In this last post on Streamlit, we will see how to manage a form Data, how to manage Buttons and Events and finally we will see how to manage the Session State. FORMForms in Streamlit allow us to group multiple input widgets and submit them together,… Read More »

Python – Streamlit (Part II)

By | 05/03/2025

In the previous post, we introduced Streamlit and covered some basic features. In this post, we’ll explore more advanced features, including navigation, tabs, columns and containers that allow us to create more complex and organized web apps. SIDEBARA sidebar can be added to our applications to house widgets, menus, or inputs that organize the user… Read More »

Python – Streamlit (Part I)

By | 19/02/2025

This is the first Post of a series of three where, we will see what Streamlit is and how we can use it in our projects.As Python developers, we often need to create user interfaces for our projects, dashboards or internal tools. While frameworks like Flask or Django are powerful, they require significant code and… Read More »

Python – NumPy

By | 09/10/2024

In this post, we will see what NumPy is and how we can use it in our Python projects.NumPy is an open-source Python library that provides support for large, multi-dimensional arrays and matrices, along with a vast collection of high-level mathematical functions to operate on these arrays efficiently. It is the foundational package for scientific… Read More »

Python – Decorators

By | 25/09/2024

In this post, we’ll see what Decorators are, look at some built-in decorators, and see how to create our own custom decorator.But first of all, what is a Decorator?“A decorator is a design pattern in Python that allows us to add new functionality to our existing object without modifying its structure. Decorators are implemented as… Read More »

Python – Management of a PostgreSQL database

By | 28/08/2024

In this post, we will see what PostgreSQL is and how to use it in Python.PostgreSQL, often referred to as Postgres, is a powerful, open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance. It has been in active development for over 30 years, making it a highly mature database choice.… Read More »

Python – How to manage a XML file

By | 22/05/2024

In this post, we will see how to manage a XML in Python using the “xml.etree.ElementTree” module.The “xml.etree.ElementTree” module is part of Python’s standard library, offering a simple and effective way to work with XML data. This module supports parsing XML from strings or files, navigating and searching the XML tree, and modifying or creating… Read More »