嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
Python网络编程基础第二版源代码
《Python基础教程》一书的作者强烈推荐的一本书,这是第二版的源代码。在http://www.apress.com/9781430230038上可以下到此源代码,与大家分享。 Everything you need to know about network programming using ...
.
├── Python网络编程基础第二版源代码.zip
└── foundations-of-python-network-programming-Second Edition
├── README.txt
├── python2
│ ├── 01
│ │ ├── getname.py
│ │ ├── search1.py
│ │ ├── search2.py
│ │ ├── search3.py
│ │ ├── search4.py
│ │ └── search4.txt
│ ├── 02
│ │ ├── big_sender.py
│ │ ├── udp_broadcast.py
│ │ ├── udp_local.py
│ │ └── udp_remote.py
│ ├── 03
│ │ ├── tcp_deadlock.py
│ │ └── tcp_sixteen.py
│ ├── 04
│ │ ├── dns_basic.py
│ │ ├── dns_mx.py
│ │ ├── forward_reverse.py
│ │ └── www_ping.py
│ ├── 05
│ │ ├── blocks.py
│ │ └── streamer.py
│ ├── 06
│ │ ├── certfiles.crt
│ │ └── sslclient.py
│ ├── 07
│ │ ├── Bench.sh
│ │ ├── Test.sh
│ │ ├── TestLancelot.conf
│ │ ├── client.py
│ │ ├── lancelot.py
│ │ ├── lancelot_tests.py
│ │ ├── my_trace.py
│ │ ├── server_SocketServer.py
│ │ ├── server_async.py
│ │ ├── server_multi.py
│ │ ├── server_poll.py
│ │ ├── server_simple.py
│ │ └── server_twisted.py
│ ├── 08
│ │ ├── hashing.py
│ │ ├── queuecrazy.py
│ │ └── squares.py
│ ├── 09
│ │ ├── get_rfc2616.py
│ │ └── verbose_http.py
│ ├── 10
│ │ ├── excerpt.html
│ │ ├── fetch_mechanize.py
│ │ ├── fetch_urllib2.py
│ │ ├── phoenix-tidied.html
│ │ ├── phoenix.html
│ │ └── weather.py
│ ├── 11
│ │ ├── bottle_app.py
│ │ ├── bottle_template.html
│ │ └── wsgi_app.py
│ ├── 12
│ │ ├── message.txt
│ │ ├── 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
│ │ ├── test.txt
│ │ ├── test.txt.gz
│ │ ├── trad_gen_newhdrs.py
│ │ ├── trad_gen_simple.py
│ │ └── trad_parse.py
│ ├── 13
│ │ ├── debug.py
│ │ ├── ehlo.py
│ │ ├── login.py
│ │ ├── simple.py
│ │ └── tls.py
│ ├── 14
│ │ ├── download-and-delete.py
│ │ ├── mailbox.py
│ │ └── popconn.py
│ ├── 15
│ │ ├── folder_info.py
│ │ ├── mailbox_summary.py
│ │ ├── open_imap.py
│ │ ├── open_imap.txt
│ │ ├── open_imaplib.py
│ │ ├── open_imaplib.txt
│ │ └── simple_client.py
│ ├── 16
│ │ ├── fabfile.py
│ │ ├── sftp.py
│ │ ├── shell.py
│ │ ├── ssh_commands.py
│ │ ├── ssh_simple.py
│ │ ├── ssh_simple.txt
│ │ ├── ssh_threads.py
│ │ ├── telnet_codes.py
│ │ └── telnet_login.py
│ ├── 17
│ │ ├── advbinarydl.py
│ │ ├── advbinaryul.py
│ │ ├── asciidl.py
│ │ ├── binarydl.py
│ │ ├── binaryul.py
│ │ ├── connect.py
│ │ ├── dir.py
│ │ ├── nlst.py
│ │ └── recursedl.py
│ └── 18
│ ├── 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
└── python3
├── 01
│ ├── getname.py
│ ├── search1.py
│ ├── search2.py
│ ├── search3.py
│ ├── search4.py
│ └── search4.txt
├── 02
│ ├── big_sender.py
│ ├── udp_broadcast.py
│ ├── udp_local.py
│ └── udp_remote.py
├── 03
│ ├── tcp_deadlock.py
│ └── tcp_sixteen.py
├── 04
│ ├── dns_basic.py
│ ├── dns_mx.py
│ ├── forward_reverse.py
│ └── www_ping.py
├── 05
│ ├── blocks.py
│ └── streamer.py
├── 06
│ ├── certfiles.crt
│ └── sslclient.py
├── 07
│ ├── Bench.sh
│ ├── Test.sh
│ ├── TestLancelot.conf
│ ├── client.py
│ ├── lancelot.py
│ ├── lancelot_tests.py
│ ├── my_trace.py
│ ├── server_SocketServer.py
│ ├── server_async.py
│ ├── server_multi.py
│ ├── server_poll.py
│ ├── server_simple.py
│ └── server_twisted.py
├── 08
│ ├── hashing.py
│ ├── queuecrazy.py
│ └── squares.py
├── 09
│ ├── get_rfc2616.py
│ └── verbose_http.py
├── 10
│ ├── excerpt.html
│ ├── fetch_mechanize.py
│ ├── fetch_urllib2.py
│ ├── phoenix-tidied.html
│ ├── phoenix.html
│ └── weather.py
├── 11
│ ├── bottle_app.py
│ ├── bottle_template.html
│ └── wsgi_app.py
├── 12
│ ├── message.txt
│ ├── 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
│ ├── test.txt
│ ├── test.txt.gz
│ ├── trad_gen_newhdrs.py
│ ├── trad_gen_simple.py
│ └── trad_parse.py
├── 13
│ ├── debug.py
│ ├── ehlo.py
│ ├── login.py
│ ├── simple.py
│ └── tls.py
├── 14
│ ├── download-and-delete.py
│ ├── mailbox.py
│ └── popconn.py
├── 15
│ ├── folder_info.py
│ ├── mailbox_summary.py
│ ├── open_imap.py
│ ├── open_imap.txt
│ ├── open_imaplib.py
│ ├── open_imaplib.txt
│ └── simple_client.py
├── 16
│ ├── fabfile.py
│ ├── sftp.py
│ ├── shell.py
│ ├── ssh_commands.py
│ ├── ssh_simple.py
│ ├── ssh_simple.txt
│ ├── ssh_threads.py
│ ├── telnet_codes.py
│ └── telnet_login.py
├── 17
│ ├── advbinarydl.py
│ ├── advbinaryul.py
│ ├── asciidl.py
│ ├── binarydl.py
│ ├── binaryul.py
│ ├── connect.py
│ ├── dir.py
│ ├── nlst.py
│ └── recursedl.py
└── 18
├── 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
39 directories, 206 files