Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
13096 Zobrazení

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.

Avatar
Zrušit
Nejlepší odpověď

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

 

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
3
bře 15
12755
0
led 16
4250
0
bře 15
7261
0
bře 15
10768
5
srp 20
10343