Metadata-Version: 2.1
Name: file-updater
Version: 0.0.6
Summary: Local file updater
Home-page: UNKNOWN
Author: Daniel Riffert
Author-email: riffert.daniel@gmail.com
License: UNKNOWN
Keywords: file,update,path,backup
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: colorama
Requires-Dist: pywin32

# Local file updater
> A package that allows to backup local files to a specific directory and update already backuped files if they were modified

## Install

`pip install file-updater`

## Console script

`lofup.py [Source path] [Destination path]`

Example:

![sample_1](https://user-images.githubusercontent.com/48239596/127472933-66bf1f94-bbce-47dd-b112-18442645ce3d.PNG)

## How to use in code

```python
from fup.updater import FileUpdater

file_updater = FileUpdater(output_console=True)

file_updater.update_files(
    path_source=r'C:\Users\riffe\schule\5.klasse\pos\docs', 
    path_dest=r'C:\Users\riffe\spare\programming\file-update-testfolder')
```

