Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda

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
Buang
Jawaban Terbai

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
Buang
Post Terkait Replies Tampilan Aktivitas
3
Mar 15
12630
0
Jan 16
4138
0
Mar 15
7128
0
Mar 15
10626
5
Agu 20
10217