In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article is about how to use the python client to access webservice, the editor feels very practical, so share with you to learn, I hope you can get something after reading this article, say no more, follow the editor to have a look.
I use the soaplib library. It is true that after the release, you can access it through php or through python, but it is OK to access it through php. But when accessing through python, you must know the server code, which can be seen from the official demo, which is quite annoying. So I switched to another python.
Library: suds
Suds download and installation is easy, so let's not talk about it here. Here I'd like to write down how it works. Let's first find a webservice that has been published on the Internet:
Http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl (it is a webservice released with. Net to query the attribution of mobile phone numbers), the source code of the python client is given below:
#! / usr/bin/pythonimport sudsurl = 'http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl'client = suds.client.Client (url) print client # results see figure 1result = client.service.getMobileCodeInfo (18611217787) # this number is certified and used for testing, print result # results see figure 2print client.last_received () # results see figure 3
Indicates that we have obtained a soap object
We call the getMobileCodeInfo in this soap and return the result. Note here that you can't client.getMobileCodeInfo () directly when calling, but client.service.getMobileCodeInfo ().
But what if I want to know everything I get, such as what the header of soap is? it doesn't matter, we have client.last_received (), and the result is shown in figure 3.
The above is how to use the python client to access webservice, the editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.