mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-18 06:03:16 +01:00
Removed obsolete code
This commit is contained in:
parent
5edcbd10a8
commit
67e748e007
1 changed files with 0 additions and 10 deletions
|
|
@ -17,16 +17,6 @@ def _get_query_data(url):
|
|||
return dict((key, data[0]) for key, data in query_data.items())
|
||||
|
||||
|
||||
def _yield_next_siblings(tag):
|
||||
# yields Tag _and_ NavigableString siblings from the given tag. The
|
||||
# BeautifulSoup findNextSiblings() method for some reasons only returns either
|
||||
# NavigableStrings _or_ Tag objects, not both.
|
||||
sibling = tag.nextSibling
|
||||
while sibling:
|
||||
yield sibling
|
||||
sibling = sibling.nextSibling
|
||||
|
||||
|
||||
class FictionManiaTVAdapter(BaseSiteAdapter):
|
||||
SITE_ABBREVIATION = 'fmt'
|
||||
SITE_DOMAIN = 'fictionmania.tv'
|
||||
|
|
|
|||
Loading…
Reference in a new issue