license | |
---|---|
docs | |
tests | |
package |
Utility library dealing with Python files.
- Features
- Collect Python files recursively from a given directory
- Find the Python module name respective to a Python file
pip install pycollect
collector = PythonFileCollector()
python_files = collector.collect()
When no explicit directory is given the parent folder of caller's file will be used.
It is possible to define custom exclusion patterns. See the docs for more.
module_name = find_module_name(filepath)
As there can be multiple valid module names for a given file, by default the outermost
module name is returned. The inverse behaviour can be enabled with the innermost
parameter. See the docs for more.
See the complete docs at allrod5.github.io/pycollect.
Integration tests can be pretty helpful to understand pycollect usage more in-depth too.
- CONTRIBUTING: Bug reports, feature requests, documentation & pull requests.
- CHANGELOG: See what's changed in each version.
- AUTHORS: Know who's behind the project.