Metadata-Version: 2.1
Name: easy_file_manager
Version: 0.3
Summary: Package to easily let a user select multiple files for further use
Home-page: https://github.com/lstuma/easy_file_selector
Author: Lukas Stockmann
Author-email: g.lstuma@gmail.com
License: UNKNOWN
Description: # easy_file_manager
        [![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/tterb/atomic-design-ui/blob/master/LICENSEs)
        
        Lets users conveniently choose multiple files.
        ## Installation
        The program can be installed from PyPi or GitHub
        ```
        # From PyPi
        python -m pip install easy-file-manager
        
        # From GitHub.com
        python -m pip install git+https://github.com/lstuma/easy_file_manager
        ```
        ## Usage
        ### Python Module
        ```python
        from easy_file_manager import EasyFileSelect()
        
        # Instantiate EasyFileSelect object
        file_manager = EasyFileSelect()
        
        # Open file selection: Returns filepaths
        filepaths = file_manager.file_selection()
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
