https://github.com/hyeonsangjeon/python-threads-queue
simple python thread queue using producer consumer pattern
https://github.com/hyeonsangjeon/python-threads-queue
producer-consumer publisher-subscriber python queue simple thread
Last synced: 7 months ago
JSON representation
simple python thread queue using producer consumer pattern
- Host: GitHub
- URL: https://github.com/hyeonsangjeon/python-threads-queue
- Owner: hyeonsangjeon
- Created: 2018-09-18T08:52:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-22T05:52:46.000Z (about 7 years ago)
- Last Synced: 2025-01-17T19:13:59.847Z (9 months ago)
- Topics: producer-consumer, publisher-subscriber, python, queue, simple, thread
- Language: Python
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-threads-queue
Very simple python Queue example.
Parallelism is a great way to use threads to organize the execution process in order.
Python Queue class can handle process blocking, buffer size, join and provides the functionality needed to create a decent pipeline.
## Implementation
- This example needed [`python3`](https://www.python.org/downloads/)
- Let's find implementation how to use thread python Queue. https://github.com/hyeonsangjeon/youtube-dl-nas