- Python Digital Forensics Cookbook
- Preston Miller Chapin Bryce
- 76字
- 2021-07-08 10:34:05
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.
推薦閱讀
- Learning Single:page Web Application Development
- R語言經典實例(原書第2版)
- CentOS 7 Server Deployment Cookbook
- 深入淺出WPF
- Java軟件開發基礎
- Android 應用案例開發大全(第3版)
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- Python完全自學教程
- SharePoint Development with the SharePoint Framework
- Android底層接口與驅動開發技術詳解
- R Data Analysis Cookbook(Second Edition)
- Mastering Adobe Captivate 7
- Java 9 with JShell
- Python深度學習入門:從零構建CNN和RNN
- Learning Scrapy