processing tag

54 questions


2 answers
105 views
0
python : To store the return value in a variable after multiprocessing of a function with a return value

I wonder how I can save the return value of the executed function as a variable when I run a function with a return value as a multi-process. You want to save and use the processed result as a variabl...

2 years ago

1 answers
93 views
0
Which is better, multi-threading, multiprocessing, or asyncio, for Python parallel http request/response?

Python is programming to execute http requests in parallel.I am planning to request restapi and collect the requested values and upload them to the cloudmultiprocessing,Multi-threading,Asyncio Asynchr...


2 answers
102 views
0
Are multiprocessing and ProcessPoolExecutor the same?

In order to reduce work time, I'm trying to run two or more functions simultaneously using multiprocessing, and I found that if I want to add or exclude a list in the middle of the function, I can sha...

2 years ago

1 answers
72 views
0
There is data missing when crawling by combining multiprocessing and multi-threading. How can we solve this?

Crawling using multiprocessing, treading, beautiful soup, and requests results in a list index out of range error or none type has not attribute text error.import requestsfrom bs4 import BeautifulSoup...

« - 6 -

© 2024 OneMinuteCode. All rights reserved.