-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
41 lines (33 loc) · 1.09 KB
/
main.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
40
41
from threading import Timer, Lock
from scrapers.jobs_scrape_wnh import mine
class Periodic(object):
def __init__(self , interval , function , *args , **kwargs):
self._lock = Lock()
self._timer = None
self.function = function
self.interval = interval
self.args = args
self.kwargs = kwargs
self.stopped = True
if kwargs.pop('autostart' , True):
self.start()
def start(self , from_run = False):
self._lock.acquire()
if from_run or self.stopped:
self.stopped = False
self._timer = Timer(self.interval , self._run)
self._timer.start()
self._lock.release()
def _run(self):
self.start(from_run=True)
self.function(*self.args , **self.kwargs)
def stop(self):
self._lock.acquire()
self._stopped = True
self._timer.cancel()
self._lock.release()
if __name__ == '__main__':
wnh = Periodic(60 * 60 * 3, mine().run)
# internsl = Periodic(60 * 60 * 4, internshala().run)
#mine().run()
#internshala().run()