Pages

Categories

Category: Forensics

CSV – SQLite Extraction and Conversion

This is a follow-up post from Parsing CSV (siː ɛs viː) to show examples on how to write data with python into a CSV formatted file. There will be some references made to the previous post, so be sure to take a glance there first. Python and its CSV...

Parsing CSV (siː ɛs viː) and Avoiding Pitfalls

Comma Seperated Values (CSV) is a format used to store data within a file in the form of rows and columns for data exchange. This post is to show some of the nuances when dealing with CSV files. The principle is very simple, but let us define the components...