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
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
