3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

twitterのフォロワーのユーザリストをスクレイピング

Last updated at Posted at 2023-04-10

1. harファイル作成

chromeの開発者モードでhttps://twitter.com/<screen name>/followersを開き、スクロール。
ネットワークのタブからharファイルをダウンロードできます。
(seleniumでも取得できるらしい)

2. harファイルのjsonをparse

cat twitter.har \
| jq -r '.log.entries | map(select(.request.url | test("/api/graphql/[^/]*/Followers"))) | map(.response.content.text)' >responses.txt

cat responses.txt \
| uniq \
| jq -r 'map(.)[]' \
| grep -v -e "^Rate limit" -e "^$" \
| while IFS= read l;do
    echo "$l" \
    | jq -r '.data.user.result.timeline.timeline.instructions[0].entries | map(.content.itemContent.user_results.result | {"rest_id":.rest_id,"name":.legacy.name,"screen_name":.legacy.screen_name,"description":.legacy.description})'
done

2の出力形式

{
  "rest_id": "数列",
  "name": "ユーザ名",
  "screen_name": "スクリーン名",
  "description": "概要欄"
}
...

(jqコマンドで@csvなどにすればcsvファイルにすることもできます)

まとめ

twitterのスクレイピングは利用規約違反。ダメ絶対!!
月$100払おう! 個人には高過ぎ

3
2
1

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?