Artefacts Comparison
artefactscomparisonis a Python package to compare and report on two artefacts summaries.
An artefact summary is a CSV listing files' paths and SHA512 sum. Assuming artefacts are saved under the results/ directory, an artefact summary is generated as follows:
$ find results/ -type f `# list files in the 'results/' directory…`\
-exec sha512sum {} \; `# … and compute their SHA-512 sum`\
| sed 's/ /,/' `# use comma — instead of double space — as separator`\
| cat <(echo 'sha512,file_name') - `# add header to CSV`
sha512,file_name
<SHA512>,results/artefact_1
<SHA512>,results/path/to/artefact_2
The artefactscomparison package provides a CLI entry point that outputs a diff report on two artefacts summaries:
$ artefacts_comparison --base base_artefact_summary.csv --head head_artefact_summary.csv
@@ 3 file(s) added @@
+ path/to/new_file_1
+ path/to/new_file_2
+ path/to/new_file_3
@@ 1 file(s) deleted @@
- path/to/removed_file.csv
@@ 2 file(s) renamed @@
! path/to/to_rename_1 → path/to/renamed_1
! path/to/to_rename_2 → path/to/renamed_2
# 2 other file(s) remain unmodified
User Quickstart
Installation
You can install artefactscomparison from PyPI:
pip install artefactscomparison
How to use
From the command line:
artefacts_comparison --head head_artefact_summary.csv --base base_artefact_summary.csv
where:
head_artefact_summary.csvis the artefact summary of the branch you want to merge,base_artefact_summary.csvis the artefact summary of the branch your PR points to (i.e.main,master, etc.).
Development Quickstart
This project adheres to Semantic Versioning, and releases descriptions can be found in CHANGELOG.md.
Use your own environment management preference
For pyvenv:
python -m venv .venv/
source .venv/bin/activate
Install this package
git clone git@github.com:EBoisseauSierra/artefacts_comparison.git
cd artefacts_comparison
pip install --upgrade pip
pip install -e '.[dev,test]'
Initialise pre-commit hooks
The pre-commit hooks defined in this repo ensure that code formating and linting is applied on any piece of code committed. This should enable a cleaner code base and less “formatting noise” in commits.
To install the hooks, simply run:
pre-commit install
Contributing
- Fork this repo (https://github.com/EBoisseauSierra/artefacts_comparison/fork)
- Create your feature branch (
git checkout -b feature/fooBar) - Commit your changes (
git commit -am 'Add some fooBar') - Push to the branch (
git push origin feature/fooBar) - Create a new Pull Request
Licence
Distributed under the MIT License. See LICENSE for more information.
References
- Add comments on multi-line shell commands: https://stackoverflow.com/a/12797512/5433628
- Compute the SHA sum of all files in a directory: https://askubuntu.com/a/1091369
- Prefix the stdout: https://stackoverflow.com/a/33139133/5433628
Release files for artefactscomparison 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| artefactscomparison-0.2.0.tar.gz | 9.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| artefactscomparison-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 20.1 kB
Release files / artefactscomparison-0.2.0.tar.gz
| Download URL | artefactscomparison-0.2.0.tar.gz |
|---|---|
| Size | 9.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b492cb571bcf475ae2af9a066e1f0e3e72ee5a8a5009858b3d955f9139be1820
|
|
BLAKE2b-256 checksum How to use checksums |
12792ba7b107599e7d4d3cb648a9440c2305f73cfe4087f76270942d004882db
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.8
|
Release files / artefactscomparison-0.2.0-py3-none-any.whl
| Download URL | artefactscomparison-0.2.0-py3-none-any.whl |
|---|---|
| Size | 10.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f5da714b292251e8be015e2ff54586d277089ef1c02d9948e81099e1f389c767
|
|
BLAKE2b-256 checksum How to use checksums |
b0df7bbbf1a6ccae8428de70cfc507671315a5e0586e3451aed223a6570b9516
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.8
|