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.2.0.tar.gz
(4.8 kB
view hashes)
Built Distribution
Close
Hashes for multithreading-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69dbb9facadab83fb26693c7fa16b863ab340d8279fb5f127a424aa26398ef1f |
|
MD5 | 57a3e23a82ca5723e66671b40be5c350 |
|
BLAKE2b-256 | 8a0c4b1a26c24039cefb51f1b79c05ce74e772c8bb1a5dbf4cf547ecd36447c7 |