Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Metaclass API for defining events #63

Open
pipermerriam opened this issue May 17, 2019 · 3 comments
Open

Metaclass API for defining events #63

pipermerriam opened this issue May 17, 2019 · 3 comments

Comments

@pipermerriam
Copy link
Member

What is wrong

Defining new events requires un-necessary boilerplate. Events are typically purely for data transfer and rarely have extra methods or properties.

How can it be fixed?

It'd be really nice to be able to do this:

class NewUser(DataEvent):
    username: str
    created_at: datetime.datetime
    age: int

event = NewUser('piper', datatime.datetime.now(), 99)

Doing this with metaclasses is quite easy and it would reduce the boilerplate in defining new events significantly.

@cburgdorf
Copy link
Contributor

We could also just force it on the user to add a @dataclass decorator on the events. I opened an PR to demonstrate this with the examples: #139

@pipermerriam
Copy link
Member Author

dataclasses could be a nice way to do this but I'm not inclined to force it.

cburgdorf added a commit to cburgdorf/lahja-1 that referenced this issue Jun 14, 2019
@cburgdorf
Copy link
Contributor

but I'm not inclined to force it.

It would be totally up to the consumer to decide to use them or not. Here's a PR to show case that for Trinity ethereum/trinity#726 I only converted a few places there but I happily convert all of them if you are 👍 on that change.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants