Metadata-Version: 2.4
Name: ghostdebug
Version: 0.1.0
Summary: A simple backend debugger for python inspired by Unity's Debug system
Author: Nnaa4y
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ghostdebug

A simple backend debugger for Python inspired by Unity's Debug system

# installation
```bash
pip install ghostdebug
```
# Usage
First,import the Debug class:
```python
from ghostdebug import Debug
```
Create logs with different levels:
```python
Debug.Log("Number = 9",Debug.Info)
Debug.Log("Wrong input detected",Debug.Warn)
Debug.Log("An error detected",Debug.Error)
Debug.Log("Can't divide by zero",Debug.Error_Info)
```
Display all logs in console:
```python
Debug.Show(Debug.All)
```
Save logs into a file automatically named as log1.txt,log2.txt etc:
```python
Debug.Save_Log()
```
