├── .gitignore ├── LICENSE ├── README.md ├── lastpymile.py ├── lastpymile ├── __init__.py ├── abstractpackageanalysis.py ├── gitrepository.py ├── maliciouscodepackageanalyzer.py ├── pypackage.py └── utils.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── test ├── test_scanning_a_package.py └── test_scanning_an_artifact.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/README.md -------------------------------------------------------------------------------- /lastpymile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/lastpymile.py -------------------------------------------------------------------------------- /lastpymile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lastpymile/abstractpackageanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/lastpymile/abstractpackageanalysis.py -------------------------------------------------------------------------------- /lastpymile/gitrepository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/lastpymile/gitrepository.py -------------------------------------------------------------------------------- /lastpymile/maliciouscodepackageanalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/lastpymile/maliciouscodepackageanalyzer.py -------------------------------------------------------------------------------- /lastpymile/pypackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/lastpymile/pypackage.py -------------------------------------------------------------------------------- /lastpymile/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/lastpymile/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/test_scanning_a_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/test/test_scanning_a_package.py -------------------------------------------------------------------------------- /test/test_scanning_an_artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assuremoss/lastpymile/HEAD/test/test_scanning_an_artifact.py --------------------------------------------------------------------------------