-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05.py
39 lines (24 loc) · 811 Bytes
/
05.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import asyncio
from motor.motor_asyncio import AsyncIOMotorClient
from beanie import init_beanie
from beanie_batteries_queue import Task, Runner, Priority, Queue
class ExampleTask(Task):
data: str
async def run(self):
self.data = self.data.upper()
await self.save()
async def initialize_beanie():
client = AsyncIOMotorClient("mongodb://localhost:27017")
await init_beanie(database=client.db_name,
document_models=[ExampleTask])
async def main():
await initialize_beanie()
# Producer
task = ExampleTask(data="test", priority=Priority.HIGH)
await task.push()
queue = ExampleTask.queue()
# Consumer
runner = Runner(task_classes=queue.)
runner.start()
if __name__ == "__main__":
asyncio.run(main())