├── .gitignore ├── LICENSE ├── README.md ├── bookp.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | books/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellisk/BulkKindleUSBDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellisk/BulkKindleUSBDownloader/HEAD/README.md -------------------------------------------------------------------------------- /bookp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellisk/BulkKindleUSBDownloader/HEAD/bookp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyVirtualDisplay==3.0 2 | requests==2.32.3 3 | selenium==4.28.1 4 | --------------------------------------------------------------------------------