├── .gitignore ├── License ├── README.md ├── cn_README.md ├── demo ├── color_test.py ├── file_moving.py ├── horse_race.py ├── images │ ├── file_moving_demo.gif │ └── horse_race_demo.gif ├── random_sort.py └── remove_test.py ├── reprint ├── __init__.py └── reprint.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __* 3 | build 4 | dist 5 | *.egg-info 6 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/README.md -------------------------------------------------------------------------------- /cn_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/cn_README.md -------------------------------------------------------------------------------- /demo/color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/demo/color_test.py -------------------------------------------------------------------------------- /demo/file_moving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/demo/file_moving.py -------------------------------------------------------------------------------- /demo/horse_race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/demo/horse_race.py -------------------------------------------------------------------------------- /demo/images/file_moving_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/demo/images/file_moving_demo.gif -------------------------------------------------------------------------------- /demo/images/horse_race_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/demo/images/horse_race_demo.gif -------------------------------------------------------------------------------- /demo/random_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/demo/random_sort.py -------------------------------------------------------------------------------- /demo/remove_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/demo/remove_test.py -------------------------------------------------------------------------------- /reprint/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from .reprint import output -------------------------------------------------------------------------------- /reprint/reprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/reprint/reprint.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yinzo/reprint/HEAD/setup.py --------------------------------------------------------------------------------