使用Python 2.7从JSON API中提取数据

时间:2016-10-30 08:24:41

标签: python json

这是我的PHP代码 php代码工作正常

$json = file_get_contents('http://examole.com/api.php');
$obj = json_decode($json,true);
foreach($obj as $row)
{
       echo ( $row["first_name"] );

       echo "<br>";
}

这是我的python代码

from urllib import urlopen
import simplejson as json

url=urlopen('http://examole.com/api.php')
result = json.loads(url)
print utl.get('first_name').get('data')

1 个答案:

答案 0 :(得分:-1)

在您的示例中,您没有使用从JSON文本加载的对象。 你应该试试这个

data = result.get("first_name").get("data")