A recursive Python dependency scanner.
Project description
Panoptisch: A recursive dependency scanner for Python projects
⚠️🚨 Early stage! May not work as expected 🚨⚠️
What?
Panoptisch scans your Python file or module to find it's imports (aka dependencies) and recursively does so for all dependencies and sub-dependencies. It then generates a dependency tree in JSON for you to parse and enforce import policies. Imports are resolved by mimicing Python's import system. It's completely static besides the importing of modules to find the location of its source file(s).
Please NOTE:
There are known limitations and issues at this stage. Please read this before using Panoptisch.
See: LIMITATIONS.md
LINK.
Motivation
I was not able to find a proper dependency scanner for Python. Panoptisch was born out of the need to accurately verify dependency usage accross an entire project.
It's aim is to generate a JSON report that can be parsed and evaluated to assert import policies.
For example, you may want to restrict os
, socket
, sys
and importlib
imports to selected packages.
Usage
- Install
Panoptisch
in the same virtual environment as your project, this is important!
pip install panoptisch
- Use
usage: panoptisch <module>
positional arguments:
module Name of module or file you wish to scan.
options:
-h, --help show this help message and exit.
--show-stdlib-dir Prints the automatically resolved stdlib directory.
--max-depth MAX_DEPTH
Maximum dependency depth.
--out OUT File to output report.
--auto-stdlib-dir Ignore stdlib modules by automatically resolving their path. MAY BE BUGGY. Try running panoptisch <module_name> --show-stdlib-dir to see the directory before using this.
--stdlib-dir STDLIB_DIR Ignore stdlib modules by providing their path.
--omit-not-found Do not include modules that could not be resolved in report.
A typical run may be
$ panoptisch <module or file> --max-depth 5 --omit-not-found
- See report
$ more out.json
LICENSE
All work is licensed under the GNU General Public License Version 3.
Contributing
Feedback, contributions and issues welcome.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for panoptisch-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44cf992fe392fce7cf9eb43640f1d053ff23ee23cfd9834ae5c0f800380cc887 |
|
MD5 | e2406a97c83cdb33feebcd410780ab2f |
|
BLAKE2b-256 | d145410eff5ae78e650ce3fb2987019c5423fb99a0724aee43989d64c011153f |