This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
automated-youtube-dl/server/api/jobs/queue.py

7 lines
142 B
Python

from multiprocessing import Manager
manager = Manager()
job_queue = manager.Queue()
job_status = manager.dict()
queued_jobs = manager.list()