Skip to main content

No project description provided

Project description

Description

exgurd provides a decorator to guard a function or method against exceptions. This is useful in situations where untrusted code is executed, e.g. when executing a third-party module in a framework.

In comparison to the suppress context manager from Python 3, exguard provides more means to control exception handling:

  • filter on modules and namespaces to define which exceptions to catch and leave exceptions in other code untouched

  • execute a callback function once an exception was caught

  • execute a callback function in the finally block

For example, an API method in a web application that calls through to code in third-party modules can be guarded against exceptions in this modules only, while having exceptions in the framework itself be raised verbatim:

from exguard import guard, traceback_str

def throw_to_client(exception, module):
    tb = traceback_str(exception)

    # Do something to pass a traceback to the browser, disable the plugin,…
    pass

# All third-party modules are under one namespace
@guard(modules=["myframework.plugins"], submodules=True, fullstack=True, cb_except=throw_to_client)
def call_plugin_api():
    # An exception inside this will be caught
    myframework.plugins.evil.crash()

    # This will still raise an exception like normal
    x = 17 / 0

Authors

exguard has been started as a part of Veripeditus, mainly by Eike Tim Jesinghaus <eike@naturalnet.de>.

Changelog

0.2.1

  • Guard against <string> or other non-module frames.

0.2

  • Add utility function to get full traceback as string.

  • Re-licence under MIT.

  • Minor documentation updates.

0.1

  • First release.

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

exguard-0.2.1.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

exguard-0.2.1-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file exguard-0.2.1.tar.gz.

File metadata

  • Download URL: exguard-0.2.1.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for exguard-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e4b06870a9791fb4a8d7f84af2aef54eb3383251d1ef79e0a019ebe277d2c015
MD5 c18aec2442931e4f2cf660dfde1dc8f2
BLAKE2b-256 457f777821ee51265f83e157f9f0aca4792024c645811ee70142b48f47435e43

See more details on using hashes here.

File details

Details for the file exguard-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for exguard-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b955add660111f120ceb0e7b113539d82e5a9823d28b657929efc98a668971b5
MD5 a6cabf17679ed8542d4bcdf2ffd67738
BLAKE2b-256 f10a11208767200ebe041a41770b76d0b0d929717c88349552cb72d868096113

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