本文整理汇总了Python中models.Channel.all方法的典型用法代码示例。如果您正苦于以下问题:Python Channel.all方法的具体用法?Python Channel.all怎么用?Python Channel.all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Channel
的用法示例。
在下文中一共展示了Channel.all方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: list_command
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def list_command(self, msg):
"""Handle /list commands."""
lines = []
q = Channel.all().order('-num_members').filter('num_members >', 0)
channels = q.fetch(self._LIST_LIMIT + 1)
if not len(channels):
msg.reply('* No channels exist!')
return
if len(channels) <= self._LIST_LIMIT:
# Show all, sorted by channel name.
channels.sort(key=lambda c: c.name)
lines.append('* All channels:')
else:
# Show the top N channels, sorted by num_members.
channels.pop()
lines.append('* More than %d channels; here are the most popular:' %
self._LIST_LIMIT)
for c in channels:
if c.num_members == 1:
count = '1 person'
else:
count = '%d people' % c.num_members
s = '* - %s (%s)' % (c, count)
lines.append(s)
msg.reply('\n'.join(lines))
示例2: list_command
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def list_command(self, msg):
"""Handle /list commands."""
lines = []
q = Channel.all().order('-num_members').filter('num_members >', 0)
channels = q.fetch(self._LIST_LIMIT + 1)
if not len(channels):
msg.reply(u'* 沒有任何頻道!')
return
if len(channels) <= self._LIST_LIMIT:
# Show all, sorted by channel name.
channels.sort(key=lambda c: c.name)
lines.append('* 所有頻道清單如下:')
else:
# Show the top N channels, sorted by num_members.
channels.pop()
lines.append('* 頻道數超過 %d; 底下是最受歡迎的清單:' %
self._LIST_LIMIT)
for c in channels:
if c.num_members == 1:
count = '1 個人'
else:
count = '%d 個人' % c.num_members
s = '* - %s (%s)' % (c, count)
lines.append(s)
msg.reply(u'\n'.join(lines))
示例3: get
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def get(self, op):
if op == 'channels':
channels = Channel.all().order('-num_members').fetch(self._MAX_CHANNELS)
self.Render('channels.html', {
'channels': channels,
'max': min(len(channels), self._MAX_CHANNELS),
})
elif op == 'transcript':
self.RenderTranscript()
示例4: get
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [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")
示例5: post
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def post(self, hash):
hash = hash.lower()
target = Account.all().filter("hash =", hash).get()
if not target:
target = Account.all().filter("hashes =", hash).get()
source = Account.all().filter("api_key =", self.request.get("api_key")).get()
channel = Channel.all().filter("target =", target).filter("source =", source).get()
approval_notice = None
if not channel and source and target:
channel = Channel(target=target, source=source, outlet=target.get_default_outlet())
channel.put()
approval_notice = channel.get_approval_notice()
channel.send_activation_email()
if channel:
notice = Notification(channel=channel, text=strip_tags(self.request.get("text")), icon=source.source_icon)
for arg in ["title", "link", "icon", "sticky", "tags"]:
value = strip_tags(self.request.get(arg, None))
if value:
setattr(notice, arg, value)
notice.put()
# Increment the counter on the channel to represent number of notices sent
channel.count += 1
channel.put()
if channel.status == "enabled":
notice.dispatch()
self.response.out.write("OK\n")
elif channel.status == "pending":
self.response.set_status(202)
if approval_notice:
approval_notice.dispatch()
self.response.out.write("OK\n")
else:
self.response.out.write("202 Pending approval")
elif channel.status == "disabled":
self.response.set_status(202)
self.response.out.write("202 Accepted but disabled")
else:
self.error(404)
self.response.out.write("404 Target or source not found")
示例6: post
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def post(self):
hash = self.request.path.split('/')[-1]
target = Account.all().filter('hash =', hash).get()
if not target:
target = Account.all().filter('hashes =', hash).get()
source = Account.all().filter('api_key =', self.request.get('api_key')).get()
channel = Channel.all().filter('target =', target).filter('source =', source).get()
approval_notice = None
if not channel and source and target:
channel = Channel(target=target, source=source, outlet=target.get_default_outlet())
channel.put()
approval_notice = channel.get_approval_notice()
channel.send_activation_email()
if channel:
notice = Notification(channel=channel, text=strip_tags(self.request.get('text')), icon=source.source_icon)
for arg in ['title', 'link', 'icon', 'sticky', 'tags']:
value = strip_tags(self.request.get(arg, None))
if value:
setattr(notice, arg, value)
notice.put()
# Increment the counter on the channel to represent number of notices sent
channel.count += 1
channel.put()
if channel.status == 'enabled':
self.response.out.write(notice.dispatch())
elif channel.status == 'pending':
self.response.set_status(202)
if approval_notice:
self.response.out.write(":".join([channel.outlet.hash, approval_notice.to_json()]))
else:
self.response.out.write("202 Pending approval")
elif channel.status == 'disabled':
self.response.set_status(202)
self.response.out.write("202 Accepted but disabled")
else:
self.error(404)
self.response.out.write("404 Target or source not found")
示例7: get
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def get(self):
channels = [channel for channel in Channel.all().order('channel')
if channel.channel.startswith('#')]
self.response.out.write(render('templates/index.html', locals()))
示例8: delete_all_channels
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def delete_all_channels():
while Channel.all().fetch(CHUNK):
db.delete(Channel.all().fetch(CHUNK))
示例9: get
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def get(self):
self.render("admin.html", boards=Channel.all())
示例10: get
# 需要导入模块: from models import Channel [as 别名]
# 或者: from models.Channel import all [as 别名]
def get(self):
for chan in Channel.all().fetch(1000):
channel.send_message(chan.key().name(),"hi")
self.response.out.write(str(chan.key().name())+"<br>")