Events
EventDispatcher
boostylib.events.dispatcher.EventDispatcher
Routes events to registered async handlers.
Source code in src/boostylib/events/dispatcher.py
on(event_type)
Decorator to register an event handler.
Example::
@dispatcher.on(EventType.NEW_DONATION)
async def handle_donation(event: DonationEvent):
print(event.amount)
Source code in src/boostylib/events/dispatcher.py
register(event_type, handler)
dispatch(event)
async
Dispatch an event to all registered handlers.
Source code in src/boostylib/events/dispatcher.py
EventPoller
boostylib.events.poller.EventPoller
Polls Boosty API at intervals to detect new events.
Tracks state between polls to detect: - New comments on posts - New subscribers - Subscriber cancellations (disappeared from list)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
settings
|
BoostySettings
|
Boosty settings (for poll_interval). |
required |
dispatcher
|
EventDispatcher
|
Event dispatcher to send detected events to. |
required |
blog_username
|
str
|
Blog to poll. |
''
|
posts_api
|
PostsAPI | None
|
PostsAPI instance. |
None
|
subscriptions_api
|
SubscriptionsAPI | None
|
SubscriptionsAPI instance. |
None
|
comments_api
|
CommentsAPI | None
|
CommentsAPI instance. |
None
|
Source code in src/boostylib/events/poller.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | |
start()
async
Start the polling loop.
Source code in src/boostylib/events/poller.py
stop()
async
Stop the polling loop.
Source code in src/boostylib/events/poller.py
Event Models
Event (base)
boostylib.events.models.Event
DonationEvent
boostylib.events.models.DonationEvent
SubscriptionEvent
boostylib.events.models.SubscriptionEvent
CommentEvent
boostylib.events.models.CommentEvent
EventType Enum
boostylib.enums.EventType
Bases: StrEnum
Types of events detected by the poller.