def __init__(self, host, username, password): BlogService.__init__(self, "www.livejournal.com", username, password) self.server = Server("http://www.livejournal.com/interface/xmlrpc")
def __init__(self, host, username, password, path="", feedpath="", postpath=""): self.id_re = re.compile(r'(\d+)$') BlogService.__init__(self,host, username, password) self.path = path self.feedpath = feedpath self.postpath = postpath
def __init__(self,host,username,password): BlogService.__init__(self,host,username,password) self.postre = re.compile('<title>(.*)</title><category>(.*)</category>(.*)',re.S)
def __init__(self,host,username,password): BlogService.__init__(self,self.url,username,password)
def __init__(self,host,username,password): BlogService.__init__(self,"www.livejournal.com",username,password) self.server = Server("http://www.livejournal.com/interface/xmlrpc")
def __init__(self, host, username, password): BlogService.__init__(self, host, username, password) self.postre = re.compile( '<title>(.*)</title><category>(.*)</category>(.*)', re.S)