python APIからデータ取得
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python APIからデータ取得相关的知识,希望对你有一定的参考价值。
#!/usr/local/bin/python3.4
# coding:utf-8
import urllib.request
import json
print("Content-Type: application/json; charset=UTF-8\r\n")
url = 'https://jsonplaceholder.typicode.com/posts/'
req = urllib.request.Request(url)
with urllib.request.urlopen(req) as res:
bytes = res.read()
text = bytes.decode('utf-8')
dump = json.loads(text)
print(json.dumps(dump))
以上是关于python APIからデータ取得的主要内容,如果未能解决你的问题,请参考以下文章
python LIBLINEARのパラメータ(成本,偏见)のグリッドサーチを行うスクリプト。ソルバーも复数から最适なものを选択できる。
python GET·POSTパラメータ取得2
python GET·POSTパラメータ取得1
机器学习文本挖掘之spherical k-means algorithm初识
ruby Niconicoにログインしてニコレポマイリストの情报から动画タイトル·リンクを取得する
ruby 再帰处理で再试行してみる。データ取得は他の关数にやらせるといいかも。