├── .github ├── FUNDING.yml └── workflows │ ├── debian.yml │ ├── python-publish_to_pypi.yml │ └── python-test_and_lint.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── aprscot ├── __init__.py ├── classes.py ├── commands.py ├── constants.py └── functions.py ├── debian ├── aprscot.conf ├── aprscot.postinst ├── aprscot.service └── install_pkg_build_deps.sh ├── docs ├── changelog.md ├── configuration.md ├── conop.md ├── index.md ├── installation.md ├── media │ ├── aprscot-concept.png │ ├── screenshot.png │ ├── screenshot2-25.png │ ├── screenshot2-50.png │ ├── screenshot2.png │ ├── screenshot3.png │ ├── screenshot4.png │ ├── screenshot5.png │ ├── screenshot6.png │ ├── screenshot_1637083156_28841.png │ ├── screenshot_1637083168_26966.png │ ├── screenshot_1637083172_3709.png │ ├── screenshot_1637083240_16797-25p.png │ ├── screenshot_1637083240_16797-50p.png │ ├── screenshot_1637083240_16797.png │ └── screenshot_1637083260_7170.png ├── requirements.txt ├── troubleshooting.md └── usage.md ├── example-config.ini ├── mkdocs.yml ├── requirements_test.txt ├── setup.cfg ├── setup.py └── tests └── test_functions.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/.github/workflows/debian.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/.github/workflows/python-publish_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/python-test_and_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/.github/workflows/python-test_and_lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/README.md -------------------------------------------------------------------------------- /aprscot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/aprscot/__init__.py -------------------------------------------------------------------------------- /aprscot/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/aprscot/classes.py -------------------------------------------------------------------------------- /aprscot/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/aprscot/commands.py -------------------------------------------------------------------------------- /aprscot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/aprscot/constants.py -------------------------------------------------------------------------------- /aprscot/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/aprscot/functions.py -------------------------------------------------------------------------------- /debian/aprscot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/debian/aprscot.conf -------------------------------------------------------------------------------- /debian/aprscot.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/debian/aprscot.postinst -------------------------------------------------------------------------------- /debian/aprscot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/debian/aprscot.service -------------------------------------------------------------------------------- /debian/install_pkg_build_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/debian/install_pkg_build_deps.sh -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | {!CHANGELOG.md!} 2 | -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/conop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/conop.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | {!README.md!} -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/media/aprscot-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/aprscot-concept.png -------------------------------------------------------------------------------- /docs/media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot.png -------------------------------------------------------------------------------- /docs/media/screenshot2-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot2-25.png -------------------------------------------------------------------------------- /docs/media/screenshot2-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot2-50.png -------------------------------------------------------------------------------- /docs/media/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot2.png -------------------------------------------------------------------------------- /docs/media/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot3.png -------------------------------------------------------------------------------- /docs/media/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot4.png -------------------------------------------------------------------------------- /docs/media/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot5.png -------------------------------------------------------------------------------- /docs/media/screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot6.png -------------------------------------------------------------------------------- /docs/media/screenshot_1637083156_28841.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot_1637083156_28841.png -------------------------------------------------------------------------------- /docs/media/screenshot_1637083168_26966.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot_1637083168_26966.png -------------------------------------------------------------------------------- /docs/media/screenshot_1637083172_3709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot_1637083172_3709.png -------------------------------------------------------------------------------- /docs/media/screenshot_1637083240_16797-25p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot_1637083240_16797-25p.png -------------------------------------------------------------------------------- /docs/media/screenshot_1637083240_16797-50p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot_1637083240_16797-50p.png -------------------------------------------------------------------------------- /docs/media/screenshot_1637083240_16797.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot_1637083240_16797.png -------------------------------------------------------------------------------- /docs/media/screenshot_1637083260_7170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/media/screenshot_1637083260_7170.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/docs/usage.md -------------------------------------------------------------------------------- /example-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/example-config.ini -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aprscot/HEAD/tests/test_functions.py --------------------------------------------------------------------------------