摘要: 多进程池Flask实战应用 import json import math import flask from concurrent.futures import ProcessPoolExecutor app = flask.Flask(__name__) process_pool = Proce 阅读全文
posted @ 2021-09-11 12:39 TY520 阅读(24380) 评论(0) 推荐(1) 编辑
摘要: 多线程池Flask实战应用 import json import time import flask from concurrent.futures import ThreadPoolExecutor app = flask.Flask(__name__) pool = ThreadPoolExec 阅读全文
posted @ 2021-09-11 12:38 TY520 阅读(24333) 评论(0) 推荐(0) 编辑
摘要: 多线程生产者消费者模型爬虫 import queue import requests from bs4 import BeautifulSoup import threading import time import random def craw(url): r = requests.get(ur 阅读全文
posted @ 2021-09-11 12:23 TY520 阅读(24416) 评论(0) 推荐(0) 编辑