Metadata-Version: 2.4
Name: cse_logger
Version: 1.0.1
Summary: A nonchalant, aesthetic logger, made by CSE development.
Home-page: https://discord.gg/cse
Author: @ryze.xzy | @ryugabalwani
Project-URL: Source Code, https://github.com/snipe1337/cse_logger
Project-URL: Bug Tracker, https://github.com/snipe1337/cse_logger/issues
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: summary

# cse_logger 🌌

a nonchalant, highly aesthetic logger for python. no noise, just vibes.
made by the cse development team.

## installation

```bash
pip install cse_logger
```

## quick start

just import and use it. it comes with a built-in aesthetic ascii banner and clean, colorful log levels straight out of the box.

```python
import time
from cse_logger import Logger

if __name__ == "__main__":
    log = Logger(name="nexus")
    
    log.sys("initializing core routines")
    time.sleep(0.2)
    log.info("binding to local interface")
    time.sleep(0.1)
    log.trace("loaded module: astrodynamics")
    log.trace("loaded module: cybernetics")
    time.sleep(0.3)
    log.success("all systems nominal")
    log.warn("memory fragmentation detected, auto-defrag queued")
    time.sleep(0.1)
    log.error("unauthorized access attempt dropped")
    log.info("standing by.")
```

## log levels

- `log.sys()`: autonomous/system level events (magenta)
- `log.info()`: standard information (cyan)
- `log.success()`: successful operations (green)
- `log.warn()`: warnings (yellow)
- `log.error()`: errors (red)
- `log.trace()`: very subtle, barely there (dim gray)

## community

join us at [discord.gg/cse](https://discord.gg/cse).

created by **@ryze.xzy** | **@ryugabalwani**

---
[![Discord Presence](https://lanyard.cnrad.dev/api/1420036436505268244?theme=dark&bg=1a1a2e&borderRadius=10px&idleMessage=probably+cooking+something)](https://discord.com/users/1420036436505268244)
