Metadata-Version: 2.4
Name: Files_Recovery
Version: 0.0.1
Summary: A package for File Recovery in Python
Author: Mohammadreza Amiri Noor
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: license-file

Description
===


## Install & Dependence
- python


## Installing a package with pip
  ```
    $ pip install Files_Recovery
  ```


## Directory Hierarchy
```
|—— LICENCE
|—— README.md
|—— pyproject.toml
|—— src
|    |—— Files_Recovery
|        |—— Possibility.py
|        |—— Recovery.py
|        |—— Scanner.py
|        |—— __init__.py
|—— tests
```
## How to use this package

### For Scan
```
from Files_Recovery.Scanner import Scan_folder

items = Scan_folder('folder path')

print(items)

```
### For Recovery
```
from Files_Recovery.Recovery import Recover_file

Recover_file(src='Deleted file path', dest_folder='folder dest')
```
### For the possibility of file Recovery
```
from Files_Recovery.Possibility import Estimate_recovery

item = Estimate_recovery(size='size')

print(item)
```
