Skip to main content

Get nicely formated exception details

Project description

exception_details

Get nicely formated exception details.

Content

  • Installation

  • Usage

Installation

pip install exception-details

Usage

  • print_exception_details(exception: Exception)

    Print the exception details.

    Usage:

      `try: ...`  
    
      `except Exception as e: print_exception_details(e)`  
    

    Contains:

    • function name

    • filepath

    • line

    • code snippet

    • species of the exception

    • message

    Args:

      exception (Exception): Your Exception
    
  • get_exception_details_dict(exception: Exception)

    Get the exception details as a dictionary.

    Usage:

      `try: ... `  
    
      `except Exception as e: details = get_exception_details_dict(e)`  
    

    Contains:

    • 'function' -> function name

    • 'path' -> filepath

    • 'line' -> line

    • 'code' -> code snippet

    • 'species' -> species of the exception

    • 'message' -> message

    Args:

      exception (Exception): Your Exception
    

    Returns:

      dict: Exception details as a dictionary with the keys: "function", "path", "line", "code", "species", "message"
    
  • get_exception_details_str(exception: Exception, colored=True)

    Print the exception details.

    Usage:

      `try: ... `  
    
      `except Exception as e: details = get_exception_details_str(e)`  
    

    Contains:

    • function name

    • filepath

    • line

    • code snippet

    • species of the exception

    • message

    Args:

      exception (Exception): Your Exception
    
      colored (boolean): The string has coloreds parts if True.
    

    Returns:

      str: Exception details as a string."
    

Links

GitHub | PyPI

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

exception_details-0.0.2.tar.gz (22.8 kB view hashes)

Uploaded Source

Built Distribution

exception_details-0.0.2-py3-none-any.whl (4.9 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