Metadata-Version: 2.4
Name: t8386
Version: 0.1.0
Summary: A Python package for managing blockchain accounts and interactions with REST APIs.
Home-page: https://github.com/yourusername/t8386
Author: t8386
Author-email: t8386 <dinhty.luu@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/t8386
Project-URL: Bug Tracker, https://github.com/yourusername/t8386/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Logging
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama>=0.4.4
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# t8386

A simple Python logger class with colored output and timestamps.

## Installation

```bash
pip install t8386

from t8386 import Logger

# Basic logging
Logger.log_info("This is an info message")
Logger.log_error("This is an error message")
Logger.log_success("This is a success message")
Logger.log_warning("This is a warning message")
Logger.log_debug("This is a debug message")
Logger.log("This is a generic message")
Logger.log_hana("This is a HANA style message")
