A function that locates files in python environments and compiled exe files (Nuitka)
Project description
A function that locates files in python environments and compiled exe files (Nuitka)
nuitka is certainly the best py2exe- compiler, but it is not always easy to include additional files.Â
The first time I tried that, the compiled EXE wasn't able to find the included files, and it took me some time to make all the necessary code adjustments. This is why I wrote a little function that locates files in the most likely locations (python env/nuikta exe).
pip install getfilenuitkapython
This module contains a function called get_filepath which returns the full path to a file, given its filename. It uses the os and sys modules to search for the file in multiple locations.
Parameters
----------
filename: A string representing the name of the file to locate.
Returns
----------
A string representing the full path to the file, if it is found.
If the file is not found in any of the locations, the function returns the filename itself.
Description
----------
The get_filepath function searches for the file in the following locations:
1. The directory containing the script that was invoked from the command line.
2. The directory containing the current module file (__file__).
3. The parent directory of the directory containing the script that was invoked from the command line.
4. The parent directory of the directory containing the current module file (__file__).
5. The directory containing the calling function (sys._getframe(1)).
6. The parent directory of the directory containing the calling function.
7. Search in PATH
8. Search in every folder in basedirs
If the file is found in any of these locations, the function returns the full path to the file. If the file is not found in any of these locations, the function returns the filename itself.
from getfilenuitkapython import get_filepath
get_filepath('pythonw.exe')
Out[3]: 'C:\\ProgramData\\anaconda3\\envs\\dfdir\\pythonw.exe'
Project details
Release history Release notifications | RSS feed
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
Close
Hashes for getfilenuitkapython-0.11-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4bf84dbc078e4f868d44a798165656611b2445f22d746f5ed22fb95ea4517d0 |
|
MD5 | 1b65595fde8c69413e54a01923b121c1 |
|
BLAKE2b-256 | 86767fe9320d03af1cc6f178228ca18cb56503634fdfc10c189e67f0c6f98516 |