├── .github └── FUNDING.yml ├── AsciiPy.py ├── README.md ├── _config.yml ├── ascii_image.txt ├── clear └── cleaner.py ├── gen ├── frames │ └── a.txt └── vids │ └── a.txt ├── images-videos ├── GitHub-Mark.png ├── cube.mp4 └── python-logo.png ├── requirements.txt └── test.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /AsciiPy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/AsciiPy.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/_config.yml -------------------------------------------------------------------------------- /ascii_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/ascii_image.txt -------------------------------------------------------------------------------- /clear/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/clear/cleaner.py -------------------------------------------------------------------------------- /gen/frames/a.txt: -------------------------------------------------------------------------------- 1 | do not delete theese folders 2 | -------------------------------------------------------------------------------- /gen/vids/a.txt: -------------------------------------------------------------------------------- 1 | do not delete theese folders 2 | -------------------------------------------------------------------------------- /images-videos/GitHub-Mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/images-videos/GitHub-Mark.png -------------------------------------------------------------------------------- /images-videos/cube.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/images-videos/cube.mp4 -------------------------------------------------------------------------------- /images-videos/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/images-videos/python-logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.1.1.26 2 | requests==2.22.0 3 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4yGM/AsciiPy/HEAD/test.py --------------------------------------------------------------------------------