摘要:
1.WSGI协议概述(Python Web Server Gateway Interface) 1.WSGI允许开发者将选择web框架和web服务器分开,可以混合匹配web服务器和web框架,选择一个适合的配对 2.WSGI协议在不修改服务器和架构代码情况下确保了可以在多个架构下运行web服务器 3 阅读全文
摘要:
1.新浪图集爬虫(闭包+进程池+线程池+多协程) import os import re import urllib.request import time from multiprocessing import Pool # 进程池 from concurrent.futures import T 阅读全文