doFolder.env module¶
Python runtime environment information module for doFolder.
This module provides essential Python runtime environment information and constants used throughout the doFolder library. It exposes Python version details, interpreter path, and runtime features like GIL (Global Interpreter Lock) status for compatibility checking and environment-aware operations.
- doFolder.env.PYTHON_EXECUTABLE = '/opt/hostedtoolcache/Python/3.14.3/x64/bin/python'¶
Path to the Python executable currently running
- doFolder.env.PYTHON_GIL_DISABLED = False¶
Whether the Global Interpreter Lock (GIL) is disabled in this Python build
- doFolder.env.PYTHON_VERSION_INFO = (3, 14, 3, 'final', 0)¶
Python version information as a named tuple (major, minor, micro, releaselevel, serial)
- doFolder.env.PYTHON_VERSION_STR = '3.14.3 (main, Feb 4 2026, 13:50:59) [GCC 13.3.0]'¶
Complete Python version string including build info and compiler details