コード例 #1
0
 def __init__(self, host, username, password):
     BlogService.__init__(self, "www.livejournal.com", username, password)
     self.server = Server("http://www.livejournal.com/interface/xmlrpc")
コード例 #2
0
 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
コード例 #3
0
 def __init__(self,host,username,password):
     BlogService.__init__(self,host,username,password)        
     self.postre = re.compile('<title>(.*)</title><category>(.*)</category>(.*)',re.S)
コード例 #4
0
 def __init__(self,host,username,password):
     BlogService.__init__(self,self.url,username,password)        
コード例 #5
0
 def __init__(self,host,username,password):
     BlogService.__init__(self,"www.livejournal.com",username,password)
     self.server = Server("http://www.livejournal.com/interface/xmlrpc")
コード例 #6
0
 def __init__(self, host, username, password):
     BlogService.__init__(self, host, username, password)
     self.postre = re.compile(
         '<title>(.*)</title><category>(.*)</category>(.*)', re.S)