Awesome-Python-Scripts/File-Explorer-Dialog-Box/README.md

24 lines
312 B
Markdown
Raw Normal View History

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