├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── images │ └── fabulous-demo.png └── index.rst ├── ez_setup.py ├── fabulous ├── __init__.py ├── _xterm256.c ├── balls.png ├── casts.py ├── color.py ├── compatibility.py ├── debug.py ├── demo.py ├── experimental │ ├── __init__.py │ └── canvas.py ├── fonts │ ├── LICENSE.txt │ ├── NotoEmoji-Regular.ttf │ ├── NotoSans-Bold.ttf │ └── README.md ├── gotham.py ├── grapefruit.py ├── image.py ├── logs.py ├── prompt.py ├── queries.py ├── rlcomplete.py ├── rotating_cube.py ├── term.py ├── test_transientlogging.py ├── text.py ├── utils.py ├── widget.py └── xterm256.py ├── python-fabulous.spec ├── setup.py ├── tests ├── casts_test.py ├── doctests.txt ├── manual │ ├── clear.py │ ├── colors.py │ ├── convulsions.py │ ├── filechooser.py │ ├── info.py │ ├── longtimedprogressbar.py │ ├── move.py │ ├── progressbar.py │ ├── spinner.py │ ├── timedprogressbar.py │ └── title.py ├── rlcomplete_test.py └── term_test.py └── update-gh-pages.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/fabulous-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/docs/images/fabulous-demo.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/docs/index.rst -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/ez_setup.py -------------------------------------------------------------------------------- /fabulous/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/__init__.py -------------------------------------------------------------------------------- /fabulous/_xterm256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/_xterm256.c -------------------------------------------------------------------------------- /fabulous/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/balls.png -------------------------------------------------------------------------------- /fabulous/casts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/casts.py -------------------------------------------------------------------------------- /fabulous/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/color.py -------------------------------------------------------------------------------- /fabulous/compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/compatibility.py -------------------------------------------------------------------------------- /fabulous/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/debug.py -------------------------------------------------------------------------------- /fabulous/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/demo.py -------------------------------------------------------------------------------- /fabulous/experimental/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/experimental/__init__.py -------------------------------------------------------------------------------- /fabulous/experimental/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/experimental/canvas.py -------------------------------------------------------------------------------- /fabulous/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/fonts/LICENSE.txt -------------------------------------------------------------------------------- /fabulous/fonts/NotoEmoji-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/fonts/NotoEmoji-Regular.ttf -------------------------------------------------------------------------------- /fabulous/fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /fabulous/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/fonts/README.md -------------------------------------------------------------------------------- /fabulous/gotham.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/gotham.py -------------------------------------------------------------------------------- /fabulous/grapefruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/grapefruit.py -------------------------------------------------------------------------------- /fabulous/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/image.py -------------------------------------------------------------------------------- /fabulous/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/logs.py -------------------------------------------------------------------------------- /fabulous/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/prompt.py -------------------------------------------------------------------------------- /fabulous/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/queries.py -------------------------------------------------------------------------------- /fabulous/rlcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/rlcomplete.py -------------------------------------------------------------------------------- /fabulous/rotating_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/rotating_cube.py -------------------------------------------------------------------------------- /fabulous/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/term.py -------------------------------------------------------------------------------- /fabulous/test_transientlogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/test_transientlogging.py -------------------------------------------------------------------------------- /fabulous/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/text.py -------------------------------------------------------------------------------- /fabulous/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/utils.py -------------------------------------------------------------------------------- /fabulous/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/widget.py -------------------------------------------------------------------------------- /fabulous/xterm256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/fabulous/xterm256.py -------------------------------------------------------------------------------- /python-fabulous.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/python-fabulous.spec -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/setup.py -------------------------------------------------------------------------------- /tests/casts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/casts_test.py -------------------------------------------------------------------------------- /tests/doctests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/doctests.txt -------------------------------------------------------------------------------- /tests/manual/clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/clear.py -------------------------------------------------------------------------------- /tests/manual/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/colors.py -------------------------------------------------------------------------------- /tests/manual/convulsions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/convulsions.py -------------------------------------------------------------------------------- /tests/manual/filechooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/filechooser.py -------------------------------------------------------------------------------- /tests/manual/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/info.py -------------------------------------------------------------------------------- /tests/manual/longtimedprogressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/longtimedprogressbar.py -------------------------------------------------------------------------------- /tests/manual/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/move.py -------------------------------------------------------------------------------- /tests/manual/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/progressbar.py -------------------------------------------------------------------------------- /tests/manual/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/spinner.py -------------------------------------------------------------------------------- /tests/manual/timedprogressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/timedprogressbar.py -------------------------------------------------------------------------------- /tests/manual/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/manual/title.py -------------------------------------------------------------------------------- /tests/rlcomplete_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/rlcomplete_test.py -------------------------------------------------------------------------------- /tests/term_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/tests/term_test.py -------------------------------------------------------------------------------- /update-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/fabulous/HEAD/update-gh-pages.sh --------------------------------------------------------------------------------