An implementation of events and asynchronous callbacks using decorators.
Report Bug
·
Request Feature
An implementation of events and asynchronous callbacks using decorators. The project is currently in development. The main features are stables and work perfectly as I've tested, but if you notice any issue, or you have a suggestion to make, it's greatly appreciated.
pip install asyevent
import asyncio
from asyevent import EventManager
# creates a main event manager
manager = EventManager()
# creates an event
sample_event = manager.create_event("sample_event")
# adds `call_on_event` coroutine as sample_event's callback
@sample_event.as_callback()
async def sample_event_callback(text: str):
print(text)
await asyncio.sleep(2)
# uses `.after` event which refers to an event that is raised
# when the parent event's callbacks are ended (data_lost)
@sample_event.after(pass_extra=True).as_callback()
async def after_event(time_took: int, *args):
# invokes the command `say`
await manager.invoke_command("say", f"I've been here for {time_took} seconds")
# adds the `say_stm` coroutine as a callback of the command `say`
@manager.as_command(name="say")
async def say_stm(name: str):
print(f"Hello, {name} !")
if __name__ == "__main__":
loop = asyncio.get_event_loop()
# raises the event `sample_event`
loop.run_until_complete(sample_event("Hello, world !"))
More example in asyevent/examples/
folder.
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.