Simple Windows file dialogs.
Project description
File dialogs for windows
pip install windows_filedialogs
Implements easy windows file dialog functions. Requires the pywin32 module.
from filedialogs import save_file_dialog, open_file_dialog, open_folder_dialog
openpath = open_file_dialog()
if openpath:
with open(openpath, "r") as f:
...
savepath = save_file_dialog()
if savepath:
with open(savepath, "w") as f:
...
openfolder = open_folder_dialog()
if openfolder:
with open(os.path.join(openfolder, ...), "w") as f:
...
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file windows_filedialogs-0.0.2.tar.gz.
File metadata
- Download URL: windows_filedialogs-0.0.2.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/54.0.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3aece60342a68a377e2a67fa6cae926a2613e19806aeb3f9845ec5a9b62c680
|
|
| MD5 |
4c1b54eefcf4a444197392e96d28a591
|
|
| BLAKE2b-256 |
a7fd86708b6d6fd3da682b8592cabaa701e13e3176fa2f7b5ed9d5e093ff8c2f
|
File details
Details for the file windows_filedialogs-0.0.2-py3-none-any.whl.
File metadata
- Download URL: windows_filedialogs-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/54.0.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67c67ee399c94e305f22707032ca797123b102d9bd47648326a853f98203298b
|
|
| MD5 |
cc216a009966f6ad6d485b891413b663
|
|
| BLAKE2b-256 |
52c8102256c6e030175230695f4d1fde5b9e4550604a07ee00397859e2ef02e9
|