當前位置: 首頁>>代碼示例>>Python>>正文


Python CommentSortMenu.visible_options方法代碼示例

本文整理匯總了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"),
開發者ID:ActivateServices,項目名稱:reddit,代碼行數:33,代碼來源:preferences.py

示例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"),
開發者ID:Shilohtd,項目名稱:reddit,代碼行數:33,代碼來源:preferences.py


注:本文中的r2.lib.menus.CommentSortMenu.visible_options方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。