- Mastering Concurrency in Python
- Quan Nguyen
- 251字
- 2021-06-10 19:24:07
The basics of web requests
The worldwide capacity to generate data is estimated to double in size every two years. Even though there is an interdisciplinary field known as data science that is entirely dedicated to the study of data, almost every programming task in software development also has something to do with collecting and analyzing data. A significant part of this is, of course, data collection. However, the data that we need for our applications is sometimes not stored nicely and cleanly in a database—sometimes, we need to collect the data we need from web pages.
For example, web scraping is a data extraction method that automatically makes requests to web pages and downloads specific information. Web scraping allows us to comb through numerous websites and collect any data we need in a systematic and consistent manner—the collected data can be analyzed later on by our applications or simply saved on our computers in various formats. An example of this would be Google, which programs and runs numerous web scrapers of its own to find and index web pages for the search engine.
The Python language itself provides a number of good options for applications of this kind. In this chapter, we will mainly work with the requests module to make client-side web requests from our Python programs. However, before we look into this module in more detail, we need to understand some web terminology in order to be able to effectively design our applications.
- LaTeX Cookbook
- The Android Game Developer's Handbook
- Beginning C++ Game Programming
- 程序員面試算法寶典
- Rust編程從入門到實戰
- MATLAB 2020 從入門到精通
- Raspberry Pi Home Automation with Arduino(Second Edition)
- Building Wireless Sensor Networks Using Arduino
- Creating Data Stories with Tableau Public
- Flowable流程引擎實戰
- Java編程從入門到精通
- Ext JS 4 Plugin and Extension Development
- Mobile Forensics:Advanced Investigative Strategies
- MongoDB Cookbook
- Spring Boot 2+Thymeleaf企業應用實戰