An implementation of events and asynchronous callbacks using decorators.
Project description
Asyevent
An implementation of events and asynchronous callbacks using decorators.
Report Bug
·
Request Feature
Table of Contents
About The Project
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.
Built using
GETTING STARTED
Installation
pip install asyevent
Usage
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.
Roadmap
See the open issues for a list of proposed features (and known issues).
Contributing
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
License
Distributed under the MIT License. See LICENSE
for more information.
Contact
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
File details
Details for the file asyevent-0.2.10.tar.gz
.
File metadata
- Download URL: asyevent-0.2.10.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5699e394e33b6af2c8ca963b3cebe6e1fb49db3624c51b527c7280060a3ad651 |
|
MD5 | 6c8ceeb2d948e6fa6c4ed0e0f7d9ea04 |
|
BLAKE2b-256 | 14fd223b46424b31c006b7a8cf16abc39a276d5bf8b6348ab83d80663e2470c9 |