### Install CommonModules using pip Source: https://github.com/wanghewen/commonmodules/blob/master/README.md Installs the CommonModules package using the pip package installer. ```bash pip install CommonModules ``` -------------------------------- ### Prepare and upload CommonModules to PyPI Source: https://github.com/wanghewen/commonmodules/blob/master/README.md Steps to prepare the CommonModules package for distribution by removing old builds, creating source and wheel distributions, and uploading to PyPI test and production repositories using twine. ```bash pip install twine rm -rf ./dist python setup.py sdist bdist_wheel twine upload --repository-url https://test.pypi.org/legacy/ dist/* twine upload dist/* ``` -------------------------------- ### Import and use CommonModules in Python Source: https://github.com/wanghewen/commonmodules/blob/master/README.md Demonstrates how to import the CommonModules package as CM and use its ListFiles function to list files in the current directory. ```python import CommonModules as CM CM.IO.ListFiles(".", ".") ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.