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


Python IMAP.get_quota_root方法代码示例

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


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

示例1: _

# 需要导入模块: from pykolab.imap import IMAP [as 别名]
# 或者: from pykolab.imap.IMAP import get_quota_root [as 别名]
     print "Folder: %s" % (quota_folder)
     if not used == None and not quota == None:
         if quota == 0:
             print >> sys.stderr, _("The quota for folder %s is set to literally allow 0KB of storage.") % (quota_folder)
             print "%d (Used: %d, Percentage: %s)" % (quota, used, u'\u221E')
         else:
             percentage = round(((float)(used)/(float)(quota)) * 100.0, 1)
             print "%d (Used: %d, Percentage: %d)" % (quota, used, percentage)
     else:
         if used == None:
             print "%d (Used: %d, Percentage: %d)" % (quota, 0, 0)
         else:
             print "No quota"
 except:
     try:
         (quota_root, used, quota) = imap.get_quota_root(quota_folder)
         print "Folder: %s" % (quota_folder)
         if not quota_root == None and not used == None and not quota == None:
             if quota == 0:
                 print >> sys.stderr, _("The quota for folder %s is set to literally allow 0KB of storage.") % (quota_folder)
                 print "%d (Used: %d, Percentage: %d)" % (quota, used, u'\u221E')
             else:
                 percentage = round(((float)(used)/(float)(quota)) * 100.0, 1)
                 print "%d (Root: %s, Used: %d, Percentage: %d)" % (quota, quota_root, used, percentage)
         else:
             if used == None and not quota_root == None:
                 print "%d (Root: %s, Used: %d, Percentage: %d)" % (quota, quota_root, 0, 0)
             else:
                 print "No quota"
     except:
         print "Folder: %s" % (quota_folder)
开发者ID:tpokorra,项目名称:pykolab,代码行数:33,代码来源:cmd_list_quota.py


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