Socket
Book a DemoInstallSign in
Socket

t-bug-catcher

Package Overview
Maintainers
1
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Source code not available
We could not scan this package. Some page functionalities have been disabled

t-bug-catcher

Bug catcher

pipPyPI
Metadata Only
Version
0.6.11
Maintainers
1

t-bug-catcher

Description

The t-bug-catcher package is a bug reporting tool that allows users to easily submit bug reports for the application.

Installation

You can install the t-bug-catcher package using pip:

.. code-block:: bash

pip install t-bug-catcher

Usage

To use the bug catcher in your application, import the package and initialize it:

.. code-block:: python

from t_bug_catcher import report_error
...
try:
    ...
except Exception:
    report_error()

Configuration

You can configure the bug catcher by passing options during initialization:

.. code-block:: python

from t_bug_catcher import configure
...
configure.jira(
    login="JIRA_LOGIN",
    api_token="JIRA_API_TOKEN",
    project_key="PROJECT_NAME",
)
configure.bugsnag(
    api_token="BUGSNAG_API_TOKEN",
)

Keywords

t_bug_catcher

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts