我正在尝试使用代理,以便可以访问外部数据。我的代理似乎没有工作。我正在使用Python 3和urllib。
我尝试将代理=代理添加到urlopen。我尝试使用ProxyHandler。
#Importing dataframe and request stuff
import pandas as pd
import json
import urllib
from urllib.request import urlopen
from urllib.request import ProxyHandler
#mapping proxy dictionary
proxies = {
'ftp': 'ftp://x:80',
'http': 'http://x:80',
'https': 'https://x:80'
}
#handling the proxy
proxy_support = urllib.request.ProxyHandler(proxies)
下面的这段代码可能无关紧要,但我不知道。
#Identifying the file
json_file = "https://gis.fema.gov/arcgis/rest/services/NSS/OpenShelters/MapServer/0/query?where=1%3D1&outFields=*&returnGeometry=false&outSR=4326&f=json"
#reading the file
data = urlopen(json_file).read()
#loading data
raw_json = json.loads(data)
#formatting data
formatted_json = [feature['attributes'] for feature in raw_json['features']]
#creating data frame
df = pd.DataFrame(formatted_json)
我一直在超时,因为我的代理无法正常工作,不确定我到底在做什么错。