Skip to main content

Role based software development

Project description

Roles

Library for Role based development.

Pythonic implementation of the DCI (Data Context Interaction) pattern (http://www.artima.com/articles/dci_vision.html).

The big difference with mixins is that this role is applied only to the subject instance, not to the subject class (alas, a new class is constructed).

Roles can be assigned and revoked. Multiple roles can be applied to an instance. Revocation can happen in any particular order.

Homepage: http://github.com/amolenaar/roles

Releases: http://pypi.python.org/pypi/roles

Using Roles

As a basic example, consider a domain class:

>>> class Person:
...     def __init__(self, name):
...         self.name = name
>>> person = Person("John")

The instance should participate in a collaboration in which it fulfills a particular role:

>>> from roles import RoleType
>>> class Carpenter(metaclass=RoleType):
...     def chop(self):
...          return "chop, chop"

Assign the role to the person:

>>> Carpenter(person)				# doctest: +ELLIPSIS
<__main__.Person+Carpenter object at 0x...>
>>> person					# doctest: +ELLIPSIS
<__main__.Person+Carpenter object at 0x...>

The person is still a Person:

>>> isinstance(person, Person)
True

... and can do carpenter things:

>>> person.chop()
'chop, chop'

See roles.py for more examples.

Context

Roles make a lot of sense when used in a context. A classic example is the money transfer example. Here two accounts are used and an amount of money is transfered from one account to the other. So, one account playes the role of source account and the other plays the role of target account.

An example can be found in example.py.

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

roles-1.0.0.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

roles-1.0.0-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file roles-1.0.0.tar.gz.

File metadata

  • Download URL: roles-1.0.0.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.8.0-33-generic

File hashes

Hashes for roles-1.0.0.tar.gz
Algorithm Hash digest
SHA256 123d843e38c6e578c15533eb2c7cf98aaf53cbaa9fe78dc318dbc61297e2ed61
MD5 d0d235c7f6c192a7b6c04e2970d27212
BLAKE2b-256 c96f7fd955e74bae50565d8a010ea1a4e45aa06841d6d38111ea736879fc7678

See more details on using hashes here.

File details

Details for the file roles-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: roles-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.8.0-33-generic

File hashes

Hashes for roles-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5d7595df077e7a39db7edc36322b52ea861c7da65be2dd329f8b487a56f37494
MD5 480200d5b5375a765307c2da39d12e5e
BLAKE2b-256 505712a193eeeff2f4ab62ef5be98a83c18b24bebbab90a358c7f120b7b32408

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