├── .gitignore ├── CHANGELOG ├── LICENSE.txt ├── README.md ├── bndr ├── __init__.py ├── bndr.py ├── bndrimg.py ├── bndrtxt.py └── filters.py ├── img ├── input_sample1.jpg ├── input_sample2.jpg ├── logo.png ├── output_sample1.png └── output_sample2.png ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | build 4 | dist 5 | *.egg-info -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/README.md -------------------------------------------------------------------------------- /bndr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/bndr/__init__.py -------------------------------------------------------------------------------- /bndr/bndr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/bndr/bndr.py -------------------------------------------------------------------------------- /bndr/bndrimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/bndr/bndrimg.py -------------------------------------------------------------------------------- /bndr/bndrtxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/bndr/bndrtxt.py -------------------------------------------------------------------------------- /bndr/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/bndr/filters.py -------------------------------------------------------------------------------- /img/input_sample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/img/input_sample1.jpg -------------------------------------------------------------------------------- /img/input_sample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/img/input_sample2.jpg -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/output_sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/img/output_sample1.png -------------------------------------------------------------------------------- /img/output_sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/img/output_sample2.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xpktro/bndr/HEAD/setup.py --------------------------------------------------------------------------------