0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

なろうapiを使ってみた。

Posted at

リクエストモジュールを使って、なろうapiを使ってみる。1
#パラメータで、ncode指定とlim指定 0000000は、小説のncode

import requests

url = "https://api.syosetu.com/novelapi/api/"

params = {"ncode":"0000000","lim":500}

#ncodeを指定する。limはデータ量設定

response = requests.get(url,params,timeout=3)

print(response.text)

リクエストモジュールを使って、なろうapiを使ってみる。2
# パラメータ ofで、タイトルと、更新時間を指定  0000000は、小説のncode
# https://dev.syosetu.com/man/api/ に仕様がある。仕様があっても
試す必要があるよね

import requests

url = "https://api.syosetu.com/novelapi/api/"

params = {
"of": "t-nu",
"ncode": "0000000"
}

response = requests.get(url,params,timeout=3)

print(response.text)

#of パラメーターを指定して、必要なものだけを取得する。↓下記を目指した。

ほしいタイトルと、更新日時を取得できた。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?