├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── assets └── web2pdf.png ├── dockerfile └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvcoolarun/web2pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvcoolarun/web2pdf/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvcoolarun/web2pdf/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvcoolarun/web2pdf/HEAD/README.md -------------------------------------------------------------------------------- /assets/web2pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvcoolarun/web2pdf/HEAD/assets/web2pdf.png -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvcoolarun/web2pdf/HEAD/dockerfile -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvcoolarun/web2pdf/HEAD/main.py --------------------------------------------------------------------------------