Pythonium

Python, What else ?

The Pythonium Blog

Welcome to my "new" blog! I plan to publish articles related to Python, as you’ve probably guessed 🙂 I will cover topics like data science, programming, data, and other things (perhaps a bit less related to Python, but still within the Tech realm).
My posting schedule may be a bit slow, but please be patient!

Common REST API mistakes

Image
REST APIs are now used in the majority of web applications. They allow different services to communicate easily using the HTTP protocol. However, designing a good REST API is not always easy, and some...

Why CSV is more complicated than it seems

Image
The CSV (Comma-Separated Values) format is not exactly new. It is one of the most widely used data formats. You can find it everywhere: database exports, Excel files, ERP, CRM, BI tools, APIs... At fi...

Floating-point number pitfalls in programming

Image
Floating-point numbers are one of the concepts that every developer encounters early on. They allow decimal numbers to be represented in almost every programming language. However, their behavior can ...

AI Agents for Automation

Image
Automation still relies on deterministic systems (rules, workflows, etc.) that are effective but not very adaptive. AI agents introduce a goal-oriented approach, combining LLMs, memory, tools, and pla...

Modernizing a legacy application

Image
Legacy applications are still extremely common in enterprises. Whether it’s an ERP system built fifteen years ago, a monolithic Java EE application, or an older .NET project, these systems often con...

YouTube proxy: What it is and how to set it up

Image
A YouTube proxy is a specialized tool that works as a bridge between the user and YouTube. It redirects user traffic through its own servers, enabling access to videos that might otherwise be blocked ...

Create your python module and publish it on pypi

Image
When you've created a module you've put some effort into, and it feels useful for other developers, you probably want to share it. (Ahhh, developers really are altruistic creatures.) Fortunately, for ...