Metadata-Version: 2.1
Name: tree-guardian
Version: 0.1.0
Summary: Track the changes into the filesystem and trigger callback on changes detecting.
Home-page: https://github.com/fadich/tree-guardian
Author: Fadi A.
Author-email: royalfadich@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Tree Guardian

Track the changes into the filesystem and trigger callback on changes 
 detecting.


## Getting Started

### Installation

```bash

pip install ...
```

### Usage

Observe the changes into your project.

```python

from tree_guardian import observe

# Target function to trigger
def cb():
    from time import time

    print('[{}] Changes detected...'.format(time()))

observe(cb)  # Run observer
```


