Skip to main content

Represent type-checked specifications as Python classes and incrementally build them.

Project description

Spec Classes Logo

PyPI - Version Conda Forge - Version PyPI - Python Version PyPI - Status build codecov Code Style

Introduction

spec_classes is a stand-alone (but largely interoperable) generalization of the standard library's dataclass decorator. It adds, among other things: type-checking, rich field preparation, and convenient copy-on-write mutation wrappers. Spec-class definitions are Pythonic, simple, and concise.

This library is especially useful in contexts where run-time validation and instant feedback is desirable, and/or where correctness is valued over performance. With that said, we do try to keep spec-classes performant (see performance details).

Philosophy

It should be hard for users to do the wrong thing. spec_classes is designed to help end-users interact with, mutate, and assemble (especially in ad hoc contexts like notebooks) potentially large libraries of data classes without fear of breaking things. Operations on data classes should be atomic (operations should never be partially committed), validated (types should match, etc.), and provide instant helpful feedback when the user makes a mistake.

We don't own your class. spec_classes never overrides local pre-existing methods, and doesn't add any metaclasses or parents. If you decorate a class with @spec_class, spec classes will add (if you have not already) some dunder magic methods (like __init__,__setattr__, etc.), and some helper methods... but that's it. Spec classes are, at the end of the day, just regular classes pre-loaded with useful methods that you didn't have to write yourself.

Copy-on-write by default. One of the dangers with using class instances as specification is that if they are mutated in one context, they are mutated for all contexts. Spec classes does not prevent (by default) local mutations of class instances (you can still do my_spec.foo = 'bar'); but all helper methods return a mutated copy by default. For example, my_spec.with_foo('bar') will not be the same instance as my_spec, and so these methods are always safe to use.

Be consistent. All helper methods added by spec_classes exist within well defined namespaces; that is: with_<attr>, transform_<attr>, etc.; and each class of methods has the same naming conventions for arguments and provides complete inline documentation. This makes it easy for users to figure out how to use the methods, to override these methods and/or to add new methods that do not collide.

Minimize Surprise. The behavior of spec classes almost always matches that of base Python classes where functionality overlaps, and should always be intuitive otherwise (e.g. when type-checking is violated).

Performance is important. Although performance is not the primary goal of spec_classes, given the targeted feature-set, the overhead introduced should be as small as possible.

Example

from spec_classes import spec_class

@spec_class
class Rectangle:
    width: float
    height: float
    color: str

    @property
    def area(self):
        return self.width * self.height

rect = Rectangle()
rect  # Rectangle(width=MISSING, height=MISSING, color=MISSING)
rect.update(width=10., height=12.).with_color("red")  # Rectangle(width=10.0, height=12.0, color='red')

Rectangle(width=10., height=10.).area  # 100.0

rect.with_width('invalid')  # TypeError: Attempt to set `Rectangle.width` with an invalid type [got `'invalid'`; expecting `float`].

For more details on usage, refer to the documentation.

Installation

Spec classes can be installed via pip or conda.

To install via pip you can use:

pip install spec-classes

To install via conda you can use:

conda install spec-classes

You can verify that the installation was successful by printing the version of spec-classes that was installed:

python -c "import spec_classes; print(spec_classes.__version__)"

Related projects and prior art

spec_classes takes a more opinionated stance than most libraries in this space on exactly how data-classes should be built and mutated. Nevertheless, there are excellent pre-existing alternatives to spec-classes for those looking for something lighter-weight. In particular, you could consider:

  • typeguard: A utility library for run-time type-checking functions, methods and classes.
  • pytypes: Another utility library for run-time type-checking functions, methods and classes.
  • pydantic: A light-weight data parsing and validation library that also uses type hints.
  • attrs: A library that provides a super-set of the functionality of Python's data-class, but still adds no run-time overhead (no type-checking, extra helper-methods, etc).

There are many other libraries in the business of mapping and validating transformations from JSON to Python classes, but these are somewhat orthogonal to the aims of this project (which is to make Python classes themselves pleasant to use), and so they are not included here.

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

spec_classes-1.5.1.tar.gz (316.0 kB view details)

Uploaded Source

Built Distribution

spec_classes-1.5.1-py3-none-any.whl (65.0 kB view details)

Uploaded Python 3

File details

Details for the file spec_classes-1.5.1.tar.gz.

File metadata

  • Download URL: spec_classes-1.5.1.tar.gz
  • Upload date:
  • Size: 316.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.1

File hashes

Hashes for spec_classes-1.5.1.tar.gz
Algorithm Hash digest
SHA256 3e9fa57e9e11c94196d64a34b194d3c463e7499a75a888f9d55012403aa9e5d4
MD5 9570886cda35a3877031a00325b9ea1d
BLAKE2b-256 4bdea0e3199d7af24e4cf481d47e8051aa26ade6ed084a6b9d0c7a2989d27d01

See more details on using hashes here.

File details

Details for the file spec_classes-1.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for spec_classes-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f789aea56819ce6219d98ad717c556eed578e5fd2bfaef3a254a2280c70834c8
MD5 a51f63b9c28e5e138c1a8e07d1f1cbc8
BLAKE2b-256 38fab87477d9e2b1257b5ca957260ec8c003b0c79e206be8c4cec1b0a9addde9

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