reauests libraries and library study notes beautifulsoup4

1.requests library

1.1 Installation

the win

pip install requests

1.2 common method

1.2.1 .get((url, params=None, **kwargs)

  • Sending a get request to the server
  • url receives a URL address
  • receiving a dictionary object parmas
  • Returns a request object

Guess you like

Origin www.cnblogs.com/gaowenxingxing/p/12241847.html