Skip to main content

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 printing decides 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bojan-0.0.20.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bojan-0.0.20-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file bojan-0.0.20.tar.gz.

File metadata

  • Download URL: bojan-0.0.20.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for bojan-0.0.20.tar.gz
Algorithm Hash digest
SHA256 20884c2929b899ab85e5fada2279b204a2790b9c0cbbc1fefb8f60252a352ee2
MD5 1e56b0a67f3aa252b47fd192c9914230
BLAKE2b-256 fab4c1cc3a5b02d7ef35550ab62071c64a25a6925465f21fa57f2f0346d10997

See more details on using hashes here.

File details

Details for the file bojan-0.0.20-py3-none-any.whl.

File metadata

  • Download URL: bojan-0.0.20-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for bojan-0.0.20-py3-none-any.whl
Algorithm Hash digest
SHA256 a0df0da3d77ad72180d347f8b477ac40f26ae59e80f57a1e4b8daa7c327c841d
MD5 9845f35b98d1202c46a042a345d88ff0
BLAKE2b-256 dcf0ee206007a9315d2bfa936d11dfd7a94832e526ff1fa6f9de917692e04408

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page