A simple logging library
Project description
Bojan Library
BojanConsole is a Python library designed to enhance console logging with various message types and color-coded outputs.
Installation
To install Bojan simply run
pip install bojan
Syntax Highlight
A VS Code extension is available to highlight the .bojan and .bjn log files.
Usage
BojanConsole Class
Initialization
from bojan import BojanConsole
console = BojanConsole(printing=True)
Note that
printingdecides whether the instance will print to terminal or just store logs for later use.
Logging Messages
-
Info Message:
console.print("This is an info message.", identifier="🗣️", depth=0)
output:
🗣️ This is an info message. -
Debug Message:
console.debug("This is a debug message.")
output:
💬 This is a debug message. -
Error Message:
console.error("This is an error message.")
output:
❌ This is an error message. -
Success Message:
console.success("This is a success message.")
output:
✅ This is a success message. -
Warning Message:
console.warning("This is a warning message.")
output:
⚠️ This is a debug message.
Printing Dictionaries
sample_dict = {"key1": "value1", "key2": {"subkey1": "subvalue1"}}
console.dictionary(sample_dict)
output:
🏰 key1
🛖 value1
🛖 subkey1
🌲 subvalue 1
The emojis use following hierarchy: 🏰 🛖 🌲 🐦 🐛 🧬
Depth
The depth parameter of all logging functions determines how nested the message is by inserting a corresponding amount of tabs.
console.print("Message!", depth=0)
console.print("Nested message!", depth=1)
console.error("Nested error message!", depth=1)
output:
🕸️ Message!
🕸️ Nested message!
❌ Nested error message!
Saving Logs
console.save("logfile.bojan")
License
This project is licensed under the MIT License.
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bojan-0.0.14.tar.gz.
File metadata
- Download URL: bojan-0.0.14.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
329a57304692afccda38a47fc3728a6210601513b73f8ed1abaa28e71554988d
|
|
| MD5 |
011fa10bc295f29a7dd4136d382d8a0b
|
|
| BLAKE2b-256 |
e39cf02c752c9d4a9b1efcf75bb9c30b844c25c614e7eaac5a68cbe9859c2f4a
|
File details
Details for the file bojan-0.0.14-py3-none-any.whl.
File metadata
- Download URL: bojan-0.0.14-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc5531baf0dea48532c21537e6b1a0116e0dd65603a4cd72417379d9ca31e136
|
|
| MD5 |
8ef8ad767ad527eb5800717941c8a361
|
|
| BLAKE2b-256 |
4c0964e8b7bdb960fe5e9cc14306b8d3ce2149a3df0a4ca79a5ea0ecd7fabb6c
|