Metadata-Version: 2.0
Name: hashdex
Version: 0.5.0
Summary: A file indexer based on content hashes
Home-page: https://github.com/jeff-99/hashdex
Author: Jeffrey Slort
Author-email: j_slort@hotmail.com
License: MIT license
Keywords: hashdex
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Utilities
Requires-Dist: Click (>=6.7)

=======
Hashdex
=======


.. image:: https://img.shields.io/pypi/v/hashdex.svg
        :target: https://pypi.python.org/pypi/hashdex

.. image:: https://img.shields.io/travis/jeff-99/hashdex.svg
        :target: https://travis-ci.org/jeff-99/hashdex

.. image:: https://readthedocs.org/projects/hashdex/badge/?version=latest
        :target: https://hashdex.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://pyup.io/repos/github/jeff-99/hashdex/shield.svg
     :target: https://pyup.io/repos/github/jeff-99/hashdex/
     :alt: Updates


A file indexer based on content hashes to quickly find duplicate files on your system.
I created this tool because I always forget which pictures from my phone I already uploaded to my Dropbox account.
Now I can just upload all pictures to an uploads directory check these files against the index and only organize
the remaining files.

As easy as..
------------

.. code-block:: bash

    pip install hashdex
    hashdex add /path/to/my-main-pictures-directory
    hashdex check --rm /path/to/my-uploads-directory


* Free software: MIT license
* Documentation: https://hashdex.readthedocs.io.


Features
--------

* create an index of your files
* find duplicate files on your filesystem
* check if files in a directory are already indexed

Credits
---------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage



=======
History
=======

0.5.0 (2017-09-28)
------------------
* added support for adding and checking files instead of directories
* moved default index file to users home directory
* Updated dependencies

0.4.1 (2017-09-24)
------------------
* adjusted for python 2.7 math.floor returning a float

0.4.0 (2017-09-24)
------------------
* renamed the index command to 'add'
* refactored --dir option for add/check command to cli argument
* added cleanup command
* added docs
* updated dependencies

0.3.0 (2017-09-12)
------------------
* Added --rm flag to check cli command (without the flag the command will not delete files)
* Dropped python 2.6 & 3.3 support
* Updated dependencies

0.2.0 (2017-09-08)
------------------

* Refactored Indexer class
* Added Hasher class
* Added tests 100% code coverage
* Updated dependencies

0.1.1 (2017-09-05)
------------------

* Updated dependencies
* Fixed file listing bug

0.1.0 (2017-09-04)
------------------

* First release on PyPI.


