Tag Archives: python

Parsing M3U Playlists in Python with the m3u-ipytv Library

M3U playlists are a popular format for storing multimedia playlists, and they are widely used for organizing TV channels, radio stations, and video content. In this blog post, we’ll explore how to work with M3U playlists in Python using the m3u-ipytv library. We’ll cover the process of creating a Python script that can parse an M3U playlist file… Read More »

Fibonacci solution in Python

I have always thought of the Fibonacci sequence as a suitable challenge when learning a new programming language. According to Wikipedia “the Fibonacci numbers, commonly denoted Fn  form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding ones, starting from 0 and 1“. I posted my JavaScript solutions to solve the Fibonacci value for… Read More »