├── .github ├── release-drafter.yml └── workflows │ ├── ci.yml │ ├── matchers │ ├── codespell.json │ ├── flake8.json │ └── python.json │ ├── python-publish.yml │ └── release-drafter.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── launch.json ├── LICENSE.TXT ├── README.md ├── Scripts └── pyG5DualStacked ├── assets ├── 23-12-13 19-58-23 1732.jpg ├── Screenshot 2024-06-13 at 09.10.52.png ├── Screenshot 2024-06-13 at 09.10.54.png ├── demoView.png ├── flightSimView.jpeg └── pyG5ViewTester.png ├── bootstrap.sh ├── pyG5 ├── __init__.py ├── pyG5Main.py ├── pyG5Network.py ├── pyG5View.py └── pyG5ViewTester.py ├── requirements.txt └── setup.py /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## This release: 3 | 4 | $CHANGES -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/matchers/codespell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.github/workflows/matchers/codespell.json -------------------------------------------------------------------------------- /.github/workflows/matchers/flake8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.github/workflows/matchers/flake8.json -------------------------------------------------------------------------------- /.github/workflows/matchers/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.github/workflows/matchers/python.json -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/pyG5DualStacked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/Scripts/pyG5DualStacked -------------------------------------------------------------------------------- /assets/23-12-13 19-58-23 1732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/assets/23-12-13 19-58-23 1732.jpg -------------------------------------------------------------------------------- /assets/Screenshot 2024-06-13 at 09.10.52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/assets/Screenshot 2024-06-13 at 09.10.52.png -------------------------------------------------------------------------------- /assets/Screenshot 2024-06-13 at 09.10.54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/assets/Screenshot 2024-06-13 at 09.10.54.png -------------------------------------------------------------------------------- /assets/demoView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/assets/demoView.png -------------------------------------------------------------------------------- /assets/flightSimView.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/assets/flightSimView.jpeg -------------------------------------------------------------------------------- /assets/pyG5ViewTester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/assets/pyG5ViewTester.png -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /pyG5/__init__.py: -------------------------------------------------------------------------------- 1 | """pyG5 package.""" 2 | -------------------------------------------------------------------------------- /pyG5/pyG5Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/pyG5/pyG5Main.py -------------------------------------------------------------------------------- /pyG5/pyG5Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/pyG5/pyG5Network.py -------------------------------------------------------------------------------- /pyG5/pyG5View.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/pyG5/pyG5View.py -------------------------------------------------------------------------------- /pyG5/pyG5ViewTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/pyG5/pyG5ViewTester.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blauret/pyG5/HEAD/setup.py --------------------------------------------------------------------------------