Metadata-Version: 2.1
Name: directsync
Version: 1.0.0
Summary: Compare(*diff*)/synchronize/backup/mirror folders quickly.
Home-page: https://github.com/Anmol-Singh-Jaggi/directsync.git
Author: Anmol Singh Jaggi
Author-email: anmolj.65@gmail.com
License: MIT
Description: 
        # DirectSync
        
        [![PyPI version](https://badge.fury.io/py/directsync.svg)](https://badge.fury.io/py/directsync)
        ![MIT License](https://img.shields.io/badge/license-MIT-green.svg)
        [![image](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/Anmol-Singh-Jaggi)
        
        An efficient and easy-to-use utility to compare/synchronize/mirror folder contents.
        
        **Demo**
        
        ![Demo gif](docs/demo.gif)
        
        **Usage:**
        
            directsync [-h] [-no-bar] [-add] [-rm] [-ovr] [-rev] [-mirr] [-dry]
                        left-path right-path
        
            positional arguments:
            left-path             The path of the left(source) directory.
            right-path            The path of the right(destination) directory.
        
            optional arguments:
            -h, --help            show this help message and exit
            -add, --add-missing   Copy files from source which are absent in
                                destination.
            -rm, --remove-extra   Remove the files from destination which are absent in
                                source.
            -ovr, --overwrite-content
                                Overwrite the files having same name but different
                                content.
            -rev, --reverse-sync-direction
                                Use the right folder as source and the left as
                                destination.
            -mirr, --mirror-contents
                                Make the destination directory exactly same as the
                                source. Shorthand for `-add -rm -ovr`.
            -dry, --dry-run     Just simulate and report the file operations that will
                                be performed with the current configuration.
            -no-bar, --hide-progress-bar
                                Whether to hide the progress bar or not. Will result
                                in a huge speedup iff the 2 directories are structured
                                very differently.
        
        **Installation:**
         - `pip install directsync`
        
        **ToDo:**
         - ~~Add demo.~~
         - Add `preserve-latest` option: Among the 2 files, the one with the latest modification date should be preserved.
         - Add `quiet` option.
         - ~~Add `simulate` option.~~
         - Add `soft-delete` option to send to recycle bin instead of delete/overwrite.
         - Add `cache` option to cache the results of the previous difference check. Will need to serialize data to file.
         - Give more fine-tuned control of file comparison algorithm to the user.
         - Add `ignore-pattern` option to let the user ignore certain files based on the regex pattern provided.
         - Add test cases.
         - Add code coverage.
         - Setup `tox` and `Travis CI`.
         - Add coloured output.
         - Handle nested structures with symlinks.
         - Provide direct interface with online storage services.
        
        Copyright (c) 2019 Anmol Singh Jaggi  
        https://anmol-singh-jaggi.github.io  
        MIT License
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Desktop Environment
Classifier: Topic :: System :: Archiving :: Backup
Classifier: Topic :: System :: Archiving :: Mirroring
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
