在Windows 10

时间:2016-08-18 20:54:50

标签: python windows macos performance python-2.7

我正在运行一个python脚本,它使用request.get()从各种在线资源中检索数据。该脚本在我的Macbook Pro上运行得非常好。但是当我在新的Windows 10计算机上运行相同的python脚本时,执行相同的请求调用需要大约6倍的时间。

任何人都可以了解为什么会发生这种情况,以及如何解决这个问题?

编辑[1]:

要添加我使用的代码示例,以下是执行请求的简单类:

import requests

def getHTTPRequest(url, mTimeout):
  response = requests.get(url, timeout=mTimeout)
  return response.content

0 个答案:

没有答案