在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → 《Python Web开发实战(董伟明)》源代码

《Python Web开发实战(董伟明)》源代码

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:1.29M
  • 下载次数:83
  • 浏览次数:329
  • 发布时间:2020-06-04
  • 实例类别:Python语言基础
  • 发 布 人:tongyan
  • 文件格式:.zip
  • 所需积分:5
 相关标签: python web pdf 源代码 开发

实例介绍

【实例简介】

【实例截图】

from clipboard

【核心代码】

《Python Web开发实战(董伟明)》 源代码

└── 源代码
    ├── Dockerfile
    ├── LICENSE
    ├── README.md
    ├── Vagrantfile
    ├── app.py
    ├── chapter10
    │   └── section2
    │       ├── __init__.py
    │       ├── app.py
    │       ├── calc.thrift
    │       ├── client.py
    │       ├── client_with_thriftpy.py
    │       ├── config.py
    │       ├── ext.py
    │       ├── gen-py
    │       │   ├── __init__.py
    │       │   └── pastefile
    │       │       ├── PasteFileService-remote
    │       │       ├── PasteFileService.py
    │       │       ├── __init__.py
    │       │       ├── constants.py
    │       │       └── ttypes.py
    │       ├── mimes.py
    │       ├── models.py
    │       ├── pastefile.thrift
    │       ├── server.py
    │       ├── server_with_thriftpy.py
    │       └── utils.py
    ├── chapter11
    │   ├── section1
    │   │   ├── data
    │   │   │   ├── a-2016-06-30_00000.bz2
    │   │   │   ├── b-2016-06-30_00000.bz2
    │   │   │   ├── c-2016-06-30_00000.bz2
    │   │   │   └── d-2016-06-30_00000.bz2
    │   │   ├── map_reduce.py
    │   │   └── parallel.py
    │   ├── section2
    │   │   └── tyrion.py
    │   ├── section3
    │   │   ├── app.py
    │   │   ├── chart_styles.py
    │   │   ├── chart_styles.xlsx
    │   │   ├── core_user_report.py
    │   │   ├── core_user_report.xlsx
    │   │   ├── email_with_mako.py
    │   │   ├── pv_uv.py
    │   │   ├── pv_uv.xlsx
    │   │   ├── statistics.csv
    │   │   └── tmpl
    │   │       ├── bootstrap.min.css
    │   │       └── statistics.txt
    │   └── section4
    │       ├── csv
    │       │   └── 20160423.csv
    │       └── pv_uv.xlsx
    ├── chapter12
    │   ├── section1
    │   │   ├── ipython_config.py
    │   │   ├── py_autoreload.py
    │   │   └── py_debug.py
    │   ├── section2
    │   │   ├── Untitled.html
    │   │   ├── Untitled.ipynb
    │   │   ├── custom.js
    │   │   ├── echarts.ipynb
    │   │   ├── foo.py
    │   │   ├── jupyter_notebook_config.py
    │   │   ├── mycert.pem
    │   │   ├── mykey.key
    │   │   ├── rich-display.ipynb
    │   │   ├── untitled.txt
    │   │   └── web_develop.tpl
    │   ├── section3
    │   │   ├── __init__.py
    │   │   ├── ipy_test.py
    │   │   ├── line_test.py
    │   │   ├── mem_test.py
    │   │   └── profile_test.py
    │   ├── section4
    │   │   ├── app.py
    │   │   ├── config.py
    │   │   ├── mimes.py
    │   │   ├── shell.py
    │   │   └── utils.py
    │   └── section5
    │       ├── 00-double11.py
    │       ├── 99-hide_attribute.py
    │       ├── custom.css
    │       ├── custom.js
    │       ├── double11.ipynb
    │       └── init_db.py
    ├── chapter13
    │   ├── section1
    │   │   ├── config.py
    │   │   ├── models.py
    │   │   ├── proxy_fetcher.py
    │   │   ├── proxy_fetcher_with_queue.py
    │   │   └── utils.py
    │   ├── section2
    │   │   ├── config.py
    │   │   ├── gevent_spawn.py
    │   │   ├── models.py
    │   │   ├── remove_unavailable_proxy.py
    │   │   ├── search_result.py
    │   │   ├── search_result_with_lock.py
    │   │   └── utils.py
    │   ├── section3
    │   │   ├── config.py
    │   │   ├── models.py
    │   │   ├── save_article_content.py
    │   │   └── utils.py
    │   ├── section4
    │   │   ├── config.py
    │   │   ├── models.py
    │   │   ├── remove_unavailable_proxy.py
    │   │   ├── save_article_content.py
    │   │   ├── save_article_content_with_futures.py
    │   │   └── utils.py
    │   └── section5
    │       ├── aiohttp_fetcher.py
    │       ├── aiohttp_server.py
    │       ├── async_for.py
    │       ├── async_future.py
    │       ├── async_future_with_cb.py
    │       ├── async_with.py
    │       ├── config.py
    │       ├── models.py
    │       ├── new_coroutine.py
    │       ├── old_coroutine.py
    │       ├── save_article_content.py
    │       ├── use_yield.py
    │       └── utils.py
    ├── chapter14
    │   ├── section1
    │   │   ├── contextlib_example.py
    │   │   └── errno_example.py
    │   ├── section3
    │   │   ├── context_lib.py
    │   │   ├── help.txt
    │   │   ├── help_err.txt
    │   │   ├── help_out.txt
    │   │   ├── json_singledispatch.py
    │   │   ├── partial_method.py
    │   │   ├── python3_partial_method.py
    │   │   └── web_cache.py
    │   ├── section4
    │   │   ├── _abi_out.py
    │   │   ├── _add.c
    │   │   ├── _add.o
    │   │   ├── _api_out.c
    │   │   ├── _api_out.o
    │   │   ├── _board.c
    │   │   ├── _board.o
    │   │   ├── board.c
    │   │   ├── board.h
    │   │   ├── board.py
    │   │   ├── build_board.py
    │   │   ├── ceil.c
    │   │   ├── ceil.pyx
    │   │   ├── ceil_cy.c
    │   │   ├── ceil_cy.pyx
    │   │   ├── cffi_abi_out_line.py
    │   │   ├── cffi_api_out_line.py
    │   │   ├── hello
    │   │   ├── hello.c
    │   │   ├── hello.py
    │   │   ├── levenshtein.c
    │   │   ├── levenshtein_c.c
    │   │   ├── levenshtein_c.pyx
    │   │   ├── levenshtein_cy.c
    │   │   ├── levenshtein_cy.pyx
    │   │   ├── levenshtein_cy2.c
    │   │   ├── levenshtein_cy2.pyx
    │   │   ├── levenshtein_p.py
    │   │   ├── setup.py
    │   │   ├── setup_c.py
    │   │   ├── setup_ceil.py
    │   │   ├── setup_ceil_cy.py
    │   │   └── setup_cy2.py
    │   └── section5
    │       ├── douban.png
    │       ├── error.png
    │       ├── notification.py
    │       └── notify
    ├── chapter15
    │   └── section2
    │       ├── ascii.py
    │       ├── ast_transformer.py
    │       ├── ast_visitor.py
    │       ├── check_mc.py
    │       ├── flake8-mc
    │       │   ├── flake8_mc.py
    │       │   └── setup.py
    │       ├── movie_order.py
    │       ├── movie_order_wrong.py
    │       ├── non_ascii.py
    │       ├── pylint_example.py
    │       ├── stubs.py
    │       └── test.py
    ├── chapter2
    │   └── section2
    │       ├── create-venv-script.py
    │       ├── create-venv-script_v2.py
    │       └── pyvenv.py
    ├── chapter3
    │   ├── __init__.py
    │   ├── section1
    │   │   ├── app_api.py
    │   │   ├── app_bp.py
    │   │   ├── app_cli.py
    │   │   ├── app_response.py
    │   │   ├── app_subdomain.py
    │   │   ├── app_view.py
    │   │   ├── app_with_custom_converter.py
    │   │   ├── config.py
    │   │   ├── config.pyc
    │   │   ├── debug.py
    │   │   ├── hello.py
    │   │   ├── simple.py
    │   │   ├── url.py
    │   │   └── user.py
    │   ├── section3
    │   │   ├── __init__.py
    │   │   ├── app_with_sqlalchemy.py
    │   │   ├── config.py
    │   │   ├── consts.py
    │   │   ├── curd.py
    │   │   ├── example1.py
    │   │   ├── exp_sql.py
    │   │   ├── ext.py
    │   │   ├── logger_slow_query.py
    │   │   ├── orm_sql.py
    │   │   ├── raw_sql.py
    │   │   ├── rel_sql.py
    │   │   ├── text_sql.py
    │   │   └── users.py
    │   ├── section4
    │   │   ├── app.py
    │   │   ├── app_with_local_proxy.py
    │   │   ├── config.py
    │   │   ├── consts.py
    │   │   ├── ext.py
    │   │   ├── local.py
    │   │   └── users.py
    │   └── section5
    │       ├── __init__.py
    │       ├── app.py
    │       ├── config.py
    │       ├── ext.py
    │       ├── mimes.py
    │       ├── models.py
    │       ├── requirements.txt
    │       └── utils.py
    ├── chapter4
    │   ├── section1
    │   │   ├── blinker_signal.py
    │   │   └── login_signal.py
    │   ├── section2
    │   │   ├── __init__.py
    │   │   ├── app.py
    │   │   ├── app_admin.py
    │   │   ├── app_assets.py
    │   │   ├── app_debug.py
    │   │   ├── app_migrate.py
    │   │   ├── app_restful.py
    │   │   ├── app_security.py
    │   │   ├── app_wtf.py
    │   │   ├── assets.py
    │   │   ├── config.py
    │   │   ├── ext.py
    │   │   ├── manage.py
    │   │   ├── mimes.py
    │   │   ├── models.py
    │   │   ├── static
    │   │   │   ├── css
    │   │   │   │   ├── all.min.css
    │   │   │   │   ├── base-min.css
    │   │   │   │   └── buttons-min.css
    │   │   │   ├── js
    │   │   │   │   ├── all.min.js
    │   │   │   │   ├── src
    │   │   │   │   │   ├── click.es6
    │   │   │   │   │   ├── common.js
    │   │   │   │   │   └── highlight.js
    │   │   │   │   └── vendor
    │   │   │   │       └── jquery.min.js
    │   │   │   └── scss
    │   │   │       ├── common.scss
    │   │   │       └── forms.scss
    │   │   ├── templates
    │   │   │   └── index.html
    │   │   ├── users.py
    │   │   └── utils.py
    │   └── section3
    │       ├── app_dispatcher_middleware.py
    │       ├── app_lint_middleware.py
    │       ├── app_profiler_middleware.py
    │       ├── app_share_middleware.py
    │       ├── app_tornado.py
    │       ├── config.py
    │       ├── hashed_user.py
    │       └── static
    │           └── main.js
    ├── chapter5
    │   └── section3
    │       └── app.py
    ├── chapter6
    │   ├── __init__.py
    │   ├── section1
    │   │   ├── __init__.py
    │   │   ├── app.py
    │   │   ├── gevent_wsgi.py
    │   │   └── tornado_wsgi.py
    │   ├── section2
    │   │   ├── nginx_gunicorn.conf
    │   │   └── nginx_uwsgi.conf
    │   ├── section3
    │   │   ├── app_with_mc.py
    │   │   ├── mc.py
    │   │   └── mc_decorator.py
    │   ├── section4
    │   │   ├── __init__.py
    │   │   ├── lastest_files.py
    │   │   ├── lastest_files_with_msgpack.py
    │   │   ├── top_n.py
    │   │   └── user_active.py
    │   ├── section5
    │   │   ├── haproxy.cfg
    │   │   └── rsyslog_haproxy.conf
    │   ├── section6
    │   │   ├── keepalived_lvs_director_primary.conf
    │   │   ├── keepalived_lvs_director_secondary.conf
    │   │   ├── keepalived_lvs_primary.conf
    │   │   ├── keepalived_ngx_primary.conf
    │   │   └── keepalived_ngx_secondary.conf
    │   ├── section7
    │   │   ├── default.vcl
    │   │   ├── error50x.html
    │   │   └── varnish
    │   └── section8
    │       ├── __init__.py
    │       ├── app.py
    │       ├── config.py
    │       ├── example_pymongo.py
    │       ├── ext.py
    │       ├── mimes.py
    │       ├── models.py
    │       ├── mongodb.service
    │       ├── use_big_documents.py
    │       └── utils.py
    ├── chapter7
    │   ├── section1
    │   │   ├── listener.py
    │   │   ├── supervisord.conf
    │   │   ├── supervisord_global.conf
    │   │   └── supervisord_global2.conf
    │   ├── section2
    │   │   ├── fabfile.py
    │   │   └── fabfile_app.py
    │   ├── section3
    │   │   ├── ansible
    │   │   │   ├── dev
    │   │   │   │   ├── jenkins
    │   │   │   │   │   ├── host_vars
    │   │   │   │   │   │   └── 192.168.0.130
    │   │   │   │   │   ├── jenkins.host
    │   │   │   │   │   └── jenkins.yml
    │   │   │   │   └── redis
    │   │   │   │       ├── main.yml
    │   │   │   │       ├── templates
    │   │   │   │       │   ├── redis-server.service
    │   │   │   │       │   ├── redis.conf.j2
    │   │   │   │       │   └── upstart.conf
    │   │   │   │       └── vars.yml
    │   │   │   └── roles
    │   │   │       └── flyapen.jenkins
    │   │   │           ├── LICENCE
    │   │   │           ├── README.md
    │   │   │           ├── defaults
    │   │   │           │   └── main.yml
    │   │   │           ├── files
    │   │   │           │   └── jenkins-ci.org.key
    │   │   │           ├── handlers
    │   │   │           │   └── main.yml
    │   │   │           ├── meta
    │   │   │           │   ├── main.yml
    │   │   │           │   └── main.yml.sample
    │   │   │           ├── tasks
    │   │   │           │   ├── cli.yml
    │   │   │           │   ├── config.yml
    │   │   │           │   ├── dependencies_deb.yml
    │   │   │           │   ├── jenkins.yml
    │   │   │           │   ├── main.yml
    │   │   │           │   ├── plugins.yml
    │   │   │           │   └── repo.yml
    │   │   │           ├── templates
    │   │   │           │   └── hudson.tasks.Mailer.xml.j2
    │   │   │           └── vars
    │   │   │               └── main.yml
    │   │   ├── pillar
    │   │   │   ├── packages.sls
    │   │   │   ├── redis.sls
    │   │   │   └── top.sls
    │   │   └── salt
    │   │       ├── dev
    │   │       │   └── redis
    │   │       │       ├── common.sls
    │   │       │       ├── files
    │   │       │       │   ├── redis-2.8.conf.jinja
    │   │       │       │   └── redis-3.0.conf.jinja
    │   │       │       ├── init.sls
    │   │       │       ├── map.jinja
    │   │       │       └── server.sls
    │   │       └── top.sls
    │   ├── section5
    │   │   ├── __init__.py
    │   │   └── app.py
    │   └── section7
    │       ├── op
    │       └── portforwarder.py
    ├── chapter8
    │   ├── section1
    │   │   ├── doc_test.py
    │   │   ├── ut_case.py
    │   │   ├── ut_suite.py
    │   │   └── ut_suite_with_case.py
    │   ├── section2
    │   │   ├── client.py
    │   │   ├── test_mock.py
    │   │   └── test_pytest.py
    │   └── section3
    │       ├── requirements.txt
    │       ├── tests
    │       │   └── test_pytest.py
    │       └── tox.ini
    ├── chapter9
    │   ├── section2
    │   │   ├── amqp_consumer.py
    │   │   ├── amqp_producer.py
    │   │   └── amqp_producer_with_confirm.py
    │   ├── section3
    │   │   ├── celery_socketio.py
    │   │   ├── proj
    │   │   │   ├── __init__.py
    │   │   │   ├── app.py
    │   │   │   ├── celery.py
    │   │   │   ├── celeryconfig.py
    │   │   │   └── tasks.py
    │   │   ├── projb
    │   │   │   ├── __init__.py
    │   │   │   ├── celery
    │   │   │   ├── celery.py
    │   │   │   ├── celeryconfig.py
    │   │   │   └── tasks.py
    │   │   └── projq
    │   │       ├── __init__.py
    │   │       ├── celery.py
    │   │       ├── celeryconfig.py
    │   │       └── tasks.py
    │   └── section4
    │       ├── kombu_consumer.py
    │       ├── kombu_producer.py
    │       ├── librabbitmq_consumer.py
    │       ├── librabbitmq_producer.py
    │       └── proj
    │           ├── __init__.py
    │           ├── app.py
    │           ├── celery
    │           ├── celery.py
    │           ├── celeryconfig.py
    │           └── tasks.py
    ├── data
    │   ├── dump.zip
    │   └── fake_useragent.json
    ├── databases
    │   └── schema.sql
    ├── errata.md
    ├── setup.md
    ├── static
    │   ├── img
    │   │   ├── arrow.svg
    │   │   ├── audio.png
    │   │   ├── binary.png
    │   │   ├── link.svg
    │   │   ├── pdf.png
    │   │   └── video.png
    │   ├── javascripts
    │   │   ├── fetch.js
    │   │   ├── index.js
    │   │   ├── jquery.min.js
    │   │   ├── success.js
    │   │   └── vendors.js
    │   └── stylesheets
    │       ├── bootstrap.min.css
    │       └── index.css
    └── templates
        ├── chapter11
        │   └── section4
        │       └── csv.html
        ├── chapter3
        │   ├── section1
        │   │   └── users.html
        │   ├── section2
        │   │   ├── jinja2
        │   │   │   ├── base.html
        │   │   │   ├── hello.html
        │   │   │   ├── hello_macro.html
        │   │   │   ├── index.html
        │   │   │   ├── macro.html
        │   │   │   └── simple.html
        │   │   └── mako
        │   │       ├── base.html
        │   │       ├── hello.mako
        │   │       ├── index.html
        │   │       ├── my_filters.html
        │   │       ├── page_filters.html
        │   │       ├── simple.html
        │   │       └── utils.html
        │   ├── section4
        │   │   └── user.html
        │   └── section5
        │       ├── hello.html
        │       └── test.plim
        ├── chapter4
        │   └── section2
        │       ├── authenticated-admin.html
        │       ├── login_user.html
        │       └── register.html
        ├── chapter5
        │   └── section3
        │       ├── signin.html
        │       ├── signin_fetch.html
        │       └── signin_xhr.html
        ├── chapter9
        │   └── section3
        │       └── index.html
        └── r
            ├── index.html
            └── success.html

125 directories, 417 files



实例下载地址

《Python Web开发实战(董伟明)》源代码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警