DEV Community

Free Python Code
Free Python Code

Posted on

List of amazing Python modules

In this post, I will share with you a list of amazing Python modules that you can use in your project.

1 - moviepy

MoviePy is a Python library for video editing: cutting, concatenations, title insertions, video compositing (a.k.a. non-linear editing), video processing, and creation of custom effects.

install :
pip install moviepy

2 - colored

Colored, it's a simple Python library for color and formatting in terminal. Collection of color codes and names for 256 color terminal setups. Colored now supports RGB color mode. As "true color" graphic cards with 16 to 24 bits of color became common, applications began to support 24-bit colors. Terminal emulators supporting setting 24-bit foreground and background colors with escape sequences include Xterm

install :
pip install colored

3 - pyfiglet

pyfiglet is a full port of FIGlet (http://www.figlet.org/) into pure python. It takes ASCII text and renders it in ASCII art fonts (like the title above, which is the 'block' font).

install :
pip install pyfiglet

4 - segno

Pure Python QR Code generator with no dependencies.

This package implements ISO/IEC 18004:2015(E) “QR Code bar code symbology specification” and produces QR Codes and Micro QR Codes with nearly no effort. It supports the Structured Append mode which splits a message across several QR codes.

pip install segno

Top comments (0)