Pull Requests 0 Commits 999 Releases 0

Sin Descripción

Brightcells: a7cbbf15a7 Update max_length for CharField %!s(int64=8) %!d(string=hace) años
..
0001_initial.py 30daca135b add api message_list_api/message_type_list_api/message_read_api %!s(int64=10) %!d(string=hace) años
0002_auto_20160120_1830.py a121b75ff2 add db_index=True for status field %!s(int64=10) %!d(string=hace) años
0003_systemmessageinfo_systemmessagereadinfo.py 165424743a modify message relative apis %!s(int64=10) %!d(string=hace) años
0004_systemmessagedeleteinfo.py 165424743a modify message relative apis %!s(int64=10) %!d(string=hace) años
0005_auto_20160422_1322.py 102152ca4a add api lensman_photo_bought & modify api wx_order_create_api and adjust return field %!s(int64=10) %!d(string=hace) años
0006_systemmessageinfo_src.py ee7388cd15 add src for SystemMessageInfo %!s(int64=9) %!d(string=hace) años
0007_auto_20160907_1740.py 27d3ec8fb1 add src for LatestAppInfo/SplashInfo %!s(int64=9) %!d(string=hace) años
0008_auto_20170315_2243.py 2eba3ed7f9 Add guest login for tourguide %!s(int64=9) %!d(string=hace) años
0009_auto_20170814_2001.py 65db8b1bc1 Add Src PAIAI_LENSMAN2 %!s(int64=8) %!d(string=hace) años
0010_auto_20170814_2004.py c3970eff70 Add Src PAIAI_LENSMAN2 %!s(int64=8) %!d(string=hace) años
0011_auto_20170821_1615.py 268aa4ebe3 Add unique_together = (('user_id', 'msg_id'),) for SystemMessageReadInfo/SystemMessageDeleteInfo %!s(int64=8) %!d(string=hace) años
0012_auto_20180101_2220.py 9bb56c50cc Makemigrations %!s(int64=8) %!d(string=hace) años
0013_auto_20180103_0446.py a7cbbf15a7 Update max_length for CharField %!s(int64=8) %!d(string=hace) años
__init__.py 30daca135b add api message_list_api/message_type_list_api/message_read_api %!s(int64=10) %!d(string=hace) años
kodo - Gogs: Go Git Service

Brak opisu

rwxacode.py 600B

    # -*- coding: utf-8 -*- from utils.redis.connect import r from utils.redis.rkeys import WXA_CODE_SCENE_PAGE_QINIUURL_MAPPING, WXA_CODE_SID_SCENE_MAPPING def set_wxa_code_info(scene, page, qiniu_url, sid): p = r.pipeline() p.hset(WXA_CODE_SCENE_PAGE_QINIUURL_MAPPING, '{0}:{1}'.format(scene, page), qiniu_url) p.hset(WXA_CODE_SID_SCENE_MAPPING, sid, scene) p.execute() def get_wxa_code_qiniu_url(scene, page): return r.hget(WXA_CODE_SCENE_PAGE_QINIUURL_MAPPING, '{0}:{1}'.format(scene, page)) def get_wxa_code_scene_(sid): return r.hget(WXA_CODE_SID_SCENE_MAPPING, sid)