Reading data from Web Service using Python

#import the modules
import requests
import json
# Get the feed
r = requests.get("http://msme.world/getmembersjson.php")
print(r.text)
data = json.loads(r.text)
print(data)

Comments

Popular posts from this blog

Converting Excel File to JSON File using xlrd module

Using Oracle with Python

Using time module