LoginSignup
24
17

More than 5 years have passed since last update.

Qiita API v2のPythonラッパー実装した

Posted at

Qiita API v2のPythonラッパーがなかったので作りました

テストとかdoctestで適当に書いてるのしか無いので、バージョンは0.1.0としています

インストール

Pypiに登録しているのでpipで出来ます

pip install qiita_v2

使い方

from qiita_v2.client import QiitaClient

client = QiitaClient(access_token=<access_token>)
response = client.get_user('petitviolet')
res.to_json()
# => jsonified contents

アクセストークンはaccess_tokenに引数として渡すか、
yamlファイルにACCESS_TOKEN:<access_token>と書いてそのファイル名をconfig_fileに渡しても良いです

もう少し詳しい使い方はちゃんと書いていないので、client.pyの実装を見て下さい
docstringはincrements/qiita-rbパクって参考にして書いてあります...

24
17
2

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
24
17