跳至内容
菜单
此问题已终结

I want to create a module that can get some data from a specific user and for that I need to make a connection with Rest Web Service that communicates with Json with python. Could someone give me some suggestion about it.

Thank you very much for any help.

形象
丢弃
最佳答案

This is how I call a JSON service from Python code

import json
import urllib2
    def clasic_json_call(self, endpoint, data):
        req = urllib2.Request(endpoint, data, self.headers)
        try:
            response = urllib2.urlopen(req)
            the_page = response.read()
            decoded = json.loads(the_page)
        except:
            
raise Warning('Error in the connection')
        else:
            return decoded

 

形象
丢弃
相关帖文 回复 查看 活动
3
3月 15
12492
0
1月 16
4022
0
3月 15
7021
0
3月 15
10535
5
8月 20
10154