コード例 #1
0
ファイル: utils.py プロジェクト: elpsycongroo/treehole
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
ファイル: refresh.py プロジェクト: StephenV2012/treehole
 def handle(self, *v, **u):
     r = RenRen(PAGE_ID)
     r.loginByCookie(COOKIE)
コード例 #6
0
ファイル: refresh.py プロジェクト: lovelonglong/treehole
 def handle(self, *v, **u):
     r = RenRen(PAGE_ID)
     r.loginByCookie(COOKIE)
コード例 #7
0
ファイル: utils.py プロジェクト: jincheng9/treehole
def postStatu(status, number):
    text = '#' + str(number) + ' ' + status
    r = RenRen(PAGE_ID)
    r.loginByCookie(COOKIE)
    r.setStatu(text)
コード例 #8
0
ファイル: utils.py プロジェクト: lovelonglong/treehole
def postRawStatu(text):
    """ Post status without number, without saving to db"""
    r = RenRen(PAGE_ID)
    r.loginByCookie(COOKIE)
    r.setStatu(text)