This module allows you to use constants in Python.
from constants import Constants as const # you can make a new Constant with any type as a value as long as it's a valid variable name ↙️ const.new("variable_name", 1234) print(const.get("variable_name")) # But if you try to change it in any way, you'll get an error. const.new("variable_name", "resetting variable_name...")![]()
This module allows you to insert ANSI-compliant color codes into string objects.
from ansi_colors import AnsiCodes, color_text file = "testing.txt" open(file, 'w').write("This is some text in the file\n\nThis is another paragraph.\n") print("This is the contents of", file) words = open(file).read() print(color_text(words, AnsiCodes.FG_RED, AnsiCodes.BOLD)) print(color_text("This is the end of the file", AnsiCodes.FG_BLUE, AnsiCodes.ITALIC))
This module contains MutableInt, MutableFloat, MutableStr, and MutableBool classes. They are exactly what they sound like: mutable variations of int, float, str, and bool.

