- Python Digital Forensics Cookbook
- Preston Miller Chapin Bryce
- 106字
- 2021-07-08 10:34:03
Getting started
This recipe introduces HTML templating with the jinja2 module. The jinja2 library is a very powerful tool and has a number of different documented features. We will be using it in a rather simple scenario. All other libraries used in this script are present in Python's standard library. We can use pip to install jinja2:
pip install jinja2==2.9.6
In addition to jinja2, we will also be using a slightly modified template, called light bootstrap dashboard. This slightly modified dashboard has been provided with the recipe's code bundle.
To learn more about the jinja2 library, visit http://jinja.pocoo.org/docs/2.9/.
To download the light bootstrap dashboard, visit https://www.creative-tim.com/product/light-bootstrap-dashboard.
To download the light bootstrap dashboard, visit https://www.creative-tim.com/product/light-bootstrap-dashboard.
推薦閱讀
- 計算思維與算法入門
- 小程序實戰(zhàn)視頻課:微信小程序開發(fā)全案精講
- Oracle Exadata性能優(yōu)化
- LabVIEW入門與實戰(zhàn)開發(fā)100例
- Python計算機視覺編程
- 游戲程序設計教程
- TypeScript實戰(zhàn)指南
- GameMaker Programming By Example
- 微信小程序開發(fā)解析
- 大學計算機基礎(第2版)(微課版)
- Visualforce Developer’s guide
- Fastdata Processing with Spark
- Hacking Android
- 軟件工程與UML案例解析(第三版)
- Python Digital Forensics Cookbook