24 lines
312 B
Markdown
Raw Normal View History

2018-10-03 11:45:59 +05:30
# File Explorer Dialog Box in Python
2018-10-03 14:12:26 +05:30
Open file explorer dialog box UI to select files using Python.
2018-10-03 11:45:59 +05:30
## 1. Using tkinter
2018-10-03 14:12:26 +05:30
Example using tkinter:
2018-10-03 11:45:59 +05:30
```
$ python select_file_tk.py
```
## 2. Using PyQt
Install [PyQt5](https://pypi.org/project/PyQt5/)
2018-10-03 14:12:26 +05:30
Example using PyQt5:
2018-10-03 11:45:59 +05:30
```
$ python select_file_pyqt.py
2018-10-03 14:12:26 +05:30
```