Python: получить данные из таблицы с веб-сайта - PullRequest
0 голосов
/ 04 марта 2020

Я хочу получить данные из таблицы https://www.sgx.com/securities/stock-screener. Тем не менее, я обнаружил, что html не может найти xpath, который указывает на таблицу. Я использую Python 2,7

from lxml import html
import requests

page = requests.get('https://www.sgx.com/securities/stock-screener')
data = html.fromstring(page.content)

enter image description here

...