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

📄 scanning__init__.py

📁 用python实现的邮件过滤器
💻 PY
字号:
# To change these resource files, temporarily replace __init__.py with# this file, and install Mike Fletcher's ResourcePackage from# http://resourcepackage.sourceforge.net/  Put __init__.py back before# you check in your edits!"""Design-time __init__.py for resourcepackageThis is the scanning version of __init__.py for yourresource modules. You replace it with a blank or doc-onlyinit when ready to release."""try:    __file__except NameError:    passelse:    import os    if os.path.splitext(os.path.basename( __file__ ))[0] == "__init__":        try:            from resourcepackage import package, defaultgenerators            generators = defaultgenerators.generators.copy()            ### CUSTOMISATION POINT            ## import specialised generators here, such as for wxPython            #from resourcepackage import wxgenerators            #generators.update( wxgenerators.generators )        except ImportError:            pass        else:            package = package.Package(                    packageName = __name__,                    directory = os.path.dirname( os.path.abspath(__file__) ),                    generators = generators,            )            package.scan(                    ### CUSTOMISATION POINT                    ## force true -> always re-loads from external files, otherwise                    ## only reloads if the file is newer than the generated .py file.                    # force = 1,            )# ResourcePackage license added by Richie Hindle <richie@entrian.com>,# since this is "Redistribution and use in source form".  Note that binary# Spambayes packages don't redistribute this file or rely on ResourcePackage;# it's only used at development time (and even developers don't need it# unless they want to change the resources).  Kudos to Mike Fletcher for# ResourcePackage - excellent tool!__license__ = """ResourcePackage License        Copyright (c) 2003, Michael C. Fletcher, All rights reserved.        Redistribution and use in source and binary forms, with or without        modification, are permitted provided that the following conditions        are met:                Redistributions of source code must retain the above copyright                notice, this list of conditions and the following disclaimer.                Redistributions in binary form must reproduce the above                copyright notice, this list of conditions and the following                disclaimer in the documentation and/or other materials                provided with the distribution.                The name of Michael C. Fletcher, or the name of any Contributor,                may not be used to endorse or promote products derived from this                software without specific prior written permission.        THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY        SITUATION ENDANGERING HUMAN LIFE OR PROPERTY.        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS        ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT        LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS        FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE        COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT,        INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES        (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)        HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,        STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)        ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED        OF THE POSSIBILITY OF SUCH DAMAGE."""

⌨️ 快捷键说明

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