├── .gitignore ├── README.md ├── htmlie.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | __pycache__/ 3 | *.egg-info/ 4 | dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotgao2/htmlie/HEAD/README.md -------------------------------------------------------------------------------- /htmlie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotgao2/htmlie/HEAD/htmlie.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotgao2/htmlie/HEAD/setup.py --------------------------------------------------------------------------------