Pox: Filesystem Utilities
Pox is a Python library offering simple utilities for exploring and manipulating local and remote filesystems, and for automated build processes. It is currently at version 0.3.7 and maintains an active development status with regular minor updates.
Warnings
- breaking Pox dropped formal support for Python 3.7.
- breaking The minimum required Python version was increased from 3.7 to 3.8.
- breaking The minimum required Python version was further increased from 3.8 to 3.9.
Install
-
pip install pox
Imports
- pox
import pox
Quickstart
import pox
# Get the library version
print(f"Pox Version: {pox.version()}")
# Display the license information
print("\n--- License ---")
print(pox.license())
# Display citation information
print("\n--- Citation ---")
print(pox.citation())