Skip to main content

Custom messages for errors

Project description

error-explainer

This is a project aimed at tool developers who want to create custom error checks provide better messages with improved location, accuracy and message quality for different errors in Python.

Some checks for syntax errors are provided out of the box.

Currently available checks can be found in error-explainer/messages.py

Installation

To install this package use pip install error-explainer

Usage

Check a Python file for possible errors

from error_explainer.check_runner import run_checks

messages = run_checks("path/to/file")

Messages will be a list of strings containing the generated messages.

Add a new custom check

Custom checks can be added to the list of checks ran while calling run_checks(). To add a new check use @add_check(force: bool, level=99) annotation. Force parameter defines if the check is ran only if the code does not compile (False) or always (True) Checks are also run in multiple levels from 0 to 99. Current layers are the following:

  • 0 - docstring errors, quote errors
  • 1 - miss match bracket errors, missing bracket errors, python 2 style print usage error
  • 2 - invalid function definition errors
  • 3 - missing colon errors, invalid assignment errors
  • 99 - indentation errors, coma used instead of a period in an assignment error
from error_explainer.check_runner import add_check, add_message

@add_check(False)
def custom_check(filename):
    # code for the check  
    if error_in_file:
        # To add a message to the list of messages returned when calling run_checks() use 
        add_message("code_for_the_message", argument1="foo", argument2="bar")
        # Custom arguments can be used in the message text to make messages more dynamic

Manage messages

Messages used in checks can be:

added

from error_explainer.messages import create_message

# message text can contain arguments in curly brackets these can be later given values using kwargs
create_message("code_for_the_message", "Message text with {dynamic_arguments}")

removed

from error_explainer.messages import remove_message

remove_message("code_for_the_message")

overwritten

from error_explainer.messages import overwrite_message

overwrite_message("code_for_the_message", "Message text with {dynamic_arguments}")

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

error-explainer-0.14.tar.gz (23.1 kB view details)

Uploaded Source

Built Distribution

error_explainer-0.14-py3.6.egg (44.0 kB view details)

Uploaded Source

File details

Details for the file error-explainer-0.14.tar.gz.

File metadata

  • Download URL: error-explainer-0.14.tar.gz
  • Upload date:
  • Size: 23.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.9

File hashes

Hashes for error-explainer-0.14.tar.gz
Algorithm Hash digest
SHA256 8e256c7ecb245ad20d310e7e6552c982d23346525bcecf9af9a48c7f7b236b23
MD5 a40ee59e033408d83e26d4a10aa83d8a
BLAKE2b-256 0c48e2643a95366038dd9a9c9fec78c940c80d8e50e9e0344068f1df71750a6d

See more details on using hashes here.

File details

Details for the file error_explainer-0.14-py3.6.egg.

File metadata

  • Download URL: error_explainer-0.14-py3.6.egg
  • Upload date:
  • Size: 44.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.9

File hashes

Hashes for error_explainer-0.14-py3.6.egg
Algorithm Hash digest
SHA256 54ed9cf9afbcdc4a72f08421e33d5d783eaedf341fe00bb49650967672e2e607
MD5 71403e00611990f7052adb818ee73506
BLAKE2b-256 7ccea50f3f36930e9e2c5265ca63321023b31446fc23cf29801d8d58e4ae1cf5

See more details on using hashes here.

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