本文整理汇总了Python中r2.lib.menus.CommentSortMenu.visible_options方法的典型用法代码示例。如果您正苦于以下问题:Python CommentSortMenu.visible_options方法的具体用法?Python CommentSortMenu.visible_options怎么用?Python CommentSortMenu.visible_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类r2.lib.menus.CommentSortMenu
的用法示例。
在下文中一共展示了CommentSortMenu.visible_options方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: from r2.lib.menus import CommentSortMenu [as 别名]
# 或者: from r2.lib.menus.CommentSortMenu import visible_options [as 别名]
pref_hide_ups=VBoolean('hide_ups'),
pref_hide_downs=VBoolean('hide_downs'),
pref_over_18=VBoolean('over_18'),
pref_research=VBoolean('research'),
pref_numsites=VInt('numsites', 1, 100),
pref_lang=VLang('lang'),
pref_media=VOneOf('media', ('on', 'off', 'subreddit')),
pref_compress=VBoolean('compress'),
pref_domain_details=VBoolean('domain_details'),
pref_min_link_score=VInt('min_link_score', -100, 100),
pref_min_comment_score=VInt('min_comment_score', -100, 100),
pref_num_comments=VInt('num_comments', 1, g.max_comments,
default=g.num_comments),
pref_highlight_controversial=VBoolean('highlight_controversial'),
pref_default_comment_sort=VOneOf('default_comment_sort',
CommentSortMenu.visible_options()),
pref_ignore_suggested_sort=VBoolean("ignore_suggested_sort"),
pref_show_stylesheets=VBoolean('show_stylesheets'),
pref_show_flair=VBoolean('show_flair'),
pref_show_link_flair=VBoolean('show_link_flair'),
pref_no_profanity=VBoolean('no_profanity'),
pref_label_nsfw=VBoolean('label_nsfw'),
pref_show_promote=VBoolean('show_promote'),
pref_mark_messages_read=VBoolean("mark_messages_read"),
pref_threaded_messages=VBoolean("threaded_messages"),
pref_collapse_read_messages=VBoolean("collapse_read_messages"),
pref_email_messages=VBoolean("email_messages"),
pref_private_feeds=VBoolean("private_feeds"),
pref_store_visits=VBoolean('store_visits'),
pref_hide_ads=VBoolean("hide_ads"),
pref_show_trending=VBoolean("show_trending"),
示例2:
# 需要导入模块: from r2.lib.menus import CommentSortMenu [as 别名]
# 或者: from r2.lib.menus.CommentSortMenu import visible_options [as 别名]
pref_public_votes=VBoolean("public_votes"),
pref_hide_from_robots=VBoolean("hide_from_robots"),
pref_hide_ups=VBoolean("hide_ups"),
pref_hide_downs=VBoolean("hide_downs"),
pref_over_18=VBoolean("over_18"),
pref_research=VBoolean("research"),
pref_numsites=VInt("numsites", 1, 100),
pref_lang=VLang("lang"),
pref_media=VOneOf("media", ("on", "off", "subreddit")),
pref_compress=VBoolean("compress"),
pref_domain_details=VBoolean("domain_details"),
pref_min_link_score=VInt("min_link_score", -100, 100),
pref_min_comment_score=VInt("min_comment_score", -100, 100),
pref_num_comments=VInt("num_comments", 1, g.max_comments, default=g.num_comments),
pref_highlight_controversial=VBoolean("highlight_controversial"),
pref_default_comment_sort=VOneOf("default_comment_sort", CommentSortMenu.visible_options()),
pref_ignore_suggested_sort=VBoolean("ignore_suggested_sort"),
pref_show_stylesheets=VBoolean("show_stylesheets"),
pref_show_flair=VBoolean("show_flair"),
pref_show_link_flair=VBoolean("show_link_flair"),
pref_no_profanity=VBoolean("no_profanity"),
pref_label_nsfw=VBoolean("label_nsfw"),
pref_show_promote=VBoolean("show_promote"),
pref_mark_messages_read=VBoolean("mark_messages_read"),
pref_threaded_messages=VBoolean("threaded_messages"),
pref_collapse_read_messages=VBoolean("collapse_read_messages"),
pref_email_messages=VBoolean("email_messages"),
pref_private_feeds=VBoolean("private_feeds"),
pref_store_visits=VBoolean("store_visits"),
pref_hide_ads=VBoolean("hide_ads"),
pref_show_trending=VBoolean("show_trending"),