mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-06 08:52:55 +01:00
30 lines
No EOL
418 B
Python
30 lines
No EOL
418 B
Python
class FanfictionSiteAdapter:
|
|
def __init__(self, url):
|
|
pass
|
|
|
|
def requiresLogin(self, url = None):
|
|
pass
|
|
|
|
def performLogin(self, url = None):
|
|
pass
|
|
|
|
def extractIndividualUrls(self):
|
|
pass
|
|
|
|
def getText(self, url):
|
|
pass
|
|
|
|
def setLogin(self, login):
|
|
pass
|
|
|
|
def setPassword(self, password):
|
|
pass
|
|
|
|
def getStoryName(self):
|
|
pass
|
|
|
|
def getAuthorName(self):
|
|
pass
|
|
|
|
def getPrintableUrl(self, url):
|
|
pass |