[b]"How can I use an interactive file browser in a Python script?"[/b] or [b]"What's the best way to use an intera

18 Replies, 1270 Views

Hey! If you want to use interactive file browser in python script without too much hassle, try `easygui`. It's super simple and lightweight.

Just do:
```python
import easygui
file = easygui.fileopenbox()
```
Boom, done. Works on Win/Mac/Linux. Not as fancy as PyQt, but gets the job done.

Docs: https://easygui.readthedocs.io

Messages In This Thread



Users browsing this thread: 1 Guest(s)