Project Explorer
Projektstruktur und Symbole in einer Ansicht
FilesClassesSymbols
Zweisprachige Desktop Anwendung zur statischen strukturellen Untersuchung vollständiger Python Projekte.
Das Downloadpaket enthält den aktuellen Python Quellcode sowie die Windows Start und Build Skripte.
BylickiLabs_Python_Reverse_Engineering_Inspector/
│
├── .github/
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ └── feature_request.yml
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── workflows/
│ ├── build.yml
│ ├── deploy-pages.yml
│ ├── test-python-310.yml
│ ├── test-python-311.yml
│ └── test-python-312.yml
│
├── website/
│ ├── assets/
│ │ ├── bprei.png
│ │ ├── favicon.svg
│ │ └── project-preview.svg
│ ├── index.html
│ ├── script.js
│ └── style.css
│
├── src/
│ ├── __init__.py
│ ├── config.py
│ ├── localization.py
│ ├── models.py
│ │
│ ├── analyzers/
│ │ ├── __init__.py
│ │ ├── bytecode_analyzer.py
│ │ └── project_analyzer.py
│ │
│ ├── services/
│ │ ├── __init__.py
│ │ ├── database.py
│ │ └── exporter.py
│ │
│ └── ui/
│ ├── __init__.py
│ └── main_window.py
│
├── .gitignore
├── BPREI.spec
├── CHANGELOG.md
├── CODE_SIGNING_POLICY.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── build.bat
├── main.py
├── pyproject.toml
├── requirements-dev.txt
├── requirements.txt
└── start.bat