⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 convert_db.py

📁 用python实现的邮件过滤器
💻 PY
字号:
#! /usr/bin/env python"""convert_db.pySimplified version of sb_dbimpexp.py to aid with the change fromdefaulting to dbm in 1.0.x to zodb in 1.1.x.Usage:    sb_dbexpimp [options]        options:            -t type   : type of the database to convert                        (e.g. pickle, dbm, zodb)            -T type   : type of database to convert to                        (e.g. pickle, dbm, zodb)            -n path   : path to the database to convert            -N path   : path of the resulting database            -h        : helpTo convert the database from dbm to ZODB on Windows, simply runningthe script with no options should work.  To convert the database fromdbm to ZODB on linux or OS X, the following should work:    python convert_db.py -n ~/.hammie.db"""# This module is part of the spambayes project, which is Copyright 2002-5# The Python Software Foundation and is covered by the Python Software# Foundation license.__author__ = "Tony Meyer <ta-meyer@ihug.co.nz>"__credits__ = "Tim Stone; all the SpamBayes folk"import osimport sysimport getoptfrom spambayes import storageif __name__ == '__main__':    try:        opts, args = getopt.getopt(sys.argv[1:], 'ht:T:n:N:')    except getopt.error, msg:        print >>sys.stderr, str(msg) + '\n\n' + __doc__        sys.exit()    old_name = old_type = new_name = new_type = None    for opt, arg in opts:        if opt == '-h':            print >>sys.stderr, __doc__            sys.exit()        elif opt == '-t':            old_type = arg        elif opt == '-T':            new_type = arg        elif opt == '-n':            old_name = os.path.expanduser(arg)        elif opt == '-N':            new_name = os.path.expanduser(arg)    storage.convert(old_name, old_type, new_name, new_type)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -