Skip to main content

Support for requirements-assisted development

Project description

Decorate an instance method with pre- and/or postconditions that must be fulfilled

Example usage

from requiresthat import requires, RequirementNotFulfilledError, APRIORI, POSTMORTEM, BEFOREANDAFTER

class C:

    def __init__(self, data=None):
        self.data = data

    @requires(that='self.data is not None')
    @requires(that='self.data == "spam"', when=APRIORI)
    @requires(that='True is not False')
    @requires(that='self.data != "spam"', when=POSTMORTEM)
    @requires(that='len(self.data) >= 3', when=BEFOREANDAFTER)
    def method(self):
        self.data = 'ham'

X = C(data='spam')
X.method()

See the tests for more.

The that can be almost any valid Python statement which can be evaluated and whose veracity can be asserted, and the result thereof will decide whether or not the method fires/will be considered a success. Then details should be observed here.

The parameter when decides if the condition is a-priori, post-mortem, or before-and-after. The default is a-priori, meaning a precondition. Note that before-and-after does not mean during; you cannot mandate an invariant this way!

RequirementNotFulfilledError is the exception you have to deal with in case a condition is not met. NoCallableConstructError gets raised should you apply the decorator to a construct that is not callable. Both of these derive from the base class RequirementError.

Installation

Currently, use pip with test PyPi:

pip install --index-url=https://test.pypi.org/simple/ requiresthat

If you want to cook it on your own, do this:

git clone git@gitlab.com:bedhanger/mwe.git
cd mwe/python/requiresthat
python -m build
pip install .

It is recommended to carry out the build and install steps in a venv.

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

requiresthat-2025.6.23.1.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

requiresthat-2025.6.23.1-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file requiresthat-2025.6.23.1.tar.gz.

File metadata

  • Download URL: requiresthat-2025.6.23.1.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for requiresthat-2025.6.23.1.tar.gz
Algorithm Hash digest
SHA256 bbc6417d8129c0176f0538ad825b8c0b90f6a88123f693453363ccf58c39db14
MD5 a545f0028551383a6cce95516360a7a0
BLAKE2b-256 d8b315c6f84357e183017d953a1676d420326784cb88a6f283552bbf721207cb

See more details on using hashes here.

File details

Details for the file requiresthat-2025.6.23.1-py3-none-any.whl.

File metadata

File hashes

Hashes for requiresthat-2025.6.23.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a710bfb5eea4a03e8209e909aba3d145c8ab76ba3e8fa8c934b10bab281768c9
MD5 f35b4e98b77b50f3d200075435a42bad
BLAKE2b-256 13ba33b74615dfbaa6c1a5525aa845c9cc64b71dc0e72d3661d505d8f0f2d518

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page