PDF reading with python
This commit is contained in:
12
worker/main.py
Normal file
12
worker/main.py
Normal file
@ -0,0 +1,12 @@
|
||||
from threading import Thread
|
||||
import httpx
|
||||
|
||||
|
||||
class Worker(Thread):
|
||||
def __init__(self, settings):
|
||||
self.settings = settings
|
||||
|
||||
def run():
|
||||
while True:
|
||||
if self.stop_event.isSet():
|
||||
break
|
Reference in New Issue
Block a user