Skip to content

Repository files navigation

Build StatusFOSSA Status Shield Badge

Download

Go to the releases page and download the latest (or previous) version.

Or use pip pip install pyfancy

Overview

pyfancy is a simple Python library that provides a mechanism for easily styling text in some terminal environments. Text is styled by chaining together methods that add escape codes for color modifiers to the text.

Usage

Formatting using pyfancy all follows the same basic pattern. First, there is the initializer, which just sets up the pyfancy object. Next is a chain of function calls that provide text formatting. Finally, there is a last method chained on which either returns the text string with format escape codes, or which directly outputs the text using the print statement / method. (The output method should be compatible with Python 2 and 3.)

This chain of code looks basically like this:

pyfancy().[chainedstatements].output() # To print using print statement / methodpyfancy().[chainedstatements].get() # To get formatted text string

There are two different ways to use the chained statements. The first is to provide the text that is to be chained as part of the statement call. For example, the following prints “Hello, world!” in red:

pyfancy().red("Hello, world!").output()

However, chained statements are really just modifiers with an optional text argument. The following example works identically to the previous example:

pyfancy().red().add("Hello, world!").output()

Using chained statements, then, allows for modifiers to be stacked:

pyfancy().red().bold().add("Hello, world!").output()
# orpyfancy().red().bold("Hello, world!").output()
# The red() and bold() calls can also be in the opposite order.

Of course, there can only be, for example, one color active at a time. This allows for the creation of multicolored statements:

pyfancy().red("Hello").magenta(", ").blue("world!").output()

It is also possible to reset all styles, either to get default styling, or to ensure that styles are reset, using the raw modifier:

pyfancy().raw("You walk into a ").red().bold("DANGEROUS").raw(" room.").output()

Parsing is a simple, shorter and faster way to use Pyfancy 2. Instead of:

pyfancy().red("Hello").blue(" world!").output()

You can do this:

pyfancy("{red Hello {blue world!}}").output()

For parsing you can also import from a text file:

pyfancy().open("import.txt").output()

In order to use pyfancy, import the module with from pyfancy.pyfancy import pyfancy.

Types of effects

Text EffectBackground
boldn/a
dimn/aLight/Dark
underlinedn/an/a
blinkingn/an/a
blackblack_bgn/a
redred_bgdark_red
greengreen_bgdark_green
yellowyellow_bgdark_yellow
blueblue_bgdark_blue
magentan/adark_magenta
cyann/adark_cyan
n/agray_bglight_gray
whiten/an/a
rainbown/an/a
multin/an/a
n/adark_gray_bgdark_gray
n/alight_red_bglight_red
n/alight_green_bglight_green
n/alight_yellow_bglight_yellow
n/alight_blue_bglight_blue
n/alight_purple_bglight_purple
n/alight_cyan_bglight_cyan
n/awhite_bgwhite

License

Pyfancy-2 is under the MIT license.

FOSSA Status Large Badge

Contributors

Note: Because v2 was made in a fork the contribution graph does not truely reflect the contributions made by the bellow contributers.

Project by CosmicWebServices

TheMonsterFromTheDeep

joker314

baranskistad

jonathan50

rogersouza

vutondesign

cruxicheiros

hiccup01

Kristinita

About

Simple terminal formatting in Python!

Topics

Resources

Code of conduct

Contributing

Stars

31 stars

Watchers

5 watching

Forks

Releases

Packages

Used by

Contributors

Languages