- Python Digital Forensics Cookbook
- Preston Miller Chapin Bryce
- 87字
- 2021-07-08 10:34:06
Getting started
In order to create a recipe with cross-platform support, we have elected to use the pyscreenshot module. This module relies on a few dependencies, specifically the Python Imaging Library (PIL), and one or more backends. The backend used here is the WX GUI library. All three of these modules can be installed with pip:
pip install pyscreenshot==0.4.2 pip install Pillow==4.2.1 pip install wxpython==4.0.0b1
To learn more about the pyscreenshot library, visit https://pypi.python.org/pypi/pyscreenshot.
All other libraries used in this script are present in Python's standard library.
推薦閱讀
- Cocos2D-X權威指南(第2版)
- Pandas Cookbook
- Game Programming Using Qt Beginner's Guide
- 深入理解Django:框架內幕與實現原理
- Java程序設計與實踐教程(第2版)
- Java性能權威指南(第2版)
- Hands-On Microservices with Kotlin
- Microsoft System Center Orchestrator 2012 R2 Essentials
- Python機器學習:預測分析核心算法
- 區塊鏈技術進階與實戰(第2版)
- Raspberry Pi Robotic Projects(Third Edition)
- SQL Server 2016 從入門到實戰(視頻教學版)
- Java Web開發實例大全(基礎卷) (軟件工程師開發大系)
- Learning Unreal Engine Game Development
- Selenium WebDriver自動化測試完全指南