Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matteoguadrini/pyrrole
Role system for Python3
https://github.com/matteoguadrini/pyrrole
decorators python-class python-metaclasses python3 role role-api role-library roles
Last synced: 3 months ago
JSON representation
Role system for Python3
- Host: GitHub
- URL: https://github.com/matteoguadrini/pyrrole
- Owner: MatteoGuadrini
- License: gpl-3.0
- Archived: true
- Created: 2021-06-16T13:38:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-28T06:07:09.000Z (over 3 years ago)
- Last Synced: 2024-09-28T19:01:21.315Z (3 months ago)
- Topics: decorators, python-class, python-metaclasses, python3, role, role-api, role-library, roles
- Language: Python
- Homepage:
- Size: 63.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# pyrrole
_pyrrole_ is a Role System for Python3 (3.6 and high).
It's inspired by the roles implementation in the [Moose library of Perl](https://metacpan.org/pod/Moose::Role),
and its main purpose is to use instead of Mixin classes and multiple inheritance.> ATTENTION: This package is **WIP** in _alpha_ release
## Test
If you would test before install, follow these instructions:
```console
$ git clone https://github.com/MatteoGuadrini/pyrrole.git
$ cd pyrrole
$ python -m unittest test_role.py
```## Install
For install this package, run pip install:
```console
$ pip install --user pyrrole
```## Simple role
Here is an example of how a role can be done:
```python
import pyrroleclass FallFromTree(metaclass=pyrrole.Role):
passclass Fruit:
pass@FallFromTree
class Apple(Fruit):
passapple = Apple()
print(apple.__roles__)
```In this example, the `Apple` class inherits from `Fruit` but not `FallFromTree`.
`FallFromTree` is a role class that applies to classes so that they acquire the **__roles__** attribute.## Role method
By default, all methods or attribute is inherited from a role class except the dunder methods (ex. `__str__`)..
To force the import of a dunder or normal method, just enclose the method to inherit in a _role_method_ decorator.```python
import pyrroleclass FallFromTree(metaclass=pyrrole.Role):
@pyrrole.role_method
def __str__(cls):
return f"Fall from tree"class Fruit:
pass@FallFromTree
class Apple(Fruit):
passapple = Apple()
print(apple)
```## More roles
An ordinary class can have multiple roles at the same time.
```python
import pyrrole@pyrrole.role # use role with decorator
class FallFromTree:
def __init__(self, instance):
self.trees = list()
self.trees.append(instance)
def fall(self, tree='tree'):
return f"Fall from {tree}"
@pyrrole.role # use role with decorator
class Deciduous:
def __init__(self, instance):
self.trees = list()
self.trees.append(instance)
def clean_leaf(self):
return f"Clean all leaf"class Fruit:
pass@pyrrole.apply_roles(FallFromTree, Deciduous) # apply more role at same time
@pyrrole.rename_role_methods(clean_leaf='clean_apple_leaf') # renamed role names
class Apple(Fruit):
def clean_leaf(self):
return f"Clean all leaf of apple tree"apple = Apple()
# apple has role?
pyrrole.has_role(apple, FallFromTree) # True
pyrrole.has_role(apple, Deciduous) # Trueprint(apple.__roles__) # ['FallFromTree', 'Deciduous']
print(apple.clean_apple_leaf()) # method renamed from the Deciduous role
print(apple.fall('apple tree')) # method forced inherited from the FallFromTree role
```## Open source
_pyrrole_ is an open source project. Any contribute, It's welcome.**A great thanks**.
For donations, press this
For me
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.me/guos)
For [Telethon](http://www.telethon.it/)
The Telethon Foundation is a non-profit organization recognized by the Ministry of University and Scientific and Technological Research.
They were born in 1990 to respond to the appeal of patients suffering from rare diseases.
Come today, we are organized to dare to listen to them and answers, every day of the year.[Adopt the future](https://www.ioadottoilfuturo.it/)
## Acknowledgments
Thanks to [Giacomo Montagner](https://github.com/kromg) for having the idea. Besides, being a contributor he is a great friend!
Thanks to Mark Lutz for writing the _Learning Python_ and _Programming Python_ books that make up my python foundation.
Thanks to Kenneth Reitz and Tanya Schlusser for writing the _The Hitchhiker’s Guide to Python_ books.
Thanks to Dane Hillard for writing the _Practices of the Python Pro_ books.
Special thanks go to my wife, who understood the hours of absence for this development.
Thanks to my children, for the daily inspiration they give me and to make me realize, that life must be simple.Thanks Python!