python programming data visualization 3--use of API

python programming data visualization 1--generating data

python programming data visualization 2--download data

python programming data visualization 3--use of API

API usage

1 Using Web API

1.1 Request data using API calls

You can try entering the following address in the browser's address bar and press Enter:


https://api.github.com/search/repositories?q=language&sort=stars


This call returns how many Python projects are currently hosted on GitHub, as well as information about the most popular Python repositories. We will get the following data:

Figure 1 Part of the data obtained

1.2 A

Guess you like

Origin blog.csdn.net/weixin_41551445/article/details/107545305