/KleenExtractor

Clean extract system to export folder content and sub content

Primary LanguagePythonMIT LicenseMIT

GitHub license GitHub repo size GitHub repo size

Kleen-Extractor

Simple python library that handle the extraction of a source folder to sqlite database.

Table of contents

Installation

You can install the module via pip :
pip install kleenextractor

or via wheel file From PyPi :

pip install wheel
python -m wheel install wheel_file.whl

Documentation

The aim of kleenextractor is to make it simple for the user to export the list of files and folders.
First import it to your script :

from kleenextractor import kleenextractor

Then you can setup the source folder at first :

kleenextractor.set_path_source("d:\\my_folder")

Then you can run the extract by directly call extract_folder() function

kleenextractor.extract_folder()

And here you get a "extract.db" file in the folder of the current project.