网络刮痧在线交互式地图的基础数据

问题描述 投票:0回答:1

我试图从这个网站上的交互式地图获取基础数据:https://www.sabrahealth.com/properties

我尝试使用Google Chrome上的Inspect功能查找XHR文件,该文件可以保存地图上所有点的位置,但没有出现任何内容。还有另一种从这张地图中提取位置数据的方法吗?

web-scraping inspect jqxhr
1个回答
0
投票

那么,位置数据可以在他们的网站here上下载。但是我们假设你想要实际的纬度,经度值做一些分析。

我要做的第一件事就是你所做的(寻找XHR)。如果我在那里找不到任何东西,我经常做的第二件事是在html中搜索<script>标签。有时数据会“隐藏”在那里。它需要更多的侦探工作。它并不总能产生结果,但在这种情况下确实如此。

如果你查看<script>标签,你会发现相关的json格式。然后你可以使用它。这只是找到它然后操纵字符串以获得有效的json格式,然后使用json.loads()来输入它。

import requests
import bs4
import json


url = 'https://www.sabrahealth.com/properties'

headers = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36'}


response = requests.get(url, headers=headers)

soup = bs4.BeautifulSoup(response.text, 'html.parser')

scripts = soup.find_all('script')
for script in scripts:
    if 'jQuery.extend(Drupal.settings,' in script.text:
        jsonStr = script.text.split('jQuery.extend(Drupal.settings,')[1]
        jsonStr = jsonStr.rsplit(');',1)[0]

        jsonObj = json.loads(jsonStr)


for each in jsonObj['gmap']['auto1map']['markers']:
    name = each['markername']
    lat = each['latitude']
    lon = each['longitude']

    soup = bs4.BeautifulSoup(each['text'], 'html.parser')

    prop_type = soup.find('i', {'class':'property-type'}).text.strip()
    sub_cat = soup.find('span', {'class':'subcat'}).text.strip()

    location = soup.find('span', {'class':'subcat'}).find_next('p').text.split('\n')[0]


    print ('Type: %s\nSubCat: %s\nLat: %s\nLon: %s\nLocation: %s\n' %(prop_type, sub_cat, lat, lon, location))

输出:

Type: Senior Housing - Leased
SubCat: Assisted Living
Lat: 38.3309
Lon: -85.862521
Location: Floyds Knobs, Indiana

Type: Skilled Nursing/Transitional Care
SubCat: SNF
Lat: 29.719507
Lon: -99.06649
Location: Bandera, Texas

Type: Skilled Nursing/Transitional Care
SubCat: SNF
Lat: 37.189079
Lon: -77.376015
Location: Petersburg, Virginia

Type: Skilled Nursing/Transitional Care
SubCat: SNF
Lat: 37.759998
Lon: -122.254616
Location: Alameda, California

...
© www.soinside.com 2019 - 2024. All rights reserved.