1
0
mirror of https://github.com/lorien/awesome-web-scraping.git synced 2024-11-24 08:32:19 +02:00

update python::celery link

This commit is contained in:
Gregory Petukhov 2018-10-28 14:24:56 +03:00 committed by GitHub
parent 8c1f1643d8
commit 1562abebf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -205,7 +205,7 @@ This list contains python libraries related to web scraping and data processing
## Multiprocessing
* [threading](http://docs.python.org/3/library/threading.html) - standard python library to run threads. Effective for I/O-bound tasks. Useless for CPU-bound tasks because of python GIL.
* [multiprocessing](http://docs.python.org/3/library/multiprocessing.html) - standard python library to run processes.
* [celery](http://www.celeryproject.org/) - An asynchronous task queue/job queue based on distributed message passing.
* [celery](https://github.com/celery/celery) - An asynchronous task queue/job queue based on distributed message passing.
* [rq](https://python-rq.org/) - Simple job queues for Python
* [concurrent-futures](https://docs.python.org/3/library/concurrent.futures.html) - The concurrent.futures module provides a high-level interface for asynchronously executing callables.