Python を使用して、以下のコードの出力"span.text[pos+2:]"を整数に変換するにはどうすればよいですか。
int(span.text[pos+2:]) を試しましたが、動作しません
from bs4 import BeautifulSoup
import urllib2
url = "https://maps.google.com.au/maps?saddr=A6&daddr=A6&hl=en&ll=-33.877613,151.039867&spn=0.081236,0.083599&sll=-33.869204,151.034546&sspn=0.081244,0.083599&geocode=FYSu-v0d2KMACQ%3BFbp0-_0dJKoACQ&mra=ls&t=m&z=14&layer=t"
content = urllib2.urlopen(url).read()
soup = BeautifulSoup(content)
div = soup.find('div', {'class':'altroute-rcol altroute-aux'}) #get the div where it's located
span = div.find('span')
pos = span.text.find(': ')
print 'Current Listeners:', span.text[pos+2:]
更新:いくつかの変数の内容を表示すると役立つ場合があります。
span.text == u'In current traffic: 8 mins'
span.text[pos+2:] == u'8 mins'