10

我在 python 中编写了一个脚本,以从 javascript 呈现的网页获取最后一笔交易的价格。如果我选择使用selenium. 我的目标不是使用任何浏览器模拟器之类selenium的东西,因为最新版本的Requests-HTML应该能够解析 javascript 加密内容。但是,我无法成功。当我运行脚本时,我收到以下错误。对此的任何帮助将不胜感激。

网站地址:webpage_link

我试过的脚本:

import requests_html

with requests_html.HTMLSession() as session:
    r = session.get('https://www.gdax.com/trade/LTC-EUR')
    js = r.html.render()
    item = js.find('.MarketInfo_market-num_1lAXs',first=True).text
    print(item)

这是完整的追溯:

Exception in callback NavigatorWatcher.waitForNavigation.<locals>.watchdog_cb(<Task finishe...> result=None>) at C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py:49
handle: <Handle NavigatorWatcher.waitForNavigation.<locals>.watchdog_cb(<Task finishe...> result=None>) at C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py:49>
Traceback (most recent call last):
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\asyncio\events.py", line 145, in _run
    self._callback(*self._args)
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py", line 52, in watchdog_cb
    self._timeout)
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py", line 40, in _raise_error
    raise error
concurrent.futures._base.TimeoutError: Navigation Timeout Exceeded: 3000 ms exceeded
Traceback (most recent call last):
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\experiment.py", line 6, in <module>
    item = js.find('.MarketInfo_market-num_1lAXs',first=True).text
AttributeError: 'NoneType' object has no attribute 'find'
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\shutil.py", line 387, in _rmtree_unsafe
    os.unlink(fullname)
PermissionError: [WinError 5] Access is denied: 'C:\\Users\\ar\\.pyppeteer\\.dev_profile\\tmp1gng46sw\\CrashpadMetrics-active.pma'

我要的价格在页面顶部可以看到,就像这样177.59 EUR Last trade price。我希望得到177.59或无论当前价格是多少。

4

3 回答 3

20

你有几个错误。第一个是“导航”超时,表明页面没有完成渲染:

Exception in callback NavigatorWatcher.waitForNavigation.<locals>.watchdog_cb(<Task finishe...> result=None>) at C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py:49
handle: <Handle NavigatorWatcher.waitForNavigation.<locals>.watchdog_cb(<Task finishe...> result=None>) at C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py:49>
Traceback (most recent call last):
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\asyncio\events.py", line 145, in _run
    self._callback(*self._args)
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py", line 52, in watchdog_cb
    self._timeout)
  File "C:\Users\ar\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyppeteer\navigator_watcher.py", line 40, in _raise_error
    raise error
concurrent.futures._base.TimeoutError: Navigation Timeout Exceeded: 3000 ms exceeded

此回溯不会在主线程中引发,您的代码不会因此而中止。您的页面可能不完整;您可能希望设置更长的超时时间或引入睡眠周期,以便浏览器有时间处理 AJAX 响应。

接下来,response.html.render()元素返回None。它将 HTML 加载到无头 Chromium 浏览器中,将 JavaScript 渲染留给该浏览器,然后将页面 HTML 复制回response.html原地数据结构,无需返回任何内容。所以js设置为None,而不是新HTML实例,导致您的下一个回溯。

使用现有 response.html对象进行搜索,渲染后:

r.html.render()
item = r.html.find('.MarketInfo_market-num_1lAXs', first=True)

可能没有这样的 CSS 类,因为在通过 AJAX 加载 JSON 数据之后,每个页面渲染都会生成最后 5 个字符。这使得很难使用 CSS 找到有问题的元素。

此外,我发现如果没有睡眠周期,浏览器就没有时间获取 AJAX 资源并呈现您想要加载的信息。在复制回 HTML 之前,给它 10 秒的sleep时间做一些工作。如果您看到网络超时,请设置更长的超时时间(默认为 8 秒):

r.html.render(timeout=10, sleep=10)

您也可以将其设置timeout0,以删除超时并无限期地等待页面加载。

希望未来的 API 更新也提供等待网络活动停止的功能。

您可以使用包含的parse来查找匹配的 CSS 类:

# search for CSS suffixes
suffixes = [r[0] for r in r.html.search_all('MarketInfo_market-num_{:w}')]
for suffix in suffixes:
    # for each suffix, find all matching elements with that class
    items = r.html.find('.MarketInfo_market-num_{}'.format(suffix))
    for item in items:
        print(item.text)

现在我们得到输出:

169.81 EUR
+
1.01 %
18,420 LTC
169.81 EUR
+
1.01 %
18,420 LTC
169.81 EUR
+
1.01 %
18,420 LTC
169.81 EUR
+
1.01 %
18,420 LTC

您最后的回溯显示无法清理 Chromium 用户数据路径。底层Pyppeteer 库使用临时用户数据路径配置无头 Chromium 浏览器,在您的情况下,该目录包含一些仍然锁定的资源。您可以忽略该错误,但您可能希望稍后尝试删除文件.pyppeteer夹中的所有剩余文件。

于 2018-03-03T22:18:33.233 回答
2

你需要它通过 Requests-HTML 吗?在您发布的那天,repo 已经 4 天了,在过去的 3 天里已经有 50 次提交。一段时间内不会完全稳定。

见这里: https ://github.com/kennethreitz/requests-html/graphs/commit-activity

OTOH,有一个用于 gdax 的 API。

https://docs.gdax.com/#market-data

现在,如果您不喜欢使用 Py3,GDAX 网站上列出了一个 python 客户端。预先我会提到它是非官方客户;但是,如果您使用它,您将能够快速轻松地从官方 GDAX api 获得响应。

https://github.com/danpaquin/gdax-python

于 2018-03-03T12:03:58.660 回答
1

如果您想通过运行 Selenium 网络抓取来使用另一种方式

from selenium import webdriver
from selenium.webdriver.common.keys import Keys 
from selenium.common.exceptions import TimeoutException


chrome_path = r"C:\Users\Mike\Desktop\chromedriver.exe"    

driver = webdriver.Chrome(chrome_path)

driver.get("https://www.gdax.com/trade/LTC-EUR")

item = driver.find_element_by_xpath('''//span[@class='MarketInfo_market-num_1lAXs']''') 
item = item.text
print item
driver.close()

结果:177.60 欧元

于 2018-02-28T07:42:40.723 回答