示例#1
0
def postRawStatu(text):
    """ Post status without number, without saving to db"""
    r = RenRen(PAGE_ID)
    r.postStatus(text)
示例#2
0
def postRawStatu(text):
    """ Post status without number, without saving to db"""
    r = RenRen()
    r.postStatus(text)
示例#3
0
def postStatu(status, number):
    text = '#' + str(number) + ' ' + status
    r = RenRen(PAGE_ID)
    r.loginByCookie(COOKIE)
    r.setStatu(text)
示例#4
0
 def handle(self, *v, **u):
     r = RenRen(PAGE_ID)
     r.auth()
示例#5
0
 def handle(self, *v, **u):
     r = RenRen(PAGE_ID)
     r.loginByCookie(COOKIE)
示例#6
0
 def handle(self, *v, **u):
     r = RenRen(PAGE_ID)
     r.loginByCookie(COOKIE)
示例#7
0
def postStatu(status, number):
    text = '#' + str(number) + ' ' + status
    r = RenRen(PAGE_ID)
    r.loginByCookie(COOKIE)
    r.setStatu(text)
示例#8
0
def postRawStatu(text):
    """ Post status without number, without saving to db"""
    r = RenRen(PAGE_ID)
    r.loginByCookie(COOKIE)
    r.setStatu(text)