在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → Software Architecture with Python(pdf+epub+mobi+code_files).zip

Software Architecture with Python(pdf+epub+mobi+code_files).zip

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:64.43M
  • 下载次数:5
  • 浏览次数:6
  • 发布时间:2023-11-25
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】Software Architecture with Python(pdf epub mobi code_files).zip

【实例截图】

from clipboard

【核心代码】

.
├── Software Architecture with Python(pdf epub mobi code_files).zip_SoftwareArchitecturewithPython.zip
├── Software Architecture with Python_Code.zip
└── SoftwareArchitecturewithPython_Code
    ├── Chapter02
    │   ├── Listings.txt
    │   ├── Listings.txt~
    │   ├── a1.py
    │   ├── a2.py
    │   ├── a_text.py
    │   ├── a_text2.py
    │   ├── b1.py
    │   ├── b_text.py
    │   ├── b_text2.py
    │   ├── codecomments.py
    │   ├── codecomments2.py
    │   ├── codecomments3.py
    │   ├── codecomments4.py
    │   ├── codecomments5.py
    │   ├── codecomments6.py
    │   ├── codecomments7.py
    │   ├── factorial.py
    │   ├── loop1.py
    │   ├── loop2.py
    │   ├── metrictest.py
    │   ├── metrictest1.py
    │   ├── metrictest2.py
    │   ├── metrictest_fix1.py
    │   ├── metrictest_fix2.py
    │   ├── power.py
    │   ├── rankbase.py
    │   ├── textrank.py
    │   ├── textrank2.py
    │   ├── urlrank.py
    │   └── urlrank2.py
    ├── Chapter03
    │   ├── Listings.txt
    │   ├── datetimehelper.py
    │   ├── factorial.py
    │   ├── fakelogger.py
    │   ├── palindrome1.py
    │   ├── palindrome2.py
    │   ├── palindrome3.py
    │   ├── selenium_testcase.py
    │   ├── test_datetimehelper1.py
    │   ├── test_datetimehelper2.py
    │   ├── test_datetimehelper_object.py
    │   ├── test_palindrome1.py
    │   ├── test_palindrome2.py
    │   ├── test_palindrome3.py
    │   ├── test_textsearch.py
    │   ├── textsearcher.py
    │   └── url_data.py
    ├── Chapter04
    │   ├── Listings.txt
    │   ├── big_o.py
    │   ├── bloomtest.py
    │   ├── chainmap_example.py
    │   ├── common_items.py
    │   ├── defaultdict_example.py
    │   ├── hound_words.py
    │   ├── mem_profile_example.py
    │   ├── named.py
    │   ├── objgraph_example.py
    │   ├── ordered.py
    │   ├── plot.py
    │   ├── primes.py
    │   ├── rotate.py
    │   ├── sub_string.py
    │   └── sub_string2.py
    ├── Chapter05
    │   ├── Listings.txt
    │   ├── async_fetch_url.py
    │   ├── async_fetch_url2.py
    │   ├── asyncio_tasks.py
    │   ├── celery_mandelbrot.py
    │   ├── concurrent_factorial.py
    │   ├── concurrent_thumbnail.py
    │   ├── generator_tasks.py
    │   ├── mandelbrot.py
    │   ├── mandelbrot_mp.py
    │   ├── mandelbrot_tasks.py
    │   ├── prime_joblib.py
    │   ├── prime_process.py
    │   ├── prime_thread.py
    │   ├── requirements.txt
    │   ├── sort_counter.py
    │   ├── sort_counter_mp.py
    │   ├── sort_in_memory.py
    │   ├── thumbnail_converter.py
    │   ├── thumbnail_limit_lock.py
    │   ├── thumbnail_limit_sema.py
    │   ├── thumbnail_pc.py
    │   ├── thumbnail_url_controller.py
    │   └── uwsgi.conf
    ├── Chapter06
    │   ├── Listings.txt
    │   ├── compare_passwords.py
    │   ├── crytpo_password_compare.py
    │   ├── guessing.py
    │   ├── guessing_fix.py
    │   ├── len_overflow.py
    │   ├── passwd.db
    │   ├── print_employee.py
    │   ├── safe_root
    │   ├── ssti-example-dos-fix.py
    │   ├── ssti-example-dos.py
    │   ├── ssti-example-fixed.py
    │   ├── ssti-example.py
    │   ├── test_eval.py
    │   ├── test_eval2.py
    │   ├── test_serialize.py
    │   ├── test_serialize_json.py
    │   └── test_serialize_safe.py
    ├── Chapter07
    │   ├── Listings.txt
    │   ├── __pycache__
    │   │   ├── adapter.cpython-35.pyc
    │   │   ├── adapter_o.cpython-35.pyc
    │   │   ├── borg.cpython-35.pyc
    │   │   ├── builder.cpython-35.pyc
    │   │   ├── facade.cpython-35.pyc
    │   │   ├── factory.cpython-35.pyc
    │   │   ├── hash_stream_run.cpython-35.pyc
    │   │   ├── iterator.cpython-35.pyc
    │   │   ├── observer.cpython-35.pyc
    │   │   ├── prototype.cpython-35.pyc
    │   │   ├── prototype2.cpython-35.pyc
    │   │   ├── proxy.cpython-35.pyc
    │   │   ├── singleton.cpython-35.pyc
    │   │   └── state.cpython-35.pyc
    │   ├── adapter.py
    │   ├── adapter_o.py
    │   ├── borg.py
    │   ├── builder.py
    │   ├── facade.py
    │   ├── factory.py
    │   ├── hash_stream.py
    │   ├── hash_stream2.py
    │   ├── hasher.py
    │   ├── hasher.pyc
    │   ├── iterator.py
    │   ├── observer.py
    │   ├── observer_async.py
    │   ├── prototype.py
    │   ├── proxy.py
    │   ├── read_stream.pyc
    │   ├── singleton.py
    │   ├── singleton.pyc
    │   └── state.py
    ├── Chapter08
    │   ├── Listings.txt
    │   ├── chatclient.py
    │   ├── chatserver.py
    │   ├── communication.py
    │   ├── eventlet_chat_server.py
    │   ├── gevent_chat_server.py
    │   ├── models.py
    │   ├── pipe_recent_gen.py
    │   ├── pipe_words.py
    │   ├── pipe_words_gen.py
    │   ├── twisted_chat_client.py
    │   ├── twisted_chat_server.py
    │   └── twisted_fetch_url.py
    ├── Chapter09
    │   ├── Listing.txt
    │   ├── dependencies.yaml
    │   ├── fabfile.py
    │   └── mandelbrot
    │       ├── README
    │       ├── mandelbrot
    │       │   ├── __init__.py
    │       │   ├── mp
    │       │   │   ├── __init__.py
    │       │   │   └── mandelbrot.py
    │       │   └── simple
    │       │       ├── __init__.py
    │       │       └── mandelbrot.py
    │       └── setup.py
    ├── Chapter10
    │   ├── Listings.txt
    │   ├── custom_logger.py
    │   ├── external_api.py
    │   ├── maxsubarray.py
    │   ├── maxsubarray_v2.py
    │   ├── maxsubarray_v3.py
    │   ├── maxsubarray_v4.py
    │   ├── mocking_data.py
    │   ├── random_data.py
    │   └── word_searcher.py
    └── README.txt

16 directories, 174 files


标签:

实例下载地址

Software Architecture with Python(pdf+epub+mobi+code_files).zip

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警