Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
12919 Переглядів

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

 

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
3
бер. 15
12501
0
січ. 16
4029
0
бер. 15
7027
0
бер. 15
10539
5
серп. 20
10158