An open API service indexing awesome lists of open source software.

https://github.com/nitanmarcel/fancy_text

A python library to generate fancy text
https://github.com/nitanmarcel/fancy_text

Last synced: about 1 month ago
JSON representation

A python library to generate fancy text

Awesome Lists containing this project

README

        

# Instalation:

Stable from pip:
```
pip install fancy_text
```

From development branch [beta]
```
git pull https://github.com/nitanmarcel/fancy_text -b development

pip install -e fancy_text/

```

# Usage:

```
>>> from fancy_text import fancy

>>> text = 'This is so fancy'

>>> print(fancy.light(text))
𝔗π”₯𝔦𝔰 𝔦𝔰 𝔰𝔬 π”£π”žπ”«π” π”Ά

>>> print(fancy.bold(text))
π•Ώπ–π–Žπ–˜ π–Žπ–˜ π–˜π–” π–‹π–†π–“π–ˆπ–ž

>>> print(fancy.box(text))
πŸ†ƒπŸ…·πŸ…ΈπŸ†‚ πŸ…ΈπŸ†‚ πŸ†‚πŸ…Ύ πŸ…΅πŸ…°πŸ…½πŸ…²πŸ†ˆ

>>> print(fancy.sorcerer(text))
ΘΆΙ¦Ι¨Φ† Ι¨Φ† Φ†Φ… Κ„ΗŸΥΌΖˆΚ

```