Metadata-Version: 2.4
Name: jaime38130
Version: 1.2
Summary: A simple Python library to print colored text in the terminal using ANSI escape codes.
Home-page: https://github.com/JaimeSilva/jaime38130.git
Download-URL: https://github.com/JaimeSilva/jaime38130/archive/refs/tags/v_11.tar.gz
Author: Jaime Silva
Author-email: jaimedcsilva@hotmail.com
License: MIT
Keywords: python,terminal,colors,ansi,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: colorama
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary


![](https://www.jaimedcsilva.com/static/img/python.png)
# jaime38130 


A simple Python library to print colored text in the terminal using ANSI escape codes.

> Lightweight, easy to use, and perfect for CLI tools, scripts, and debugging output.

---

## Installation

```bash
pip install jaime38130
```

---

## Import

```python
from jaime38130 import *
```

---

## Examples

### Basic

```python
green("I needed color")
```

![](https://www.jaimedcsilva.com/static/img/jaime38130/standard.png)

---

### Header style

```python
green("I needed color", "header")
```

![](https://www.jaimedcsilva.com/static/img/jaime38130/header.png)

---

### Bottom spacing

```python
green("I needed color", "*")
```

![](https://www.jaimedcsilva.com/static/img/jaime38130/bottom.png)

---

### Top & bottom spacing

```python
green("I needed color", "**")
```

![](https://www.jaimedcsilva.com/static/img/jaime38130/top_bottom.png)

---

## Available colors

```python
green()
white()
black()
cyan()
magenta()
red()
blue()
yellow()
```

---

## Bonus

```python
hidden_secret()
```

---

## About

This package was created to make terminal output more readable and visually structured in Python scripts and console applications.
