So using my linux terminal, I can run a command to download all pdfs from a website
wget -A pdf -m -p -E -k -K -np http://site/path/
but I want to automate the process. For example run the command for multiple urls and then process the downloaded files later using Python/Jupyter notebook. The wget
library in Python is different and it does not allow me to use the same options/parameters that I can use in wget on my Linux machine. So, how can I achieve the same thing using Python?