基本信息
源码名称:python 64位常用module
源码大小:16.43M
文件格式:.zip
开发语言:Python
更新时间:2023-11-01
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
python 64位常用module
比较常用的python模块,数据库交互,定时,redis,lxml, flask等等

.
├── Python_module
│   ├── Flask-0.9
│   │   ├── AUTHORS
│   │   ├── CHANGES
│   │   ├── Flask.egg-info
│   │   │   ├── PKG-INFO
│   │   │   ├── SOURCES.txt
│   │   │   ├── dependency_links.txt
│   │   │   ├── not-zip-safe
│   │   │   ├── requires.txt
│   │   │   └── top_level.txt
│   │   ├── LICENSE
│   │   ├── MANIFEST.in
│   │   ├── Makefile
│   │   ├── PKG-INFO
│   │   ├── README
│   │   ├── artwork
│   │   │   ├── LICENSE
│   │   │   └── logo-full.svg
│   │   ├── docs
│   │   │   ├── Makefile
│   │   │   ├── _static
│   │   │   │   ├── debugger.png
│   │   │   │   ├── flask.png
│   │   │   │   ├── flaskr.png
│   │   │   │   ├── logo-full.png
│   │   │   │   ├── no.png
│   │   │   │   ├── touch-icon.png
│   │   │   │   └── yes.png
│   │   │   ├── _templates
│   │   │   │   ├── sidebarintro.html
│   │   │   │   └── sidebarlogo.html
│   │   │   ├── advanced_foreword.rst
│   │   │   ├── api.rst
│   │   │   ├── appcontext.rst
│   │   │   ├── becomingbig.rst
│   │   │   ├── blueprints.rst
│   │   │   ├── changelog.rst
│   │   │   ├── conf.py
│   │   │   ├── config.rst
│   │   │   ├── contents.rst.inc
│   │   │   ├── deploying
│   │   │   │   ├── cgi.rst
│   │   │   │   ├── fastcgi.rst
│   │   │   │   ├── index.rst
│   │   │   │   ├── mod_wsgi.rst
│   │   │   │   ├── uwsgi.rst
│   │   │   │   └── wsgi-standalone.rst
│   │   │   ├── design.rst
│   │   │   ├── errorhandling.rst
│   │   │   ├── extensiondev.rst
│   │   │   ├── extensions.rst
│   │   │   ├── flaskdocext.py
│   │   │   ├── flaskext.py
│   │   │   ├── flaskstyle.sty
│   │   │   ├── foreword.rst
│   │   │   ├── htmlfaq.rst
│   │   │   ├── index.rst
│   │   │   ├── installation.rst
│   │   │   ├── latexindex.rst
│   │   │   ├── license.rst
│   │   │   ├── logo.pdf
│   │   │   ├── make.bat
│   │   │   ├── patterns
│   │   │   │   ├── appdispatch.rst
│   │   │   │   ├── appfactories.rst
│   │   │   │   ├── caching.rst
│   │   │   │   ├── deferredcallbacks.rst
│   │   │   │   ├── distribute.rst
│   │   │   │   ├── errorpages.rst
│   │   │   │   ├── fabric.rst
│   │   │   │   ├── favicon.rst
│   │   │   │   ├── fileuploads.rst
│   │   │   │   ├── flashing.rst
│   │   │   │   ├── index.rst
│   │   │   │   ├── jquery.rst
│   │   │   │   ├── lazyloading.rst
│   │   │   │   ├── mongokit.rst
│   │   │   │   ├── packages.rst
│   │   │   │   ├── sqlalchemy.rst
│   │   │   │   ├── sqlite3.rst
│   │   │   │   ├── streaming.rst
│   │   │   │   ├── templateinheritance.rst
│   │   │   │   ├── urlprocessors.rst
│   │   │   │   ├── viewdecorators.rst
│   │   │   │   └── wtforms.rst
│   │   │   ├── quickstart.rst
│   │   │   ├── reqcontext.rst
│   │   │   ├── security.rst
│   │   │   ├── shell.rst
│   │   │   ├── signals.rst
│   │   │   ├── styleguide.rst
│   │   │   ├── templating.rst
│   │   │   ├── testing.rst
│   │   │   ├── tutorial
│   │   │   │   ├── css.rst
│   │   │   │   ├── dbcon.rst
│   │   │   │   ├── dbinit.rst
│   │   │   │   ├── folders.rst
│   │   │   │   ├── index.rst
│   │   │   │   ├── introduction.rst
│   │   │   │   ├── schema.rst
│   │   │   │   ├── setup.rst
│   │   │   │   ├── templates.rst
│   │   │   │   ├── testing.rst
│   │   │   │   └── views.rst
│   │   │   ├── unicode.rst
│   │   │   ├── upgrading.rst
│   │   │   └── views.rst
│   │   ├── examples
│   │   │   ├── blueprintexample
│   │   │   │   ├── blueprintexample.py
│   │   │   │   ├── blueprintexample_test.py
│   │   │   │   └── simple_page
│   │   │   │       ├── __init__.py
│   │   │   │       ├── simple_page.py
│   │   │   │       └── templates
│   │   │   │           └── pages
│   │   │   │               ├── hello.html
│   │   │   │               ├── index.html
│   │   │   │               ├── layout.html
│   │   │   │               └── world.html
│   │   │   ├── flaskr
│   │   │   │   ├── README
│   │   │   │   ├── flaskr.py
│   │   │   │   ├── flaskr_tests.py
│   │   │   │   ├── schema.sql
│   │   │   │   ├── static
│   │   │   │   │   └── style.css
│   │   │   │   └── templates
│   │   │   │       ├── layout.html
│   │   │   │       ├── login.html
│   │   │   │       └── show_entries.html
│   │   │   ├── jqueryexample
│   │   │   │   ├── jqueryexample.py
│   │   │   │   └── templates
│   │   │   │       ├── index.html
│   │   │   │       └── layout.html
│   │   │   └── minitwit
│   │   │       ├── README
│   │   │       ├── minitwit.py
│   │   │       ├── minitwit_tests.py
│   │   │       ├── schema.sql
│   │   │       ├── static
│   │   │       │   └── style.css
│   │   │       └── templates
│   │   │           ├── layout.html
│   │   │           ├── login.html
│   │   │           ├── register.html
│   │   │           └── timeline.html
│   │   ├── flask
│   │   │   ├── __init__.py
│   │   │   ├── app.py
│   │   │   ├── blueprints.py
│   │   │   ├── config.py
│   │   │   ├── ctx.py
│   │   │   ├── debughelpers.py
│   │   │   ├── exceptions.py
│   │   │   ├── ext
│   │   │   │   └── __init__.py
│   │   │   ├── exthook.py
│   │   │   ├── globals.py
│   │   │   ├── helpers.py
│   │   │   ├── logging.py
│   │   │   ├── module.py
│   │   │   ├── session.py
│   │   │   ├── sessions.py
│   │   │   ├── signals.py
│   │   │   ├── templating.py
│   │   │   ├── testing.py
│   │   │   ├── testsuite
│   │   │   │   ├── __init__.py
│   │   │   │   ├── appctx.py
│   │   │   │   ├── basic.py
│   │   │   │   ├── blueprints.py
│   │   │   │   ├── config.py
│   │   │   │   ├── deprecations.py
│   │   │   │   ├── examples.py
│   │   │   │   ├── ext.py
│   │   │   │   ├── helpers.py
│   │   │   │   ├── regression.py
│   │   │   │   ├── signals.py
│   │   │   │   ├── static
│   │   │   │   │   └── index.html
│   │   │   │   ├── subclassing.py
│   │   │   │   ├── templates
│   │   │   │   │   ├── _macro.html
│   │   │   │   │   ├── context_template.html
│   │   │   │   │   ├── escaping_template.html
│   │   │   │   │   ├── mail.txt
│   │   │   │   │   ├── nested
│   │   │   │   │   │   └── nested.txt
│   │   │   │   │   ├── simple_template.html
│   │   │   │   │   └── template_filter.html
│   │   │   │   ├── templating.py
│   │   │   │   ├── test_apps
│   │   │   │   │   ├── blueprintapp
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── apps
│   │   │   │   │   │       ├── __init__.py
│   │   │   │   │   │       ├── admin
│   │   │   │   │   │       │   ├── __init__.py
│   │   │   │   │   │       │   ├── static
│   │   │   │   │   │       │   │   ├── css
│   │   │   │   │   │       │   │   │   └── test.css
│   │   │   │   │   │       │   │   └── test.txt
│   │   │   │   │   │       │   └── templates
│   │   │   │   │   │       │       └── admin
│   │   │   │   │   │       │           └── index.html
│   │   │   │   │   │       └── frontend
│   │   │   │   │   │           ├── __init__.py
│   │   │   │   │   │           └── templates
│   │   │   │   │   │               └── frontend
│   │   │   │   │   │                   └── index.html
│   │   │   │   │   ├── config_module_app.py
│   │   │   │   │   ├── config_package_app
│   │   │   │   │   │   └── __init__.py
│   │   │   │   │   ├── flask_broken
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── b.py
│   │   │   │   │   ├── flask_newext_package
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── submodule.py
│   │   │   │   │   ├── flask_newext_simple.py
│   │   │   │   │   ├── flaskext
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── oldext_package
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   └── submodule.py
│   │   │   │   │   │   └── oldext_simple.py
│   │   │   │   │   ├── importerror.py
│   │   │   │   │   ├── lib
│   │   │   │   │   │   └── python2.5
│   │   │   │   │   │       └── site-packages
│   │   │   │   │   │           ├── SiteEgg.egg
│   │   │   │   │   │           ├── site_app.py
│   │   │   │   │   │           └── site_package
│   │   │   │   │   │               └── __init__.py
│   │   │   │   │   ├── main_app.py
│   │   │   │   │   ├── moduleapp
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── apps
│   │   │   │   │   │       ├── __init__.py
│   │   │   │   │   │       ├── admin
│   │   │   │   │   │       │   ├── __init__.py
│   │   │   │   │   │       │   ├── static
│   │   │   │   │   │       │   │   ├── css
│   │   │   │   │   │       │   │   │   └── test.css
│   │   │   │   │   │       │   │   └── test.txt
│   │   │   │   │   │       │   └── templates
│   │   │   │   │   │       │       └── index.html
│   │   │   │   │   │       └── frontend
│   │   │   │   │   │           ├── __init__.py
│   │   │   │   │   │           └── templates
│   │   │   │   │   │               └── index.html
│   │   │   │   │   ├── path
│   │   │   │   │   │   └── installed_package
│   │   │   │   │   │       └── __init__.py
│   │   │   │   │   └── subdomaintestmodule
│   │   │   │   │       ├── __init__.py
│   │   │   │   │       └── static
│   │   │   │   │           └── hello.txt
│   │   │   │   ├── testing.py
│   │   │   │   └── views.py
│   │   │   ├── views.py
│   │   │   └── wrappers.py
│   │   ├── run-tests.py
│   │   ├── setup.cfg
│   │   └── setup.py
│   ├── Flask-0.9.tar.gz
│   ├── Twisted-13.0.0.win-amd64-py2.7.exe
│   ├── lxml-3.1.2.win-amd64-py2.7.exe
│   ├── py2exe-0.6.10dev.win-amd64-py2.7.exe
│   ├── pyodbc-3.0.6.win-amd64-py2.7.exe
│   ├── python-dateutil-1.5.win-amd64-py2.7.exe
│   ├── pywin32-218.win-amd64-py2.7.exe
│   ├── redis-2.7.2
│   │   ├── CHANGES
│   │   ├── INSTALL
│   │   ├── LICENSE
│   │   ├── MANIFEST.in
│   │   ├── PKG-INFO
│   │   ├── README.md
│   │   ├── redis
│   │   │   ├── __init__.py
│   │   │   ├── _compat.py
│   │   │   ├── client.py
│   │   │   ├── connection.py
│   │   │   ├── exceptions.py
│   │   │   └── utils.py
│   │   ├── redis.egg-info
│   │   │   ├── PKG-INFO
│   │   │   ├── SOURCES.txt
│   │   │   ├── dependency_links.txt
│   │   │   └── top_level.txt
│   │   ├── setup.cfg
│   │   ├── setup.py
│   │   └── tests
│   │       ├── __init__.py
│   │       ├── connection_pool.py
│   │       ├── encoding.py
│   │       ├── lock.py
│   │       ├── pipeline.py
│   │       ├── pubsub.py
│   │       └── server_commands.py
│   ├── redis_queue-0.5
│   │   ├── MANIFEST.in
│   │   ├── PKG-INFO
│   │   ├── authors.txt
│   │   ├── build
│   │   │   ├── bdist.win-amd64
│   │   │   └── lib
│   │   │       └── redis_queue
│   │   │           ├── __init__.py
│   │   │           └── tests
│   │   │               ├── __init__.py
│   │   │               └── test_functional.py
│   │   ├── dist
│   │   │   └── redis_queue-0.5-py2.7.egg
│   │   ├── license.txt
│   │   ├── redis_queue
│   │   │   ├── __init__.py
│   │   │   └── tests
│   │   │       ├── __init__.py
│   │   │       └── test_functional.py
│   │   ├── redis_queue.egg-info
│   │   │   ├── PKG-INFO
│   │   │   ├── SOURCES.txt
│   │   │   ├── dependency_links.txt
│   │   │   ├── requires.txt
│   │   │   ├── top_level.txt
│   │   │   └── zip-safe
│   │   ├── setup.cfg
│   │   └── setup.py
│   └── zope.interface-4.0.5.win-amd64-py2.7.exe
└── python 64位常用module_Python_module.zip

75 directories, 261 files