Metadata-Version: 2.1
Name: sqlitediff
Version: 0.1.0
Summary: Differential analysis of sqlite files
Home-page: https://github.com/5f0ne/sqlitediff
Author: 5f0
License: MIT
Classifier: Operating System :: OS Independent 
Classifier: Programming Language :: Python :: 3 
Classifier: License :: OSI Approved :: MIT License 
Description-Content-Type: text/markdown
License-File: LICENSE.md

# Description

Differential analysis of sqlite files

Detects changes between versions of sqlite files:

- **Database Tables**
  - Table created
  - Table deleted
- **Table Entry**
  - Entry created
  - Entry modified
  - Entry deleted

# Installation

`pip install sqlitediff`

# Usage

**From command line:**

`python -m sqlitediff --pathBefore PATHBEFORE --pathAfter PATHAFTER`

| Option | Short | Type | Default | Description |
|---|---|---|---|---|
|--pathBefore | -b | String | - | Path to sqlite file before action |
|--pathAfter | -a| String | - | Path to sqlite file after action |


# Example

`python -m sqlitediff -b path/to/before.db -a path/to/after.db`

```
################################################################################

sqlitediff by 5f0
Differential analysis of sqlite files

Current working directory: path/to/sqlitediff

Sqlite file before action:
-->    Path: path/to/before.db
-->     MD5: d7e88c55c4ec6ed7cd7fa6c6cb8b0b45
-->  SHA256: 19722a52443837b2cc7ac77fa806da6f2e1f307707ac8a2fdfe6a5c097758faf

Sqlite file after action:
-->    Path: path/to/after.sqlite
-->     MD5: 305d12c0b2b49b149a508d9d4cb7d573
-->  SHA256: 3073be75fb6b0ace2ffc94332c2c77e1fe12c6f618c840c122112a61ee63585a

Datetime: 01/01/1970 11:12:13

################################################################################

Tables before Action: ['fish', 'people', 'dog']
Tables after Action: ['fish', 'snowman']
Deleted Tables: ['people', 'dog']
Created Tables: ['snowman']

################################################################################

Execution Time: 0.010948 sec
```


# License

MIT
