34
25

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 3 years have passed since last update.

Qiita記事のエクスポート

Last updated at Posted at 2020-03-25

経緯

ぼく

前々からQiitaあんまり好きじゃなかったんで全く使ってなかったんですがマジでキツいのでエクスポートします.

jqhttpieを使ってるのでMac使いの人は次のコマンドでよしなにしてください

それ以外のユーザは知りません

Install Dependencies

$ brew install jq httpie

Export Posts

$ http --follow 'qiita.com/api/v2/users/ユーザID/items' | jq '.[] | .url' | xargs -I{} echo {} | sed 's/$/\.md/g' | xargs wget

ユーザ認証のないAPIなので公開してる記事しか取れません

2020.09.14追記

@eggplants 様よりコメントいただきました, こっちのがパイプが少なくてスマートです

$ wget $(curl -s 'https://qiita.com/api/v2/users/ユーザID/items' | jq -r '[.[].url+".md"]|join(" ")')

お わ り

Qiitaみんなやめようねという話ではないけど少なくとも僕はやめます

追記

あまりに腹が立つのでそれっぽいサイトを作ってみました

goodbye-qiita.netlify.com

Screen Shot 2020-03-26 at 4.05.23.png

34
25
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
34
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?