├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── gifs ├── alpha.gif ├── basic.gif ├── colorful.gif ├── custom_end.gif └── title.gif ├── pyproject.toml └── src └── haccks ├── __init__.py ├── example.py └── requirements.txt /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/README.md -------------------------------------------------------------------------------- /gifs/alpha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/gifs/alpha.gif -------------------------------------------------------------------------------- /gifs/basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/gifs/basic.gif -------------------------------------------------------------------------------- /gifs/colorful.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/gifs/colorful.gif -------------------------------------------------------------------------------- /gifs/custom_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/gifs/custom_end.gif -------------------------------------------------------------------------------- /gifs/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/gifs/title.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/haccks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/src/haccks/__init__.py -------------------------------------------------------------------------------- /src/haccks/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasParsy/haccks/HEAD/src/haccks/example.py -------------------------------------------------------------------------------- /src/haccks/requirements.txt: -------------------------------------------------------------------------------- 1 | blessed 2 | typing --------------------------------------------------------------------------------