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

More than 3 years have passed since last update.

PickleというのはPython標準のシリアライズ形式で、Pythonオブジェクトをプロセス間通信でやり取りしたり、時間がかかる分析結果のスナップショットに使ったりします。

Pickleファイルの中身を見るためのコードはimport込みでも3行ぐらいなので簡単なのですが、それでも度々書くのは面倒なので簡単な方法が欲しいです。

つまり、こうです。

$ python -m pickle <filename>

非標準クラスがPickleされている場合はModuleNotFoundErrorエラーになるので、エラーメッセージから必要なモジュールを推測してインストールしてください。

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