PDF reading with python

This commit is contained in:
2021-11-01 11:00:59 -03:00
parent 9f301e2175
commit 5ee267568a
74 changed files with 1092 additions and 26 deletions

12
worker/main.py Normal file
View 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