Skip to main content

Python Veil Objects

Project description

Veils

EO principles respected here Build Status codecov PyPI version

veils is a python implementation of a ruby veils package. Long story short, it provides convenient object decorators for data memoization.

Installation

pip install veils

Usage

from veils import veil

obj = veil(
    obj,
    methods={"__str__": "hello, world!", "foo": "42"}
)
str(obj)  # returns "hello, world!"
obj.foo()  # returns "42"

The methods __str__ and foo will return "Hello, world!" and "42" respectively until some other method is called and the veil is "pierced".

You can also use unpiercable decorator, which will never be pierced: a very good instrument for data memoization.

And it works the same way for asynchronous methods too

obj = veil(
    obj,
    async_methods={"foo": "42"}
)
await obj.foo()     # returns "42"

And also for properties

obj = veil(
    obj,
    props={"bar": "42"}
)

obj.bar     # equals "42"

This library also extends the original one with a caching decorator memo. Use it like this:

from veils import memo

obj = memo(
    obj,
    cacheable={"foo", "bar", "baz", "__str__"} 
    # 'cacheable' is a collection of methods (both regular and asynchronous) 
    # and properties to be cached
)

Advanced usage

The python implementations of veil is somewhat tricky due to the magic methods which are being accessed bypassing the __getattribute__ method. Therefore, this implementation, in this particular case, relies on metaclasses in order to define magic methods on the fly in the veil object so that they correspond to those defined in the object being wrapped.

veil and unpiercable are just shortcuts to VeilFactory(Veil).veil_of and VeilFactory(Unpiercable).veil_of.

In some advanced cases you may want a different list of magic methods to be transparent or proxied by a veil object. In oder to obtain such behavior you may create a custom veil factory like so: VeilFactory(Veil, proxied_dunders, naked_dunders). naked_dunders is a list of methods bypassing the veil. proxied_dunders is a list of methods to be veiled.

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

veils-0.2.1.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

veils-0.2.1-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: veils-0.2.1.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.7.1 Linux/4.15.0-1077-gcp

File hashes

Hashes for veils-0.2.1.tar.gz
Algorithm Hash digest
SHA256 8498d2cb625407663cc17354d238993526910943096a51d8fd9558d824d70f94
MD5 8725b823028fce06fe4ede23b84ec998
BLAKE2b-256 2b11951bee214ae5b5780b75047f5d827782ca3de44dc334c3beb043a2242dc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: veils-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.7.1 Linux/4.15.0-1077-gcp

File hashes

Hashes for veils-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fd6f8c3f0b43c528a8132eb3571786644a9ab39baed7c4572e1292e33033b090
MD5 c9cffe70506ee1e222ce8b8020a5903d
BLAKE2b-256 a9e78b381fd228d68bd03f8f6a99308047675f46754179181c4183fa388018c9

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