Metadata-Version: 2.1
Name: banner_hahahellooo
Version: 0.2.4
Summary: Banner Output Program
Author-email: hahahellooo <hahahello777@gmail.com>
License: MIT
Project-URL: Homepage, http://github.com/hahahellooo/banner_hahahellooo
Project-URL: Issues, http://github.com/hahahellooo/banner_hahahellooo/issues
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pyfiglet>=1.0.2

# banner_hahahellooo


# **pyfiglet**

```
    __          __          __         ____
   / /_  ____ _/ /_  ____ _/ /_  ___  / / /___  ____  ____
  / __ \/ __ `/ __ \/ __ `/ __ \/ _ \/ / / __ \/ __ \/ __ \
 / / / / /_/ / / / / /_/ / / / /  __/ / / /_/ / /_/ / /_/ /
/_/ /_/\__,_/_/ /_/\__,_/_/ /_/\___/_/_/\____/\____/\____/

```

## **Synopsis**

pyfiglet is a full port of FIGlet (http://www.figlet.org/) into pure
python. It takes ASCII text and renders it in ASCII art fonts (like
the title above, which is the 'block' font).


## **Usage**

You can use pyfiglet in one of two ways. First, it operates on the
commandline as C figlet does and supports most of the same options.
Run with `--help` to see a full list of tweaks.  Mostly you will only
use `-f` to change the font. It defaults to standard.flf.

`tools/pyfiglet 'text to render'`

### Pyfiglet is also a library that can be used in python code:

```py
from pyfiglet import Figlet
f = Figlet(font='slant')
print(f.renderText('hahahellooo'))
```

or

```py
import pyfiglet
f = pyfiglet.figlet_format("hahahellooo", font="slant")
print(f)
```
If you have found some new fonts that you want to use, you can use the
command line interface to install your font file as follows:

`pyfiglet -L <font file>`

The font file can be a ZIP file of lots of fonts or just a single font.
Depending on how you installed pyfiglet, you may find that you need
root access to install the font - e.g. `sudo pyfiglet -L <font file>`.
