在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → python 64位常用module

python 64位常用module

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:16.43M
  • 下载次数:3
  • 浏览次数:3
  • 发布时间:2023-11-01
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: python 64位 MOD ul 常用

实例介绍

【实例简介】python 64位常用module
比较常用的python模块,数据库交互,定时,redis,lxml, flask等等

【实例截图】

from clipboard

【核心代码】

.
├── 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


标签: python 64位 MOD ul 常用

实例下载地址

python 64位常用module

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警