嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
foundations-of-python-network-programming-14
├── 9781430258544.jpg
├── LICENSE.txt
├── README.md
├── contributing.md
└── source
├── README.md
├── chapter01
│ ├── README.md
│ ├── getname.py
│ ├── search1.py
│ ├── search2.py
│ ├── search3.py
│ ├── search4.py
│ ├── search4.txt
│ └── stringcodes.py
├── chapter02
│ ├── README.md
│ ├── big_sender.py
│ ├── udp_broadcast.py
│ ├── udp_local.py
│ └── udp_remote.py
├── chapter03
│ ├── README.md
│ ├── tcp_deadlock.py
│ └── tcp_sixteen.py
├── chapter04
│ ├── README.md
│ ├── dns_basic.py
│ ├── dns_mx.py
│ └── www_ping.py
├── chapter05
│ ├── README.md
│ ├── blocks.py
│ ├── examples.rst
│ └── streamer.py
├── chapter06
│ ├── README.md
│ ├── ca.crt
│ ├── features.py
│ ├── localhost.pem
│ ├── safe_tls.py
│ └── test_tls.py
├── chapter07
│ ├── README.md
│ ├── client.py
│ ├── in_zen1.py
│ ├── in_zen2.py
│ ├── inetd.conf
│ ├── srv_async.py
│ ├── srv_asyncio1.py
│ ├── srv_asyncio2.py
│ ├── srv_legacy1.py
│ ├── srv_legacy2.py
│ ├── srv_single.py
│ ├── srv_threaded.py
│ ├── test.sh
│ ├── trace.out
│ └── zen_utils.py
├── chapter08
│ ├── README.md
│ ├── hashing.py
│ ├── queuecrazy.py
│ ├── queuepi.py
│ └── squares.py
├── chapter09
│ ├── README.md
│ ├── config.py
│ └── examples.doctest
├── chapter10
│ ├── README.md
│ ├── _test.py
│ ├── timeapp_raw.py
│ ├── timeapp_webob.py
│ ├── timeapp_werkz.py
│ └── wsgi_env.py
├── chapter11
│ ├── README.md
│ ├── app_improved.py
│ ├── app_insecure.py
│ ├── attack.js
│ ├── bank.py
│ ├── csrf.html
│ ├── csrf_auto.html
│ ├── djbank
│ │ ├── __init__.py
│ │ ├── admin.py
│ │ ├── fixtures
│ │ │ └── start.json
│ │ ├── models.py
│ │ ├── settings.py
│ │ ├── templates
│ │ │ ├── base.html
│ │ │ ├── index.html
│ │ │ ├── pay.html
│ │ │ └── registration
│ │ │ └── login.html
│ │ ├── urls.py
│ │ ├── views.py
│ │ └── wsgi.py
│ ├── manage.py
│ ├── mscrape.py
│ ├── rscrape1.py
│ ├── rscrape2.py
│ ├── static
│ │ └── style.css
│ ├── templates
│ │ ├── base.html
│ │ ├── index.html
│ │ ├── login.html
│ │ ├── pay.html
│ │ └── pay2.html
│ └── tinysite
│ ├── further.html
│ ├── index.html
│ ├── page1.html
│ ├── page2.html
│ ├── page3.html
│ ├── page4.html
│ ├── page5.html
│ ├── page6.html
│ └── search.html
├── chapter12
│ ├── README.md
│ ├── attachment.gz
│ ├── attachment.txt
│ ├── build_basic_email.py
│ ├── build_mime_email.py
│ ├── build_unicode_email.py
│ ├── display_email.py
│ ├── display_structure.py
│ └── pre-python-3.4
│ ├── README.rst
│ ├── mime_decode.py
│ ├── mime_gen_alt.py
│ ├── mime_gen_basic.py
│ ├── mime_gen_both.py
│ ├── mime_headers.py
│ ├── mime_parse_headers.py
│ ├── mime_structure.py
│ ├── trad_gen_newhdrs.py
│ ├── trad_gen_simple.py
│ └── trad_parse.py
├── chapter13
│ ├── README.md
│ ├── debug.py
│ ├── ehlo.py
│ ├── login.py
│ ├── simple.py
│ └── tls.py
├── chapter14
│ ├── README.md
│ ├── apopconn.py
│ ├── download-and-delete.py
│ ├── mailbox.py
│ └── popconn.py
├── chapter15
│ ├── README.md
│ ├── folder_info.py
│ ├── folder_summary.py
│ ├── open_imap.py
│ ├── open_imaplib.py
│ └── simple_client.py
├── chapter16
│ ├── README.md
│ ├── sftp_get.py
│ ├── shell.py
│ ├── ssh_commands.py
│ ├── ssh_simple.py
│ ├── ssh_threads.py
│ ├── telnet_codes.py
│ └── telnet_login.py
├── chapter17
│ ├── README.md
│ ├── advbinarydl.py
│ ├── advbinaryul.py
│ ├── asciidl.py
│ ├── binarydl.py
│ ├── binaryul.py
│ ├── connect.py
│ ├── dir.py
│ ├── nlst.py
│ └── recursedl.py
├── chapter18
│ ├── README.md
│ ├── jsonrpc_client.py
│ ├── jsonrpc_server.py
│ ├── rpyc_client.py
│ ├── rpyc_server.py
│ ├── testfile.txt
│ ├── xmlrpc_client.py
│ ├── xmlrpc_introspect.py
│ ├── xmlrpc_multicall.py
│ └── xmlrpc_server.py
├── requirements.txt
├── session.txt
└── tools
├── monkeys
│ └── _bootlocale.py
├── run.sh
└── two.sh
29 directories, 171 files