Python Digital Forensics Cookbook
上QQ阅读APP看书,第一时间看更新

Getting started

Part of this recipe uses the unicodecsv module. This module replaces the built-in Python 2 csv module and adds Unicode support. Python 3's csv module does not have this limitation and can be used without the support of any additional library. All other libraries used in this script are present in Python's standard library. The unicodecsv library can be installed with pip:

pip install unicodecsv==0.14.1
To learn more about the unicodecsv library, visit https://github.com/jdunck/python-unicodecsv.