├── .gitignore ├── LICENSE ├── README.md ├── benchmarks ├── benchmark.png ├── benchmark.py └── bm-modes.py ├── examples ├── colored-rows.png ├── colored.png ├── example.py ├── example_multiline.py └── example_wrap.py ├── pyproject.toml └── rapidtables └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | rapidtables.egg-info 3 | build 4 | dist 5 | Makefile 6 | TODO.todo 7 | *.pyc 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/benchmarks/benchmark.png -------------------------------------------------------------------------------- /benchmarks/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/benchmarks/benchmark.py -------------------------------------------------------------------------------- /benchmarks/bm-modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/benchmarks/bm-modes.py -------------------------------------------------------------------------------- /examples/colored-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/examples/colored-rows.png -------------------------------------------------------------------------------- /examples/colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/examples/colored.png -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/example_multiline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/examples/example_multiline.py -------------------------------------------------------------------------------- /examples/example_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/examples/example_wrap.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rapidtables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alttch/rapidtables/HEAD/rapidtables/__init__.py --------------------------------------------------------------------------------