Skip to main content

Logging library for the impatient

Project description

Notiblocks

Quick and easy customizable terminal logs for your application.

Table of Contents

Introduction

Welcome to Notiblocks, a versatile Python library designed to enhance terminal logging with customizable and intuitive features.

What is Notiblocks?

Notiblocks is more than just a logging library; it's a powerful tool that simplifies and elevates your terminal logging experience. It offers a user-friendly interface for creating custom, eye-catching logs, allowing developers to seamlessly integrate informative and visually appealing messages into their applications.

Why Notiblocks?

  • Simplicity: With Notiblocks, logging becomes effortless. Its intuitive design makes it easy to craft customized terminal logs without complex configurations.

  • Customization: Tailor your logs to suit your application's needs. Notiblocks offers a wide range of styling options, allowing you to create logs that stand out.

  • Versatility: Whether you're working on a small script or a large-scale project, Notiblocks scales to meet your logging requirements.

Features

  • Customizable log styles and colors
  • Easy integration into existing projects
  • Make your own logging templates and reuse them whenever you want to
  • Inline formatting, so you could add anything you want in the logs
  • Low resource usage

Installation

Install notiblocks trough pip

pip install notiblocks

And just import the module into your application

import notiblocks

Usage

Notiblocks uses NBConfig and NBHandler objects, which let you customize your logs by your needs. You can access them trough the module.

  • NBConfig: Holds the information about how your logs will look. You can override the information trough the constructor, or through the setters. For further explanation check the docs.
  • NBHandler: Wrapper class for the NBConfig, which provides the main functionalities as success, fail, warn and log. For further information check the docs.

Example:

from notiblocks import NBConfig, NBHandler
    
nb_conf = NBConfig(
    success_sign_color="blue",
    time_sign_color="GrEEn",
    success_sign="SUCCESS",
    success_bracket_color="cyan",
    time_sign_stamp="DATE",
    bracket_style="round     ",
    warn_bracket_sign="square"
)

nb_handler = NBHandler(nb_conf)

print(nb_handler.success("Notiblocks is cool."))
print(nb_handler.fail("Notiblocks is still not in a finished state..."))
print(nb_handler.warn("You haven't smiled enough today :)"))
print(nb_handler.log("User {} accessed this page", page.user))

Contributing

We welcome contributions from the community to help improve Notiblocks. If you'd like to contribute, please follow these guidelines:

  • Fork the repository and clone it to your local machine.
  • Create a new branch for your feature or bug fix: git checkout -b feature/my-feature or git checkout -b bugfix/issue-123.
  • Make your changes and test thoroughly.
  • Commit your changes with descriptive commit messages: git commit -m "Brief description of your changes".
  • Push to your branch: git push origin feature/my-feature.
  • Open a pull request to the main branch and provide a detailed description of your changes.
  • We appreciate your contributions, whether they're bug fixes, documentation improvements, or new features!

License

Notiblocks is licensed under the MIT License, check LICENSE for more information.

Join us on the journey to transform your terminal logging experience with Notiblocks!

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

notiblocks-0.0.2.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

notiblocks-0.0.2-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

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