Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
13043 Weergaven

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
Annuleer
Beste antwoord

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
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
3
mrt. 15
12689
0
jan. 16
4194
0
mrt. 15
7179
0
mrt. 15
10686
5
aug. 20
10305