Extensions to the print command and strings in general.
Project description
██████╗ ██╗ ██╗██████╗ ██████╗ ██╗███╗ ██╗████████╗██╗ ██╗
██╔══██╗╚██╗ ██╔╝██╔══██╗██╔══██╗██║████╗ ██║╚══██╔══╝╚██╗ ██╔╝
██████╔╝ ╚████╔╝ ██████╔╝██████╔╝██║██╔██╗ ██║ ██║ ╚████╔╝
██╔═══╝ ╚██╔╝ ██╔═══╝ ██╔═══╝ ██║██║╚██╗██║ ██║ ╚██╔╝
██║ ██║ ██║ ██║ ██║██║ ╚████║ ██║ ██║
╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝
version 2.0.1.
Description:
Extensions for printing and strings in general. Create simple animations, loading bars, manage user messages in custom fonts. Text designs, and special prints. And all - by yourself.
Documentation:
For documentation via github Click here.
license:
MIT © 2025 Yedidya steinmetz
simple example:
from pyprinty import Font, Fonts
my_font = Font(load=Fonts.CLASSIC) # Creating a font, using a ready-made font
# Printing a message to the user from the font we created
print(my_font("hello ", input("What is your name?"), sep=" "), end="!")
# You don't have to use ready-made fonts, you can create your own, and much more!
little more:
This is just a part:
from pyprinty import Font, Fonts
from pyprinty import Colors, Color
from pyprinty import Effects, Cursor
from pyprinty import Animation
from pyprinty import size
# Creating the fonts:
my_font = Font(
text_color=Colors.RED, # Ready color
base_color=Color(0, 255, 0), # Background color, Custom color
effects=[Effects.Bold, Effects.Speedblink] # Two ready-made effects
)
error_font = Font(load=Fonts.ERROR) # Creating a font and loading ready-made font settings Error
# Creating a management animation of the prints
my_animation = Animation(
load={ # Loading by dict, this can also be done in font
# Creates an animated object, sets the font, and makes it into a normal print mode.
"message": {"font": my_font, "mode": "print"}
}
)
# Adding an object manually, on glossy print mode
my_animation.add_font("error", error_font, mode="glare")
# Using the message object we created
my_animation.send(
"message", # the object
"hello", input("What is your name?"), # the text
sep=" ", end="" # The library preserves all parameters.
)
Cursor.PRINT(Cursor.CLEAR_ALL) # Reset the entire terminal (there are many more such commands)
# Demonstration of printing via the print command using the error font
print(
error_font(
# Print the current line size and number of lines of the terminal
"your consul size is", size(), sep=" "
),
end="!"
)
# There's a lot more in this library!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyprinty-2.0.1.tar.gz.
File metadata
- Download URL: pyprinty-2.0.1.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd2580f250495356e650dbce225d2a1fea08ee4151c267af69d83f2ef818d4f3
|
|
| MD5 |
dc1a0dbf8f5f6dbf04ad3f2ebcf7d19b
|
|
| BLAKE2b-256 |
695d6581eaf429e26cb6f7617851794099babc9df1608518f4a486c98d93a152
|
File details
Details for the file pyprinty-2.0.1-py3-none-any.whl.
File metadata
- Download URL: pyprinty-2.0.1-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f68df69a09081279d2ff9f0a3ac12f2d587f9089f887de2097b417243021b67
|
|
| MD5 |
754a4cc9a665c3cc9cfe91303b57bca6
|
|
| BLAKE2b-256 |
947ca82f17886623d3ebd35921c3b142bd7861ec5b1ecdedf31785a00fd02d4f
|