Skip to main content

Create temporary pkg_resources entry points at runtime.

Project description

CI Status Documentation Status PyPI - Status

A Python library to temporarily define pkg_resources entry points at runtime. The primary use case is testing code which works with entry points.

Installing

$ pip install prybar

prybar requires Python 3.6 or greater.

Usage

>>> import prybar
>>> from pkg_resources import iter_entry_points
>>> # Entry point doesn't exist
>>> list(iter_entry_points('example.hash_types', 'sha256'))
[]
>>> # With prybar's context manager we can create entry points temporarily
>>> with prybar.dynamic_entrypoint('example.hash_types',
...                                name='sha256', module='hashlib'):
...     hash = next(iter_entry_points('example.hash_types', 'sha256')).load()
...     hash(b'foo').hexdigest()[:6]
'2c26b4'
>>> # And it's gone again
>>> list(iter_entry_points('example.hash_types', 'sha256'))
[]

See the full documentation for more.

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

prybar-1.0.0.tar.gz (12.7 kB view hashes)

Uploaded Source

Built Distribution

prybar-1.0.0-py2.py3-none-any.whl (15.6 kB view hashes)

Uploaded Python 2 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