File tree 2 files changed +2
-12
lines changed
2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change 1
1
import json
2
- from queue import Queue
3
2
from typing import List , Optional , Dict
4
3
5
4
from crawlab .client import get_client , Client
@@ -15,12 +14,10 @@ class ResultService:
15
14
# internal
16
15
c : Client = None
17
16
task_stub : TaskServiceStub = None
18
- queue : Queue = Queue ()
19
17
20
18
def __init__ (self ):
21
19
self .c = get_client ()
22
20
self .task_stub = self .c .task_service_stub
23
- self .task_stub .Subscribe .future (self .yield_msg ())
24
21
25
22
def save_item (self , * items : Dict ):
26
23
self .save (list (items ))
@@ -59,14 +56,7 @@ def _save(self, items: List[Dict]):
59
56
code = INSERT_DATA ,
60
57
data = data ,
61
58
)
62
- self .enqueue (msg )
63
-
64
- def enqueue (self , msg : StreamMessage ):
65
- self .queue .put (msg )
66
-
67
- def yield_msg (self ):
68
- while True :
69
- yield self .queue .get ()
59
+ self .task_stub .Subscribe (iter ([msg ]))
70
60
71
61
72
62
RS : Optional [ResultService ] = None
Original file line number Diff line number Diff line change 8
8
9
9
setup (
10
10
name = 'crawlab-sdk' ,
11
- version = '0.6.0-8 ' ,
11
+ version = '0.6.0-9 ' ,
12
12
packages = find_packages (),
13
13
url = 'https://github.com/crawlab-team/crawlab-sdk' ,
14
14
license = 'BSD-3-Clause' ,
You can’t perform that action at this time.
0 commit comments