├── .all-contributorsrc ├── .github ├── background_printy.png ├── demo_inputy.gif ├── demo_printy.gif ├── escape_printy.png ├── inputy_example.png ├── inputy_max_digits_max_decimals.png ├── printy_COLORS_FORMATS.png ├── printy_changing_predefined.png ├── printy_f_strings.png ├── printy_from_file.png ├── printy_global_bold_blue.png ├── printy_helpme.png ├── printy_inline_red_italic.png ├── printy_no_format.png ├── printy_override_inline_with_global.png ├── printy_pretty_dict_four_indentation.png ├── printy_pretty_dict_two_indentation.png └── printy_raw_format.png ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── printy ├── __init__.py ├── __main__.py ├── core.py ├── exceptions.py ├── flags.py └── helpme.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── tests_core.py └── tests_exceptions.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/background_printy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/background_printy.png -------------------------------------------------------------------------------- /.github/demo_inputy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/demo_inputy.gif -------------------------------------------------------------------------------- /.github/demo_printy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/demo_printy.gif -------------------------------------------------------------------------------- /.github/escape_printy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/escape_printy.png -------------------------------------------------------------------------------- /.github/inputy_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/inputy_example.png -------------------------------------------------------------------------------- /.github/inputy_max_digits_max_decimals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/inputy_max_digits_max_decimals.png -------------------------------------------------------------------------------- /.github/printy_COLORS_FORMATS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_COLORS_FORMATS.png -------------------------------------------------------------------------------- /.github/printy_changing_predefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_changing_predefined.png -------------------------------------------------------------------------------- /.github/printy_f_strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_f_strings.png -------------------------------------------------------------------------------- /.github/printy_from_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_from_file.png -------------------------------------------------------------------------------- /.github/printy_global_bold_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_global_bold_blue.png -------------------------------------------------------------------------------- /.github/printy_helpme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_helpme.png -------------------------------------------------------------------------------- /.github/printy_inline_red_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_inline_red_italic.png -------------------------------------------------------------------------------- /.github/printy_no_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_no_format.png -------------------------------------------------------------------------------- /.github/printy_override_inline_with_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_override_inline_with_global.png -------------------------------------------------------------------------------- /.github/printy_pretty_dict_four_indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_pretty_dict_four_indentation.png -------------------------------------------------------------------------------- /.github/printy_pretty_dict_two_indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_pretty_dict_two_indentation.png -------------------------------------------------------------------------------- /.github/printy_raw_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.github/printy_raw_format.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/README.md -------------------------------------------------------------------------------- /printy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/printy/__init__.py -------------------------------------------------------------------------------- /printy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/printy/__main__.py -------------------------------------------------------------------------------- /printy/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/printy/core.py -------------------------------------------------------------------------------- /printy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/printy/exceptions.py -------------------------------------------------------------------------------- /printy/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/printy/flags.py -------------------------------------------------------------------------------- /printy/helpme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/printy/helpme.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/tests/tests_core.py -------------------------------------------------------------------------------- /tests/tests_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edraobdu/printy/HEAD/tests/tests_exceptions.py --------------------------------------------------------------------------------