MultiThreading: Thread + Queue
Project description
Multi Threading
Example Class
import multithreading
class Demo(multithreading.MultiThread):
def task(self, task):
print(task)
Example Main
task_list = range(1, 3 + 1)
demo = Demo(task_list, threads=3)
# Start
demo.start()
Result
1
2
3
OR
demo = Demo(threads=3)
# Start threads
demo.start_threads()
# Adding task to queue
demo.add_task(1)
demo.add_task(2)
demo.add_task(3)
# Wait until queue is empty
demo.join()
Result
1
2
3
Install
$ pip install multithreading
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
multithreading-0.1.7.tar.gz
(4.2 kB
view hashes)
Built Distribution
Close
Hashes for multithreading-0.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63f45d8eaa43d625d2040a1a1e0cbfc264a76d708ad2574befb96d801bc5d31a |
|
MD5 | bf9e1b497d3cf66a25f1e8939eca39c4 |
|
BLAKE2b-256 | f254d831390236be01a819ea4bdab5829fe23773775c0e3cd94605c6c5fb5444 |