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
- Host: GitHub
- URL: https://github.com/nitanmarcel/fancy_text
- Owner: nitanmarcel
- Created: 2018-07-29T15:42:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-12T15:18:51.000Z (about 6 years ago)
- Last Synced: 2025-05-08T22:17:59.413Z (about 1 month ago)
- Language: Python
- Size: 3.91 KB
- Stars: 6
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 developmentpip 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))
ΘΆΙ¦Ι¨Φ Ι¨Φ ΦΦ ΚΗΥΌΖΚ```