Python crawler Baidu API call method and python crawler api call

Source: Internet
Author: User

Python crawler Baidu API call method and python crawler api call

Call Baidu API to obtain latitude and longitude information.

Import requestsimport jsonaddress = input ('enter location: ') par = {'address': address, 'key': 'cb649a25c1f81c1451adbeca73623251'} url = 'HTTP: // restapi.amap.com/v3/geocode/geo'res = requests. get (url, par) json_data = json. loads (res. text) geo = json_data ['geocodes '] [0] ['location'] longpolling = geo. split (',') [0] latitude = geo. split (',') [1] print (longpolling, latitude)

In fact, it is not difficult to call the API. Here is the get method. The parameter is the address and key. I found this key online and it should be usable.

Run the code.

Then, after processing the address in the encyclopedia, call the API to obtain the latitude and longitude, and then use the personal BDP to complete the figure.

The above python crawler Baidu API call method is a small part of the Content shared to everyone, I hope to give you a reference, but also hope you can support a lot of help homes.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.