aboutsummaryrefslogtreecommitdiffstats
path: root/tpblite/models/torrents.py
diff options
context:
space:
mode:
authormattlyon93 <matthewlyon18@gmail.com>2019-11-03 12:29:00 +1100
committermattlyon93 <matthewlyon18@gmail.com>2019-11-03 12:29:00 +1100
commita3fa73495141fc240ea0ad9b54d7a2882264db20 (patch)
treeba17da28c7209d4a667e9d34e180199c6aed61ab /tpblite/models/torrents.py
parent612087fd74b849525c32dfc4033603808b0c2433 (diff)
downloadtpb-lite-a3fa73495141fc240ea0ad9b54d7a2882264db20.tar.gz
tpb-lite-a3fa73495141fc240ea0ad9b54d7a2882264db20.tar.bz2
tpb-lite-a3fa73495141fc240ea0ad9b54d7a2882264db20.zip
improvements to TPB controller and Query
Diffstat (limited to 'tpblite/models/torrents.py')
-rw-r--r--tpblite/models/torrents.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tpblite/models/torrents.py b/tpblite/models/torrents.py
index 9fd40c4..7852c28 100644
--- a/tpblite/models/torrents.py
+++ b/tpblite/models/torrents.py
@@ -63,8 +63,8 @@ class Torrents(object):
torrent list or dict. Has methods to select items from
torrent list.
'''
- def __init__(self, webpage):
- self.webpage = webpage
+ def __init__(self, html_source):
+ self.html_source = html_source
self.list = self._createTorrentList()
def __str__(self):
@@ -74,7 +74,7 @@ class Torrents(object):
return iter(self.list)
def _createTorrentList(self):
- soup = BeautifulSoup(self.webpage, features='html.parser')
+ soup = BeautifulSoup(self.html_source, features='html.parser')
rows = self.__getRows(soup)
torrents = []
for row in rows: