├── .gitignore ├── LICENSE ├── README.md ├── media ├── bull.png └── demo.gif ├── pdf.py └── reqs.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealAJ/bulk-pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealAJ/bulk-pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealAJ/bulk-pdf/HEAD/README.md -------------------------------------------------------------------------------- /media/bull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealAJ/bulk-pdf/HEAD/media/bull.png -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealAJ/bulk-pdf/HEAD/media/demo.gif -------------------------------------------------------------------------------- /pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealAJ/bulk-pdf/HEAD/pdf.py -------------------------------------------------------------------------------- /reqs.txt: -------------------------------------------------------------------------------- 1 | requests 2 | urllib 3 | --------------------------------------------------------------------------------