当前位置: 首页>>代码示例>>Python>>正文


Python Video.approx_count方法代码示例

本文整理汇总了Python中models.Video.approx_count方法的典型用法代码示例。如果您正苦于以下问题:Python Video.approx_count方法的具体用法?Python Video.approx_count怎么用?Python Video.approx_count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在models.Video的用法示例。


在下文中一共展示了Video.approx_count方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: library_content_html

# 需要导入模块: from models import Video [as 别名]
# 或者: from models.Video import approx_count [as 别名]
def library_content_html(mobile=False, version_number=None):

    if version_number:
        version = TopicVersion.get_by_number(version_number)
    else:
        version = TopicVersion.get_default_version()

    tree = Topic.get_root(version).make_tree(types = ["Topics", "Video", "Exercise", "Url"])

    videos = [item for item in walk_children(tree) if item.kind()=="Video"]

    root, = prepare(tree)
    topics = root.subtopics

    timestamp = time.time()

    template_values = {
        'topics': topics,
        'is_mobile': mobile,
        # convert timestamp to a nice integer for the JS
        'timestamp': int(round(timestamp * 1000)),
        'version_date': str(version.made_default_on),
        'version_id': version.number,
        'approx_vid_count': Video.approx_count(),
        'exercise_count': Exercise.get_count(),
    }

    html = shared_jinja.get().render_template("library_content_template.html", **template_values)

    return html
开发者ID:di445,项目名称:server,代码行数:32,代码来源:library.py

示例2: get

# 需要导入模块: from models import Video [as 别名]
# 或者: from models.Video import approx_count [as 别名]
 def get(self):
     self.render_jinja2_template('about/faq.html', {
         "selected_id": "faq",
         "approx_vid_count": Video.approx_count()
     })
开发者ID:avh4,项目名称:khan-academy,代码行数:7,代码来源:util_about.py

示例3: get

# 需要导入模块: from models import Video [as 别名]
# 或者: from models.Video import approx_count [as 别名]
 def get(self):
     self.render_jinja2_template('about/about_the_site.html', {
         "selected_id": "the-site",
         "approx_vid_count": Video.approx_count(),
         "gandalf_production_test": gandalf("production_test"),
     })
开发者ID:di445,项目名称:server,代码行数:8,代码来源:util_about.py


注:本文中的models.Video.approx_count方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。