Saleyo is a lightwight scalable Python AOP framework, easy to use and integrate.
Project description
Saleyo
Saleyo is a lightwight scalable Python AOP framework, easy to use and integrate.
Getting Start
pip install saleyo
Basic Tutorial
Declear a Mixin
class
If you don't like decorators, you can pass arguments to operations and call the mixin
method manually.
from saleyo import Mixin
class Foo:...
@Mixin(target = Foo)
class MixinFoo:...
Use MixinOperation
Here is a simple demo.
from typing import Any
from saleyo import Mixin, Accessor, OverWrite, Post, Pre, Intercept, InvokeEvent
class Foo:
__private = "private varible"
def demo(self):
pass
@Mixin(target=Foo)
class MixinFoo:
# Will add a varible named `__private` to Foo and it has the same address with `_Foo__private`
private: Accessor[str] = Accessor("__private")
# Will Add the `func` to `Foo`
@OverWrite
def func(self):
print("hello saleyo")
# Will intercept the demo method and redirect to `lambda: print("hello world")`
@Intercept.configure(target_name="demo")
@staticmethod
def intercept_demo(_: InvokeEvent):
return InvokeEvent(lambda: print("hello world"))
# Will call before `demo` call
@Pre.configure(target_name="demo")
def pre_demo(*arg):
print("pre hello world")
# Will call after `demo` call
@Post.configure(target_name="demo")
def post_demo(*arg):
print("post hello world")
foo: Any = (
Foo()
) # Add the typing hint to avoid the error message from some IDE plugins.
print(foo.__private) # Also `print(MixinFoo.private.value)`
foo.func()
foo.demo()
>>> private varible
>>> hello saleyo
>>> pre hello world
>>> hello world
>>> post hello world
Custom ToolChain
ToolChain
determines the ability to modify the class.
from saleyo import Mixin, GCToolChain, Arguments, Pre
@Mixin(target=str, toolchain=GCToolChain)
class MixinStr:
@Pre.configure(target_name="format")
def pre_format(self, *args) -> Arguments[...]:
print(f"input args: {args}")
return Arguments(self, "saleyo")
print("hello world {}".format("python"))
>>> input args: ('python',)
>>> hello world saleyo
Custom Operation
The default operations can't satify you? Why not try define a operation yourself!
from typing import Any, Type
from saleyo import MixinOperation, ToolChain
class MyOperation(MixinOperation[Any]):
def mixin(self, target: Type, toolchain: ToolChain = ...) -> None:
...
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
saleyo-1.0.0.tar.gz
(9.2 kB
view details)
Built Distribution
saleyo-1.0.0-py3-none-any.whl
(12.5 kB
view details)
File details
Details for the file saleyo-1.0.0.tar.gz
.
File metadata
- Download URL: saleyo-1.0.0.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.12.5.dev23+gfdefbe2a CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4e897a7bfea648515112b31194806f4474b83b83fd153657fec81ddb974899a |
|
MD5 | aaa554687254968ea0a5cb04b36b9ce9 |
|
BLAKE2b-256 | 0807a8a79b7dd99e18f4aef18da91e688ddfc5d0fe741e2f2fa8c127c1f34685 |
File details
Details for the file saleyo-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: saleyo-1.0.0-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.12.5.dev23+gfdefbe2a CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52941dc30ce3984c1c40f1fe2396079a4217fa4a5c495f440e99e41dcfc4ab9d |
|
MD5 | 1a28f31d42c63557f653e19b443a12ad |
|
BLAKE2b-256 | cea189c313ae03fb8c532f5805b124a7cd3eb48c203c9bc44b8a607b83ed85a8 |