Python Forum
How to convert ebooks in bulk with Python and Calibre - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: Code Review (https://python-forum.io/forum-46.html)
+--- Thread: How to convert ebooks in bulk with Python and Calibre (/thread-36988.html)



How to convert ebooks in bulk with Python and Calibre - janoroot - Apr-20-2022

I wrote a Python script that uses Calibre to do ebook conversion in bulk. Multiple child processes are opened in parallel with the help of the module subprocess. The script has a command-line interface from which the user can specify the input directory of ebooks, the format for conversion, and also an output directory.

https://orthodoxpirate.blogspot.com/2022/04/how-to-convert-ebooks-in-bulk-with.html

I want to improve the code. I am looking for harsh criticism.