Metadata-Version: 2.1
Name: primebit
Version: 0.2.1
Summary: a python package that gives users the ability to console log things in a clean way.
Author: Tahfari Chin
Author-email: ayotahfarinyc@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

<img align=center src="https://cdn.gilcdn.com/ContentMediaGenericFiles/22a855f05076674b73d0552252f44f0a-Full.webp?w=1500&h=500&Expires=1720845140&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4uZ2lsY2RuLmNvbS8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzIwODQ1MTQwfX19XX0_&Signature=R9uK2qkuIcTF9lIbvRag7iorUHTp1mDfFpjyY1B68ec74IvQspx5fyvRPbPHbhvlnWnbksS%7EP24ALzAY3l83ZINlIL7gmE28FT6QfEc9uKYrE5nC5kQQ53XIuj86QxBW0AG0BTqoAd1UZyKgzspbiK-QFAGuBgPiBmCZp0pH5QVeXXyw1uHa5ER8VlE79aAhsjJVNHutEm%7E1-OOaCjlPD97diBfI1wkIcGKf6we1baB7wbJ9jMmUVpEd7TwADkAf5j1NpwvvzSFLY1pwvHGZzQIBfUDgJ36lwHOa6R0cbaB6SWdbG56Wn88sVDfdK7NFL%7E9a0Uc2U6fN6EBinfvXJg__&Key-Pair-Id=K1FFKFZRWAZSB">

# Introduction
What is primebit? **primebit.js** is a python package that gives users the ability, to log things in a clean way!


# `✨` Types
You can use up to 4 different log types, which are `log (default)`, `error`, `warning`, and `success`


# `⬇️` Installation

To install primebit You can do the following:

```js
pip install primebit
```

# `👀` Implentation

After you've installed primebit, you can add your text, and implement the logging types like this:

```js
p.log("Hello world!")
```

# `⚙️` Options
By default, the text doesnt have a color to it, to fill the color in, you can use the `options` property to fill the text color like this:

```py

p.log("Hello World!", options={
    "filled": True
})
```

And after that, your good to go!

