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
File details
Details for the file windows_filedialogs-0.0.4.tar.gz
.
File metadata
- Download URL: windows_filedialogs-0.0.4.tar.gz
- Upload date:
- Size: 3.7 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 | 6b4a204567ba1a9b472eeb15da591996f9c9f5cd3bb898ebbaeadcb91eb20533 |
|
MD5 | 515ab1990d4a30a1967d5ef094e2900a |
|
BLAKE2b-256 | 04a40a95952cdab9e46b2b2b839c18f69a311f0a724a82676487e47ff23f2835 |
File details
Details for the file windows_filedialogs-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: windows_filedialogs-0.0.4-py3-none-any.whl
- Upload date:
- Size: 4.1 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 | 02ad78e5c42f60e73d464ccf6e25dd35c447ce56546c4760f788c1ba5d459f02 |
|
MD5 | 3dbeba495deaa4bdd517d7eeaec0acd8 |
|
BLAKE2b-256 | f373f6aa853c225d8981df3d0f18234404cc53a569e07d3b1a78647219958058 |