├── .gitignore ├── ch2 ├── notes.md ├── requests_demo.py └── urllib_demo.py ├── ch3 └── main.py ├── ch4 ├── api_response.py ├── hook_response.py └── img_response.py ├── ch5 └── authen.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/.gitignore -------------------------------------------------------------------------------- /ch2/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch2/notes.md -------------------------------------------------------------------------------- /ch2/requests_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch2/requests_demo.py -------------------------------------------------------------------------------- /ch2/urllib_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch2/urllib_demo.py -------------------------------------------------------------------------------- /ch3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch3/main.py -------------------------------------------------------------------------------- /ch4/api_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch4/api_response.py -------------------------------------------------------------------------------- /ch4/hook_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch4/hook_response.py -------------------------------------------------------------------------------- /ch4/img_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch4/img_response.py -------------------------------------------------------------------------------- /ch5/authen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/ch5/authen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jian-en/imooc-requests/HEAD/requirements.txt --------------------------------------------------------------------------------