Run custom checks on classes attributes when accessing them
Project description
readycheck
Python package providing utilities to check classes attributes when accessing it.
Installation
Use the package manager pip to install readycheck:
pip install readycheck
Dependencies
- Python ≥ 3.5
Goal
The goal of this module is to allow to add custom checks when accessing class attributes.
It is designed to build classes that store objects not available at import time (e.g. later fetched from a distant service). It avoid us the pain to check if the connection has been established each time we need these objects: trying to access them will automagically raise an exception if they are not ready.
Usage
This package's main external API in the ReadyCheck class.
This class is not meant to be instantiated (see documentation for details), but to be subclassed using a custom check function:
from readycheck import ReadyCheck
class User(ReadyCheck, check_type=dict, check=lambda val: "name" in val):
john = {"id": "<john_id>", "area": 2}
jane = {"id": "<jane_id>", "area": 5}
Usage:
>>> User.john
Traceback (most recent call last):
...
readycheck.NotReadyError: 'john' is not ready yet!
>>> john_data = User.get_raw("john")
>>> User.john = some_lib.load_user(john_data)
>>> User.john
{'id': '<john id>', 'area': 2, 'name': 'John Doe', 'subscribed': False}
Read the docs for more information.
Contributing
Pull requests are welcome. Do not hesitate to get in touch with me (see below) for any question or suggestion about this project!
License
This work is shared under the MIT license.
© 2022 Loïc Simon (loic.simon@espci.org)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file readycheck-1.0.1.tar.gz.
File metadata
- Download URL: readycheck-1.0.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a2c4aeb7a6f14a99e79698fbe218694d507b27faa623c4bfdc0fad722c2ffa0
|
|
| MD5 |
40f217ae29dc770a3c175620abd8cd47
|
|
| BLAKE2b-256 |
3b376cb3d94f4f0ad5c820ffecc148b53d5d7baf0a71a3cac42cb9af1b6a3c6f
|
File details
Details for the file readycheck-1.0.1-py3-none-any.whl.
File metadata
- Download URL: readycheck-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
812e903f48d6127f1cb71219e74bfdcb72c17f75d381cb7f3c9d05e54ae62a92
|
|
| MD5 |
28fedcebb4ad01d99d248c53ebb10720
|
|
| BLAKE2b-256 |
2611c30bf55d39c034fc36cd946bef812cf78aa146e9c329bfd95210c9fa573b
|