Metadata-Version: 2.1
Name: FolderUnpacker
Version: 0.3
Summary: A simple python program that extracts all the files from a directory. (Not including folders)
Home-page: https://github.com/dajkatal/Folder-Unpacker
Author: Daj Katal
Author-email: dajkatal@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Folder-Unpacker
A simple python program that extracts all the files from a directory. (Not including folders)
* Useful when dealing with a directory with several sub-directories.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install FolderUnpacker
```

## Usage

```python
from FolderUnpacker import FileUnpack

files_init = FileUnpack(input_path, output_path) # Initializes the unpacker
files_init.unpack() # Imports all the files in the input dir into the output dir
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)


