├── .gitignore ├── CHANGELOG.md ├── DOCUMENTATION.md ├── LICENSE ├── README.md ├── assets ├── formatting.png ├── gifs │ ├── checkbox.gif │ ├── christmas.gif │ ├── classic.gif │ ├── colorful.gif │ ├── demo.gif │ ├── exam.gif │ ├── greece.gif │ ├── lime.gif │ ├── numbers.gif │ ├── ocean.gif │ ├── password.gif │ ├── scrollbar.gif │ ├── star.gif │ └── yesno.gif └── icon.png ├── bullet ├── __init__.py ├── charDef.py ├── client.py ├── colors.py ├── cursor.py ├── emojis.py ├── keyhandler.py ├── styles.py └── utils.py ├── examples ├── check.py ├── classic.py ├── colorful.py ├── more.py ├── numbers.py ├── prompt.py ├── scrollbar.py ├── star.py └── yesno.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/README.md -------------------------------------------------------------------------------- /assets/formatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/formatting.png -------------------------------------------------------------------------------- /assets/gifs/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/checkbox.gif -------------------------------------------------------------------------------- /assets/gifs/christmas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/christmas.gif -------------------------------------------------------------------------------- /assets/gifs/classic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/classic.gif -------------------------------------------------------------------------------- /assets/gifs/colorful.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/colorful.gif -------------------------------------------------------------------------------- /assets/gifs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/demo.gif -------------------------------------------------------------------------------- /assets/gifs/exam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/exam.gif -------------------------------------------------------------------------------- /assets/gifs/greece.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/greece.gif -------------------------------------------------------------------------------- /assets/gifs/lime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/lime.gif -------------------------------------------------------------------------------- /assets/gifs/numbers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/numbers.gif -------------------------------------------------------------------------------- /assets/gifs/ocean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/ocean.gif -------------------------------------------------------------------------------- /assets/gifs/password.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/password.gif -------------------------------------------------------------------------------- /assets/gifs/scrollbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/scrollbar.gif -------------------------------------------------------------------------------- /assets/gifs/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/star.gif -------------------------------------------------------------------------------- /assets/gifs/yesno.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/gifs/yesno.gif -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/assets/icon.png -------------------------------------------------------------------------------- /bullet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/__init__.py -------------------------------------------------------------------------------- /bullet/charDef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/charDef.py -------------------------------------------------------------------------------- /bullet/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/client.py -------------------------------------------------------------------------------- /bullet/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/colors.py -------------------------------------------------------------------------------- /bullet/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/cursor.py -------------------------------------------------------------------------------- /bullet/emojis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/emojis.py -------------------------------------------------------------------------------- /bullet/keyhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/keyhandler.py -------------------------------------------------------------------------------- /bullet/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/styles.py -------------------------------------------------------------------------------- /bullet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/bullet/utils.py -------------------------------------------------------------------------------- /examples/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/check.py -------------------------------------------------------------------------------- /examples/classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/classic.py -------------------------------------------------------------------------------- /examples/colorful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/colorful.py -------------------------------------------------------------------------------- /examples/more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/more.py -------------------------------------------------------------------------------- /examples/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/numbers.py -------------------------------------------------------------------------------- /examples/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/prompt.py -------------------------------------------------------------------------------- /examples/scrollbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/scrollbar.py -------------------------------------------------------------------------------- /examples/star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/star.py -------------------------------------------------------------------------------- /examples/yesno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/examples/yesno.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchao1/bullet/HEAD/setup.py --------------------------------------------------------------------------------