Skip to main content

Utilities and standardizations for UNCO

Project description

BearLib

What is BearLib?

BearLib is a library of utilities and standardizations used for writing Python code for UNCO applications and scripts.

Modules

logging

A module for logging both locally (file and console), as well as remote webhooks (Teams, Discord, Slack, etc)

logging.core

The core logging functionality. Contains the default file + console code, as well as the ability to load webhooks.

logging.webhooks

All officially supported webhooks, as well as the Webhooks superclass

Officially supported webhooks
  • Discord
  • Teams
  • Slack

notifiers

Handlers for sending (non-logging) notifications out to various services

notifiers.email

SMTP Email support for notifications

oracle

A module for utilities to be used with Oracle SQL databases

oracle.factories

Some extra cursor rowfactories for returning different types of data besides lists

Usage

Basic usage with Teams webhook

from bearlib.logging import core, webhooks

_logger = core.Logger(level="WARNING", echo=True, write=False)

teams = webhooks.Teams(
    hook_url="<Teams webhook URL>",
    summary="Example Teams Webhook",
    notify_only=False, # Set to true for no data to be sent
    subtitle="Example usage",
)

_logger.add_webhook(teams)

_logger.log("WARNING", "Something non-critical happened")

_logger.change_level("DEBUG")
_logger.log("DEBUG", "Debugging enabled")

_logger.close_log()

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

bearlib-py-0.3.2.tar.gz (7.2 kB view hashes)

Uploaded Source

Built Distribution

bearlib_py-0.3.2-py3-none-any.whl (20.0 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