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?

pythonでscratchのdataを取得する

Posted at

はじめに

この記事では一からdataを取得するコードを作るのではなく、私の作成したモジュールを使用してやる方法を紹介します。ソースコードを見たい方は
githubをご覧ください。
※あくまで今回紹介するものは一部です。できることのすべてを見たい方は
ドキュメントをごらんください。

インストール

pip install -U scratchtool

フォロワーを取得

import scratchtool as tool

user = tool.user("username")# usernameはご自身で変更してください
print(user.get_following())

プロジェクトの参照数を取得

import scratchtool as tool

project = tool.project("projectID")# projectIDはご自身で変更してください
print(project.get_views())

最後に

ほんとに一部のみ紹介しましたが、最初にもあるよう興味のある方は
ドキュメントこちらをご覧ください。

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?