Pox: Filesystem Utilities

0.3.7 · active · verified Sat Apr 11

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.

Common errors

Warnings

Install

Imports

Quickstart

This quickstart demonstrates how to import the pox library and retrieve its version, license, and citation information.

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())

view raw JSON →