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