2
from bs4 import BeautifulSoup


page=BeautifulSoup(page2)
self.response.out.write(page.title.string)
self.response.out.write("""<br />""")

mdays={}
mo={}
cost={}
ac={}
nc={}
month=(page.findAll('td',style="border-style: solid; border-width: 1px", align="RIGHT"))

mo[0]=(month[0].contents)
mdays[0]=month[1].contents
cost[0]=month[2].contents
nc[0] = month[4].contents
ac[0]=month[5].contents
self.response.out.write(mo[0].string)

最初の out.write ステートメントはタイトルを出力しますが、残りは Null を出力します Beautful Soup コードは IDLE では正しく動作しますが、AppEngine では動作しません

4

0 に答える 0