├── .github └── ISSUE_TEMPLATE │ ├── improvement.md │ └── question.md ├── .gitignore ├── LICENSE ├── README.md ├── articles ├── 11-29-delaing-update.md ├── concludion--.md ├── publish-cookie.md ├── publish-daemonize.md ├── publish-delivery-static-html.md ├── publish-dynamic-response-generation.md ├── publish-improve-to-minimal-web-server.md ├── publish-modulize.md ├── publish-post-parameters.md ├── publish-response-request-view.md ├── publish-template-engine.md ├── publish-threading.md ├── publish-url-resolver.md ├── publish-what-is-http.md └── reason-why-you-should-take-paternity-leave.md ├── books └── introduction-to-web-application-with-python │ ├── config.yaml │ ├── cookie.md │ ├── cover.jpg │ ├── daemonize.md │ ├── delivery-static-html.md │ ├── dynamic-response-generation.md │ ├── epilogue.md │ ├── improve-to-minimal-web-server.md │ ├── introduction.md │ ├── making-silly-web-server-step1.md │ ├── making-silly-web-server-step2.md │ ├── making-silly-web-server-step3.md │ ├── making-silly-web-server-step4.md │ ├── making-silly-web-server.md │ ├── modulize.md │ ├── post-parameters.md │ ├── preface.md │ ├── response-request-view.md │ ├── template-engine.md │ ├── threading.md │ ├── url-resolver.md │ ├── what-is-http.md │ └── what-is-web-application.md ├── codes ├── chapter10 │ └── webserver.py ├── chapter11-2 │ ├── static │ │ └── index.html │ └── webserver.py ├── chapter11 │ ├── static │ │ └── index.html │ └── webserver.py ├── chapter12-2 │ ├── static │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ └── webserver.py ├── chapter12 │ ├── static │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ └── webserver.py ├── chapter13-2 │ ├── static │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── webserver.py │ └── workerthread.py ├── chapter13 │ ├── static │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ └── webserver.py ├── chapter14-2 │ ├── static │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── webserver.py │ └── workerthread.py ├── chapter14 │ ├── static │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── webserver.py │ └── workerthread.py ├── chapter15-2 │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── webserver.py │ └── workerthread.py ├── chapter15 │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── webserver.py │ └── workerthread.py ├── chapter16-2 │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── views.py │ ├── webserver.py │ └── workerthread.py ├── chapter16-3 │ ├── henango │ │ └── http │ │ │ ├── request.py │ │ │ └── response.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── views.py │ ├── webserver.py │ └── workerthread.py ├── chapter16-4 │ ├── henango │ │ └── http │ │ │ ├── request.py │ │ │ └── response.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ ├── views.py │ ├── webserver.py │ └── workerthread.py ├── chapter16 │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── views.py │ ├── webserver.py │ └── workerthread.py ├── chapter17-2 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ └── server │ │ │ ├── server.py │ │ │ └── worker.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ └── views.py ├── chapter17-3 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ └── server │ │ │ ├── server.py │ │ │ └── worker.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ └── views.py ├── chapter17 │ ├── henango │ │ └── http │ │ │ ├── request.py │ │ │ └── response.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ ├── views.py │ ├── webserver.py │ └── workerthread.py ├── chapter18-2 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ └── urls │ │ │ └── pattern.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ └── views.py ├── chapter18-3 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ └── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ └── views.py ├── chapter18-4 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ └── views.py ├── chapter18 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ └── server │ │ │ ├── server.py │ │ │ └── worker.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── urls.py │ └── views.py ├── chapter19-2 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ └── now.html │ ├── urls.py │ └── views.py ├── chapter19-3 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ └── now.html │ ├── urls.py │ └── views.py ├── chapter19-4 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ └── now.html │ ├── urls.py │ └── views.py ├── chapter19-5 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ └── now.html │ ├── urls.py │ └── views.py ├── chapter19-6 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ ├── now.html │ │ ├── parameters.html │ │ ├── show_request.html │ │ └── user_profile.html │ ├── urls.py │ └── views.py ├── chapter19 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ └── now.html │ ├── urls.py │ └── views.py ├── chapter20-2 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ ├── login.html │ │ ├── now.html │ │ ├── parameters.html │ │ ├── show_request.html │ │ ├── user_profile.html │ │ └── welcome.html │ ├── urls.py │ └── views.py ├── chapter20-3 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ ├── login.html │ │ ├── now.html │ │ ├── parameters.html │ │ ├── show_request.html │ │ ├── user_profile.html │ │ └── welcome.html │ ├── urls.py │ └── views.py ├── chapter20-4 │ ├── henango │ │ ├── http │ │ │ ├── cookie.py │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ ├── login.html │ │ ├── now.html │ │ ├── parameters.html │ │ ├── show_request.html │ │ ├── user_profile.html │ │ └── welcome.html │ ├── urls.py │ └── views.py ├── chapter20 │ ├── henango │ │ ├── http │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── server │ │ │ ├── server.py │ │ │ └── worker.py │ │ ├── template │ │ │ └── renderer.py │ │ ├── urls │ │ │ ├── pattern.py │ │ │ └── resolver.py │ │ └── views │ │ │ └── static.py │ ├── settings.py │ ├── start.py │ ├── static │ │ ├── form.html │ │ ├── index.css │ │ ├── index.html │ │ └── logo.png │ ├── templates │ │ ├── now.html │ │ ├── parameters.html │ │ ├── show_request.html │ │ └── user_profile.html │ ├── urls.py │ └── views.py ├── chapter6 │ └── tcpserver.py ├── chapter7 │ ├── client_send.txt │ └── tcpclient.py └── chapter8 │ ├── server_send.txt │ └── tcpserver.py ├── package.json └── pyproject.toml /.github/ISSUE_TEMPLATE/improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/.github/ISSUE_TEMPLATE/improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/README.md -------------------------------------------------------------------------------- /articles/11-29-delaing-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/11-29-delaing-update.md -------------------------------------------------------------------------------- /articles/concludion--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/concludion--.md -------------------------------------------------------------------------------- /articles/publish-cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-cookie.md -------------------------------------------------------------------------------- /articles/publish-daemonize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-daemonize.md -------------------------------------------------------------------------------- /articles/publish-delivery-static-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-delivery-static-html.md -------------------------------------------------------------------------------- /articles/publish-dynamic-response-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-dynamic-response-generation.md -------------------------------------------------------------------------------- /articles/publish-improve-to-minimal-web-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-improve-to-minimal-web-server.md -------------------------------------------------------------------------------- /articles/publish-modulize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-modulize.md -------------------------------------------------------------------------------- /articles/publish-post-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-post-parameters.md -------------------------------------------------------------------------------- /articles/publish-response-request-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-response-request-view.md -------------------------------------------------------------------------------- /articles/publish-template-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-template-engine.md -------------------------------------------------------------------------------- /articles/publish-threading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-threading.md -------------------------------------------------------------------------------- /articles/publish-url-resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-url-resolver.md -------------------------------------------------------------------------------- /articles/publish-what-is-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/publish-what-is-http.md -------------------------------------------------------------------------------- /articles/reason-why-you-should-take-paternity-leave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/articles/reason-why-you-should-take-paternity-leave.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/config.yaml -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/cookie.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/cover.jpg -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/daemonize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/daemonize.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/delivery-static-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/delivery-static-html.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/dynamic-response-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/dynamic-response-generation.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/epilogue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/epilogue.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/improve-to-minimal-web-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/improve-to-minimal-web-server.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/introduction.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/making-silly-web-server-step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/making-silly-web-server-step1.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/making-silly-web-server-step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/making-silly-web-server-step2.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/making-silly-web-server-step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/making-silly-web-server-step3.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/making-silly-web-server-step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/making-silly-web-server-step4.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/making-silly-web-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/making-silly-web-server.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/modulize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/modulize.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/post-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/post-parameters.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/preface.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/response-request-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/response-request-view.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/template-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/template-engine.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/threading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/threading.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/url-resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/url-resolver.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/what-is-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/what-is-http.md -------------------------------------------------------------------------------- /books/introduction-to-web-application-with-python/what-is-web-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/books/introduction-to-web-application-with-python/what-is-web-application.md -------------------------------------------------------------------------------- /codes/chapter10/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter10/webserver.py -------------------------------------------------------------------------------- /codes/chapter11-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter11-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter11-2/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter11-2/webserver.py -------------------------------------------------------------------------------- /codes/chapter11/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter11/static/index.html -------------------------------------------------------------------------------- /codes/chapter11/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter11/webserver.py -------------------------------------------------------------------------------- /codes/chapter12-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter12-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter12-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter12-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter12-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter12-2/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter12-2/webserver.py -------------------------------------------------------------------------------- /codes/chapter12/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter12/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter12/static/index.html -------------------------------------------------------------------------------- /codes/chapter12/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter12/static/logo.png -------------------------------------------------------------------------------- /codes/chapter12/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter12/webserver.py -------------------------------------------------------------------------------- /codes/chapter13-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter13-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter13-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter13-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter13-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter13-2/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter13-2/webserver.py -------------------------------------------------------------------------------- /codes/chapter13-2/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter13-2/workerthread.py -------------------------------------------------------------------------------- /codes/chapter13/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter13/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter13/static/index.html -------------------------------------------------------------------------------- /codes/chapter13/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter13/static/logo.png -------------------------------------------------------------------------------- /codes/chapter13/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter13/webserver.py -------------------------------------------------------------------------------- /codes/chapter14-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter14-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter14-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter14-2/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14-2/webserver.py -------------------------------------------------------------------------------- /codes/chapter14-2/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14-2/workerthread.py -------------------------------------------------------------------------------- /codes/chapter14/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter14/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14/static/index.html -------------------------------------------------------------------------------- /codes/chapter14/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14/static/logo.png -------------------------------------------------------------------------------- /codes/chapter14/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14/webserver.py -------------------------------------------------------------------------------- /codes/chapter14/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter14/workerthread.py -------------------------------------------------------------------------------- /codes/chapter15-2/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15-2/static/form.html -------------------------------------------------------------------------------- /codes/chapter15-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter15-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter15-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter15-2/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15-2/webserver.py -------------------------------------------------------------------------------- /codes/chapter15-2/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15-2/workerthread.py -------------------------------------------------------------------------------- /codes/chapter15/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15/static/form.html -------------------------------------------------------------------------------- /codes/chapter15/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter15/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15/static/index.html -------------------------------------------------------------------------------- /codes/chapter15/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15/static/logo.png -------------------------------------------------------------------------------- /codes/chapter15/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15/webserver.py -------------------------------------------------------------------------------- /codes/chapter15/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter15/workerthread.py -------------------------------------------------------------------------------- /codes/chapter16-2/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-2/static/form.html -------------------------------------------------------------------------------- /codes/chapter16-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter16-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter16-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter16-2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-2/views.py -------------------------------------------------------------------------------- /codes/chapter16-2/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-2/webserver.py -------------------------------------------------------------------------------- /codes/chapter16-2/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-2/workerthread.py -------------------------------------------------------------------------------- /codes/chapter16-3/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter16-3/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter16-3/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/static/form.html -------------------------------------------------------------------------------- /codes/chapter16-3/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter16-3/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/static/index.html -------------------------------------------------------------------------------- /codes/chapter16-3/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/static/logo.png -------------------------------------------------------------------------------- /codes/chapter16-3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/views.py -------------------------------------------------------------------------------- /codes/chapter16-3/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/webserver.py -------------------------------------------------------------------------------- /codes/chapter16-3/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-3/workerthread.py -------------------------------------------------------------------------------- /codes/chapter16-4/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter16-4/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter16-4/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/static/form.html -------------------------------------------------------------------------------- /codes/chapter16-4/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter16-4/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/static/index.html -------------------------------------------------------------------------------- /codes/chapter16-4/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/static/logo.png -------------------------------------------------------------------------------- /codes/chapter16-4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/urls.py -------------------------------------------------------------------------------- /codes/chapter16-4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/views.py -------------------------------------------------------------------------------- /codes/chapter16-4/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/webserver.py -------------------------------------------------------------------------------- /codes/chapter16-4/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16-4/workerthread.py -------------------------------------------------------------------------------- /codes/chapter16/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16/static/form.html -------------------------------------------------------------------------------- /codes/chapter16/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter16/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16/static/index.html -------------------------------------------------------------------------------- /codes/chapter16/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16/static/logo.png -------------------------------------------------------------------------------- /codes/chapter16/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16/views.py -------------------------------------------------------------------------------- /codes/chapter16/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16/webserver.py -------------------------------------------------------------------------------- /codes/chapter16/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter16/workerthread.py -------------------------------------------------------------------------------- /codes/chapter17-2/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter17-2/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter17-2/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter17-2/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter17-2/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/start.py -------------------------------------------------------------------------------- /codes/chapter17-2/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/static/form.html -------------------------------------------------------------------------------- /codes/chapter17-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter17-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter17-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter17-2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/urls.py -------------------------------------------------------------------------------- /codes/chapter17-2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-2/views.py -------------------------------------------------------------------------------- /codes/chapter17-3/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter17-3/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter17-3/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter17-3/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter17-3/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/settings.py -------------------------------------------------------------------------------- /codes/chapter17-3/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/start.py -------------------------------------------------------------------------------- /codes/chapter17-3/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/static/form.html -------------------------------------------------------------------------------- /codes/chapter17-3/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter17-3/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/static/index.html -------------------------------------------------------------------------------- /codes/chapter17-3/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/static/logo.png -------------------------------------------------------------------------------- /codes/chapter17-3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/urls.py -------------------------------------------------------------------------------- /codes/chapter17-3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17-3/views.py -------------------------------------------------------------------------------- /codes/chapter17/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter17/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter17/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/start.py -------------------------------------------------------------------------------- /codes/chapter17/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/static/form.html -------------------------------------------------------------------------------- /codes/chapter17/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter17/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/static/index.html -------------------------------------------------------------------------------- /codes/chapter17/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/static/logo.png -------------------------------------------------------------------------------- /codes/chapter17/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/urls.py -------------------------------------------------------------------------------- /codes/chapter17/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/views.py -------------------------------------------------------------------------------- /codes/chapter17/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/webserver.py -------------------------------------------------------------------------------- /codes/chapter17/workerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter17/workerthread.py -------------------------------------------------------------------------------- /codes/chapter18-2/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter18-2/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter18-2/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter18-2/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter18-2/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter18-2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/settings.py -------------------------------------------------------------------------------- /codes/chapter18-2/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/start.py -------------------------------------------------------------------------------- /codes/chapter18-2/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/static/form.html -------------------------------------------------------------------------------- /codes/chapter18-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter18-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter18-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter18-2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/urls.py -------------------------------------------------------------------------------- /codes/chapter18-2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-2/views.py -------------------------------------------------------------------------------- /codes/chapter18-3/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter18-3/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter18-3/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter18-3/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter18-3/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter18-3/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter18-3/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/settings.py -------------------------------------------------------------------------------- /codes/chapter18-3/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/start.py -------------------------------------------------------------------------------- /codes/chapter18-3/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/static/form.html -------------------------------------------------------------------------------- /codes/chapter18-3/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter18-3/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/static/index.html -------------------------------------------------------------------------------- /codes/chapter18-3/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/static/logo.png -------------------------------------------------------------------------------- /codes/chapter18-3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/urls.py -------------------------------------------------------------------------------- /codes/chapter18-3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-3/views.py -------------------------------------------------------------------------------- /codes/chapter18-4/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter18-4/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter18-4/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter18-4/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter18-4/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter18-4/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter18-4/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter18-4/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/settings.py -------------------------------------------------------------------------------- /codes/chapter18-4/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/start.py -------------------------------------------------------------------------------- /codes/chapter18-4/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/static/form.html -------------------------------------------------------------------------------- /codes/chapter18-4/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter18-4/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/static/index.html -------------------------------------------------------------------------------- /codes/chapter18-4/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/static/logo.png -------------------------------------------------------------------------------- /codes/chapter18-4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/urls.py -------------------------------------------------------------------------------- /codes/chapter18-4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18-4/views.py -------------------------------------------------------------------------------- /codes/chapter18/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter18/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter18/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter18/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter18/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/settings.py -------------------------------------------------------------------------------- /codes/chapter18/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/start.py -------------------------------------------------------------------------------- /codes/chapter18/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/static/form.html -------------------------------------------------------------------------------- /codes/chapter18/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter18/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/static/index.html -------------------------------------------------------------------------------- /codes/chapter18/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/static/logo.png -------------------------------------------------------------------------------- /codes/chapter18/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/urls.py -------------------------------------------------------------------------------- /codes/chapter18/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter18/views.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter19-2/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter19-2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/settings.py -------------------------------------------------------------------------------- /codes/chapter19-2/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/start.py -------------------------------------------------------------------------------- /codes/chapter19-2/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/static/form.html -------------------------------------------------------------------------------- /codes/chapter19-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter19-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter19-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter19-2/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/templates/now.html -------------------------------------------------------------------------------- /codes/chapter19-2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/urls.py -------------------------------------------------------------------------------- /codes/chapter19-2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-2/views.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter19-3/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter19-3/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/settings.py -------------------------------------------------------------------------------- /codes/chapter19-3/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/start.py -------------------------------------------------------------------------------- /codes/chapter19-3/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/static/form.html -------------------------------------------------------------------------------- /codes/chapter19-3/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter19-3/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/static/index.html -------------------------------------------------------------------------------- /codes/chapter19-3/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/static/logo.png -------------------------------------------------------------------------------- /codes/chapter19-3/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/templates/now.html -------------------------------------------------------------------------------- /codes/chapter19-3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/urls.py -------------------------------------------------------------------------------- /codes/chapter19-3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-3/views.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter19-4/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter19-4/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/settings.py -------------------------------------------------------------------------------- /codes/chapter19-4/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/start.py -------------------------------------------------------------------------------- /codes/chapter19-4/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/static/form.html -------------------------------------------------------------------------------- /codes/chapter19-4/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter19-4/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/static/index.html -------------------------------------------------------------------------------- /codes/chapter19-4/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/static/logo.png -------------------------------------------------------------------------------- /codes/chapter19-4/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/templates/now.html -------------------------------------------------------------------------------- /codes/chapter19-4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/urls.py -------------------------------------------------------------------------------- /codes/chapter19-4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-4/views.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter19-5/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter19-5/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/settings.py -------------------------------------------------------------------------------- /codes/chapter19-5/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/start.py -------------------------------------------------------------------------------- /codes/chapter19-5/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/static/form.html -------------------------------------------------------------------------------- /codes/chapter19-5/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter19-5/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/static/index.html -------------------------------------------------------------------------------- /codes/chapter19-5/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/static/logo.png -------------------------------------------------------------------------------- /codes/chapter19-5/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/templates/now.html -------------------------------------------------------------------------------- /codes/chapter19-5/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/urls.py -------------------------------------------------------------------------------- /codes/chapter19-5/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-5/views.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter19-6/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter19-6/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/settings.py -------------------------------------------------------------------------------- /codes/chapter19-6/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/start.py -------------------------------------------------------------------------------- /codes/chapter19-6/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/static/form.html -------------------------------------------------------------------------------- /codes/chapter19-6/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter19-6/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/static/index.html -------------------------------------------------------------------------------- /codes/chapter19-6/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/static/logo.png -------------------------------------------------------------------------------- /codes/chapter19-6/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/templates/now.html -------------------------------------------------------------------------------- /codes/chapter19-6/templates/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/templates/parameters.html -------------------------------------------------------------------------------- /codes/chapter19-6/templates/show_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/templates/show_request.html -------------------------------------------------------------------------------- /codes/chapter19-6/templates/user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/templates/user_profile.html -------------------------------------------------------------------------------- /codes/chapter19-6/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/urls.py -------------------------------------------------------------------------------- /codes/chapter19-6/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19-6/views.py -------------------------------------------------------------------------------- /codes/chapter19/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter19/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter19/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter19/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter19/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter19/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter19/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter19/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/settings.py -------------------------------------------------------------------------------- /codes/chapter19/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/start.py -------------------------------------------------------------------------------- /codes/chapter19/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/static/form.html -------------------------------------------------------------------------------- /codes/chapter19/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter19/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/static/index.html -------------------------------------------------------------------------------- /codes/chapter19/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/static/logo.png -------------------------------------------------------------------------------- /codes/chapter19/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/templates/now.html -------------------------------------------------------------------------------- /codes/chapter19/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/urls.py -------------------------------------------------------------------------------- /codes/chapter19/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter19/views.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter20-2/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter20-2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/settings.py -------------------------------------------------------------------------------- /codes/chapter20-2/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/start.py -------------------------------------------------------------------------------- /codes/chapter20-2/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/static/form.html -------------------------------------------------------------------------------- /codes/chapter20-2/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter20-2/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/static/index.html -------------------------------------------------------------------------------- /codes/chapter20-2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/static/logo.png -------------------------------------------------------------------------------- /codes/chapter20-2/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/templates/login.html -------------------------------------------------------------------------------- /codes/chapter20-2/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/templates/now.html -------------------------------------------------------------------------------- /codes/chapter20-2/templates/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/templates/parameters.html -------------------------------------------------------------------------------- /codes/chapter20-2/templates/show_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/templates/show_request.html -------------------------------------------------------------------------------- /codes/chapter20-2/templates/user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/templates/user_profile.html -------------------------------------------------------------------------------- /codes/chapter20-2/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/templates/welcome.html -------------------------------------------------------------------------------- /codes/chapter20-2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/urls.py -------------------------------------------------------------------------------- /codes/chapter20-2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-2/views.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter20-3/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter20-3/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/settings.py -------------------------------------------------------------------------------- /codes/chapter20-3/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/start.py -------------------------------------------------------------------------------- /codes/chapter20-3/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/static/form.html -------------------------------------------------------------------------------- /codes/chapter20-3/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter20-3/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/static/index.html -------------------------------------------------------------------------------- /codes/chapter20-3/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/static/logo.png -------------------------------------------------------------------------------- /codes/chapter20-3/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/templates/login.html -------------------------------------------------------------------------------- /codes/chapter20-3/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/templates/now.html -------------------------------------------------------------------------------- /codes/chapter20-3/templates/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/templates/parameters.html -------------------------------------------------------------------------------- /codes/chapter20-3/templates/show_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/templates/show_request.html -------------------------------------------------------------------------------- /codes/chapter20-3/templates/user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/templates/user_profile.html -------------------------------------------------------------------------------- /codes/chapter20-3/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/templates/welcome.html -------------------------------------------------------------------------------- /codes/chapter20-3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/urls.py -------------------------------------------------------------------------------- /codes/chapter20-3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-3/views.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/http/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/http/cookie.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter20-4/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter20-4/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/settings.py -------------------------------------------------------------------------------- /codes/chapter20-4/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/start.py -------------------------------------------------------------------------------- /codes/chapter20-4/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/static/form.html -------------------------------------------------------------------------------- /codes/chapter20-4/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter20-4/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/static/index.html -------------------------------------------------------------------------------- /codes/chapter20-4/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/static/logo.png -------------------------------------------------------------------------------- /codes/chapter20-4/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/templates/login.html -------------------------------------------------------------------------------- /codes/chapter20-4/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/templates/now.html -------------------------------------------------------------------------------- /codes/chapter20-4/templates/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/templates/parameters.html -------------------------------------------------------------------------------- /codes/chapter20-4/templates/show_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/templates/show_request.html -------------------------------------------------------------------------------- /codes/chapter20-4/templates/user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/templates/user_profile.html -------------------------------------------------------------------------------- /codes/chapter20-4/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/templates/welcome.html -------------------------------------------------------------------------------- /codes/chapter20-4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/urls.py -------------------------------------------------------------------------------- /codes/chapter20-4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20-4/views.py -------------------------------------------------------------------------------- /codes/chapter20/henango/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/http/request.py -------------------------------------------------------------------------------- /codes/chapter20/henango/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/http/response.py -------------------------------------------------------------------------------- /codes/chapter20/henango/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/server/server.py -------------------------------------------------------------------------------- /codes/chapter20/henango/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/server/worker.py -------------------------------------------------------------------------------- /codes/chapter20/henango/template/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/template/renderer.py -------------------------------------------------------------------------------- /codes/chapter20/henango/urls/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/urls/pattern.py -------------------------------------------------------------------------------- /codes/chapter20/henango/urls/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/urls/resolver.py -------------------------------------------------------------------------------- /codes/chapter20/henango/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/henango/views/static.py -------------------------------------------------------------------------------- /codes/chapter20/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/settings.py -------------------------------------------------------------------------------- /codes/chapter20/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/start.py -------------------------------------------------------------------------------- /codes/chapter20/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/static/form.html -------------------------------------------------------------------------------- /codes/chapter20/static/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /codes/chapter20/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/static/index.html -------------------------------------------------------------------------------- /codes/chapter20/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/static/logo.png -------------------------------------------------------------------------------- /codes/chapter20/templates/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/templates/now.html -------------------------------------------------------------------------------- /codes/chapter20/templates/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/templates/parameters.html -------------------------------------------------------------------------------- /codes/chapter20/templates/show_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/templates/show_request.html -------------------------------------------------------------------------------- /codes/chapter20/templates/user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/templates/user_profile.html -------------------------------------------------------------------------------- /codes/chapter20/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/urls.py -------------------------------------------------------------------------------- /codes/chapter20/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter20/views.py -------------------------------------------------------------------------------- /codes/chapter6/tcpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter6/tcpserver.py -------------------------------------------------------------------------------- /codes/chapter7/client_send.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter7/client_send.txt -------------------------------------------------------------------------------- /codes/chapter7/tcpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter7/tcpclient.py -------------------------------------------------------------------------------- /codes/chapter8/server_send.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter8/server_send.txt -------------------------------------------------------------------------------- /codes/chapter8/tcpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/codes/chapter8/tcpserver.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigen1925/introduction-to-web-application-with-python/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 120 3 | target-version = ['py38'] --------------------------------------------------------------------------------