├── .coveragerc ├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .pylintrc ├── DEVELOPMENT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── art ├── doge_spin.svg ├── halo.png └── persist_spin.svg ├── examples ├── __init__.py ├── colored_text_spin.py ├── context_manager.py ├── custom_spins.py ├── doge_spin.py ├── loader_spin.py ├── long_text.py ├── notebook.ipynb ├── persist_spin.py └── stream_change.py ├── halo ├── __init__.py ├── _utils.py ├── cursor.py ├── halo.py └── halo_notebook.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── _utils.py ├── test_halo.py └── test_halo_notebook.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | show_missing = True 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/.pylintrc -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/README.md -------------------------------------------------------------------------------- /art/doge_spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/art/doge_spin.svg -------------------------------------------------------------------------------- /art/halo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/art/halo.png -------------------------------------------------------------------------------- /art/persist_spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/art/persist_spin.svg -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/colored_text_spin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/colored_text_spin.py -------------------------------------------------------------------------------- /examples/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/context_manager.py -------------------------------------------------------------------------------- /examples/custom_spins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/custom_spins.py -------------------------------------------------------------------------------- /examples/doge_spin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/doge_spin.py -------------------------------------------------------------------------------- /examples/loader_spin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/loader_spin.py -------------------------------------------------------------------------------- /examples/long_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/long_text.py -------------------------------------------------------------------------------- /examples/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/notebook.ipynb -------------------------------------------------------------------------------- /examples/persist_spin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/persist_spin.py -------------------------------------------------------------------------------- /examples/stream_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/examples/stream_change.py -------------------------------------------------------------------------------- /halo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/halo/__init__.py -------------------------------------------------------------------------------- /halo/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/halo/_utils.py -------------------------------------------------------------------------------- /halo/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/halo/cursor.py -------------------------------------------------------------------------------- /halo/halo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/halo/halo.py -------------------------------------------------------------------------------- /halo/halo_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/halo/halo_notebook.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/tests/_utils.py -------------------------------------------------------------------------------- /tests/test_halo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/tests/test_halo.py -------------------------------------------------------------------------------- /tests/test_halo_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/tests/test_halo_notebook.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/halo/HEAD/tox.ini --------------------------------------------------------------------------------