Metadata-Version: 2.1
Name: ffp2
Version: 0.1
Summary: File-Finger-Print generator 
Home-page: https://github.com/Ben-Bock/FFP2
Author: Ben Bock
Author-email: benbock@live.de
License: MIT License
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# FFP2
Simple library to generate File-Fingerprints (hashes over content to compare files or check for changes) 

---------------------------------------------

FFP2 can help you to generate fingerprint (hashes) over the content of files. Wiht that you can easily check
if 2 different files have the very same content or if the content of a file was modified.

Installation
-------------------------------

```console
$ pip install ffp2
```

Usage
-----------------------
```pycon
>>> from ffp2 import Filefingerprint
>>> fingerprint = Filefingerprint('FilepathGoesHere')
>>> print (fingerprint)

```


