所以我一直在使用比特币采矿设备,我有一个覆盆子pi模型B作为钻机管理系统。我买了一个小的2x16显示器,我想显示比特币的汇率。我怎么做 ?我知道如何在屏幕上显示数据购买我不知道如何获得pi的汇率...我想从一个<title>
的网站获取它,如:
或:
http://www.bitcoinexchangerate.org/
在网站的<title>
中,美元的比特币汇率更新。
可能吗? 如果没有,我该怎么做?
非常感谢!
编辑! 继续我现在所拥有的:
#!/usr/bin/env python
#coding:utf-8
from BeautifulSoup import BeautifulSoup
from mechanize import Browser
#This retrieves the webpage content
br = Browser()
res = br.open("https://www.google.com/")
data = res.get_data()
#This parses the content
soup = BeautifulSoup(data)
title = soup.find('title')
#This outputs the content :)
print title.renderContents()
但它给出了语法错误。 应该导入哪些库?
答案 0 :(得分:0)
试试这个:
import urllib2
from bs4 import BeautifulSoup
response = urllib2.urlopen('http://www.bitcoinexchangerate.org/')
soup = BeautifulSoup(response)
print soup.title.string