Skip to main content

Dev Tools is a collection of utility tools for Python developers, designed to simplify debugging, logging, and monitoring tasks. This package includes custom logging handlers, decorators for measuring execution time, and a progress bar utility to enhance the development workflow.

Project description

Bosos Dev Tools

Bosos Dev Tools is a collection of utility tools for Python developers, designed to simplify debugging, logging, and monitoring tasks. This package includes custom logging handlers, decorators for measuring execution time, and a progress bar utility to enhance the development workflow.

Features

  • Custom Logging Handlers: Log messages to various destinations, including databases, with customizable formats.
  • Timing Decorators: Easily measure the execution time of your functions with minimal code changes.
  • Progress Bar Utility: Visualize the progress of long-running operations in the console.
  • Debug Tools: Check if debug or timing modes are enabled via environment variables.

Installation

You can install the package via pip:

pip install bosos-dev-tools

Usage

Custom Logging Handler

The LogDBHandler allows you to log messages directly to a database.

import logging
from dev_tools.custom_handlers import LogDBHandler

logger = logging.getLogger('test_logger')
db_handler = LogDBHandler(db_table='test_table')
logger.addHandler(db_handler)
logger.setLevel(logging.INFO)

logger.info('This is a test log message.')

Timing Decorator

Use the timing_decorator to measure the execution time of functions.

from dev_tools.custom_decorators import timing_decorator

@timing_decorator
def example_function():
    for i in range(1000000):
        pass

example_function()

Progress Bar

Use the progress_bar to measure the execution time of functions.

from dev_tools.progress_bar import progress_bar

for item in progress_bar(range(10)):
    pass

Debug Tools

Check if debug or timing modes are enabled via environment variables. Use the logger_setup to set up your logging settings at the beginning of the script.

from dev_tools.debug_tools import is_debug_on, is_timing_on

print('Is debug on:', is_debug_on())
print('Is timing on:', is_timing_on())
from dev_tools.debug_tools import logger_setup

def main():
    logger_setup()

if __name__ == '__main__':
    main()

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Links

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

bosos_dev_tools-0.0.2.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

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

bosos_dev_tools-0.0.2-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file bosos_dev_tools-0.0.2.tar.gz.

File metadata

  • Download URL: bosos_dev_tools-0.0.2.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.1

File hashes

Hashes for bosos_dev_tools-0.0.2.tar.gz
Algorithm Hash digest
SHA256 52b28a8fa193716f037d9ed902237860b6232b31cf217117cac85447ad107fd9
MD5 0893b7cb670ae992b7a4e703e464011a
BLAKE2b-256 8c40bb93b648fca4ce8446b2e31b82f81f065c3999f904000f88fbc3e1d506c3

See more details on using hashes here.

File details

Details for the file bosos_dev_tools-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for bosos_dev_tools-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 57eae128b30699903d6de94c054ed38a54560a3c942ab56675e9653f9175a22c
MD5 627a1db0d7e89ea6d3898377fa8cd054
BLAKE2b-256 95076d521ffa9c95d255badc3cf26b92dc176c57022a8d991afd1641c0a098e7

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