Head r964 and book spelling

This commit is contained in:
Jon Tibble 2010-07-24 17:54:55 +01:00
commit 87fc38fb6f
2 changed files with 9 additions and 6 deletions

View File

@ -24,10 +24,11 @@
###############################################################################
import logging
import urllib2
import os
import sqlite3
import re
import sqlite3
import urllib
import urllib2
from BeautifulSoup import BeautifulSoup, NavigableString
@ -195,10 +196,12 @@ class BGExtract(BibleCommon):
Chapter number
"""
log.debug(u'get_bible_chapter %s, %s, %s', version, bookname, chapter)
urlstring = u'http://www.biblegateway.com/passage/?search=%s+%s' \
u'&version=%s' % (bookname, chapter, version)
log.debug(u'BibleGateway url = %s' % urlstring)
page = urllib2.urlopen(urlstring)
url_params = urllib.urlencode(
{u'search': u'%s %s' % (bookname, chapter),
u'version': u'%s' % version})
page = urllib2.urlopen(
u'http://www.biblegateway.com/passage/?%s' % url_params)
log.debug(u'BibleGateway url = %s' % page.geturl())
Receiver.send_message(u'openlp_process_events')
soup = BeautifulSoup(page)
Receiver.send_message(u'openlp_process_events')