Metadata-Version: 2.4
Name: nova-fileselector
Version: 1.0.0
Summary: A minimal Tkinter-based file and directory selector module with min/max and extension filtering.
Author-email: Nova <novabwa@outlook.com>
License: MIT
Keywords: tkinter,file,gui,selector,dialog
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# fileselector

A lightweight Tkinter file and folder selector for Python.

## Example

```python
import fileselector

fileselector.help()
path = fileselector.select(file_extension=".png")
print(path)
