├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── Chapter 1 ├── 01_05b.ipynb ├── 01_05e.ipynb ├── 01_06b.ipynb ├── 01_06e.ipynb ├── 01_07b.ipynb ├── 01_07e.ipynb ├── 01_08b.ipynb ├── 01_08e.ipynb ├── 01_09b.ipynb ├── 01_09e.ipynb ├── 01_10b.ipynb ├── 01_10e.ipynb ├── 01_11b.ipynb ├── 01_11e.ipynb ├── 01_12b.ipynb ├── 01_12e.ipynb ├── 01_13b.ipynb ├── 01_13e.ipynb └── wisdom_vet.txt ├── Chapter 2 ├── 02_04b.ipynb ├── 02_04e.ipynb ├── 02_05b.ipynb ├── 02_05e.ipynb ├── 02_06b.ipynb ├── 02_06e.ipynb ├── 02_07b.ipynb ├── 02_07e.ipynb ├── 02_08b.ipynb ├── 02_08e.ipynb ├── 02_09b.ipynb ├── 02_09e.ipynb ├── 02_10b.ipynb ├── 02_10e.ipynb ├── 02_11b.ipynb ├── 02_11e.ipynb ├── 02_12_challenge.ipynb ├── 02_13_solution.ipynb └── API_key_example.txt ├── Chapter 3 ├── 03_03b.ipynb ├── 03_03e.ipynb ├── 03_04b.ipynb ├── 03_04e.ipynb ├── 03_05b.ipynb ├── 03_05e.ipynb ├── 03_06b.ipynb ├── 03_06e.ipynb ├── 03_07b.ipynb ├── 03_07e.ipynb ├── 03_08b.ipynb ├── 03_08e.ipynb ├── 03_09b.ipynb ├── 03_09e.ipynb ├── 03_10b.ipynb ├── 03_10e.ipynb ├── 03_11_challenge.ipynb ├── 03_12_solution.ipynb ├── great_expectations.txt ├── man_in_top_hat.jpeg └── sense_and_sensibility.txt ├── LICENSE ├── NOTICE ├── README.md └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chapter 1/01_05b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_05b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_05e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_05e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_06b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_06b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_06e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_06e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_07b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_07b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_07e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_07e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_08b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_08b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_08e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_08e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_09b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_09b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_09e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_09e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_10b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_10b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_10e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_10e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_11b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_11b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_11e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_11e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_12b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_12b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_12e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_12e.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_13b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_13b.ipynb -------------------------------------------------------------------------------- /Chapter 1/01_13e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/01_13e.ipynb -------------------------------------------------------------------------------- /Chapter 1/wisdom_vet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 1/wisdom_vet.txt -------------------------------------------------------------------------------- /Chapter 2/02_04b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_04b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_04e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_04e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_05b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_05b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_05e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_05e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_06b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_06b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_06e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_06e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_07b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_07b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_07e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_07e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_08b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_08b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_08e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_08e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_09b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_09b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_09e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_09e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_10b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_10b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_10e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_10e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_11b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_11b.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_11e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_11e.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_12_challenge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_12_challenge.ipynb -------------------------------------------------------------------------------- /Chapter 2/02_13_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 2/02_13_solution.ipynb -------------------------------------------------------------------------------- /Chapter 2/API_key_example.txt: -------------------------------------------------------------------------------- 1 | LINKEDINLEARNING 2 | 3 | -------------------------------------------------------------------------------- /Chapter 3/03_03b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_03b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_03e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_03e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_04b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_04b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_04e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_04e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_05b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_05b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_05e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_05e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_06b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_06b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_06e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_06e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_07b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_07b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_07e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_07e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_08b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_08b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_08e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_08e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_09b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_09b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_09e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_09e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_10b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_10b.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_10e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_10e.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_11_challenge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_11_challenge.ipynb -------------------------------------------------------------------------------- /Chapter 3/03_12_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/03_12_solution.ipynb -------------------------------------------------------------------------------- /Chapter 3/great_expectations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/great_expectations.txt -------------------------------------------------------------------------------- /Chapter 3/man_in_top_hat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/man_in_top_hat.jpeg -------------------------------------------------------------------------------- /Chapter 3/sense_and_sensibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/Chapter 3/sense_and_sensibility.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-three-real-world-python-applications-4379002/HEAD/requirements.txt --------------------------------------------------------------------------------