我是Python的新手,我正在尝试从API调用中读取json数据。问题是错误说#!/bin/bash
echo "<html><table border=2>"
echo"<tr><th>Letter </th> <th>Total</th> <th>Start</th> <th> End</th></tr>"
for i in $(cat "alphaFile");
do t=`grep -c $i /path/to/my/file`;
b=`grep -c ^$i /path/to/my/file`;
e=`grep -c $i$ /path/to/my/file`;
echo"<tr><td> "$i" </td> <td> "$t" </td> <td> "$b" </td> <td> "$e" </td></tr>"
done
echo"</table></html>"
但是我想要提取的数据是正确的格式https://en.wikipedia.org/w/api.php?action=query&titles=Main%20Page&prop=revisions&rvprop=content&format=json。这是我正在尝试运行的代码。
TypeError: <http.client.HTTPResponse object at 0x030CF310> is not JSON serializable