本文整理汇总了Python中models.Channel.key方法的典型用法代码示例。如果您正苦于以下问题:Python Channel.key方法的具体用法?Python Channel.key怎么用?Python Channel.key使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Channel
的用法示例。
在下文中一共展示了Channel.key方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import key [as 别名]
def get(self):
global is_modified
is_modified = True
for ch in Channel.all():
ch.delete()
for c in CHANNELS_LIST:
channel = Channel(img_url=c["img_url"], name=c["name"])
channel.put()
taskqueue.add(url="/tvfeed/update", method="POST", params={"key": channel.key(), "gogo_id": c["c_id"]})
self.response.out.write("Started")
示例2: post
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import key [as 别名]
def post(self):
"""Handles a POST to the /channel/ resource
Creates a new channel resource (/channel/{id}) and returns
its Location with a 201
"""
channel = Channel()
name = self.request.get('name').rstrip('\n')
channel.name = name
channel.put()
# Not sure I like this ... re-put()ing
if len(channel.name) == 0:
channel.name = 'channel-' + str(channel.key().id())
channel.put()
# If we've got here from a web form, redirect the user to the
# channel list, otherwise return the 201
if self.request.get('channelsubmissionform'):
self.redirect('/channel/')
else:
self.response.headers['Location'] = self.request.url + str(channel.key().id()) + '/'
self.response.set_status(201)