├── .gitignore ├── Week 2 Regular Expressions ├── Assignments │ ├── finding_numbers_in_a_haystack.py │ ├── regex_sum_207216.txt │ └── regex_sum_42.txt └── regex.py ├── Week 3 Networks and Sockets ├── sample text.txt ├── socket1.py ├── urllib1.py └── word_counter.py ├── Week 4 Programs that Surf the Web ├── Assignments │ ├── solution.py │ └── solution2.py └── bs.py ├── Week 5 Web Services and XML └── Assignments │ └── extracting_data_from_xml.py └── Week 6 JSON and the REST Architecture └── Assignments ├── comments_42.json ├── comsuming-google-maps-api.py └── extracting-data-from-json.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/.gitignore -------------------------------------------------------------------------------- /Week 2 Regular Expressions/Assignments/finding_numbers_in_a_haystack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 2 Regular Expressions/Assignments/finding_numbers_in_a_haystack.py -------------------------------------------------------------------------------- /Week 2 Regular Expressions/Assignments/regex_sum_207216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 2 Regular Expressions/Assignments/regex_sum_207216.txt -------------------------------------------------------------------------------- /Week 2 Regular Expressions/Assignments/regex_sum_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 2 Regular Expressions/Assignments/regex_sum_42.txt -------------------------------------------------------------------------------- /Week 2 Regular Expressions/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 2 Regular Expressions/regex.py -------------------------------------------------------------------------------- /Week 3 Networks and Sockets/sample text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 3 Networks and Sockets/sample text.txt -------------------------------------------------------------------------------- /Week 3 Networks and Sockets/socket1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 3 Networks and Sockets/socket1.py -------------------------------------------------------------------------------- /Week 3 Networks and Sockets/urllib1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 3 Networks and Sockets/urllib1.py -------------------------------------------------------------------------------- /Week 3 Networks and Sockets/word_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 3 Networks and Sockets/word_counter.py -------------------------------------------------------------------------------- /Week 4 Programs that Surf the Web/Assignments/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 4 Programs that Surf the Web/Assignments/solution.py -------------------------------------------------------------------------------- /Week 4 Programs that Surf the Web/Assignments/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 4 Programs that Surf the Web/Assignments/solution2.py -------------------------------------------------------------------------------- /Week 4 Programs that Surf the Web/bs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 4 Programs that Surf the Web/bs.py -------------------------------------------------------------------------------- /Week 5 Web Services and XML/Assignments/extracting_data_from_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 5 Web Services and XML/Assignments/extracting_data_from_xml.py -------------------------------------------------------------------------------- /Week 6 JSON and the REST Architecture/Assignments/comments_42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 6 JSON and the REST Architecture/Assignments/comments_42.json -------------------------------------------------------------------------------- /Week 6 JSON and the REST Architecture/Assignments/comsuming-google-maps-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 6 JSON and the REST Architecture/Assignments/comsuming-google-maps-api.py -------------------------------------------------------------------------------- /Week 6 JSON and the REST Architecture/Assignments/extracting-data-from-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-wl/coursera-using-python-to-access-web-data/HEAD/Week 6 JSON and the REST Architecture/Assignments/extracting-data-from-json.py --------------------------------------------------------------------------------