0

lately i've started using pdoc3 to document my whole project, right now i have a problem generating a HTML that contain the whole project in 1 command, and not going every.py file one by one

the project structure is like this:

--pythonProject
    |  file_a.py
    |  file_b.py
    --folder
        |  file_c.py
        |  file_d.py
    --docs

i tried the following command : pdoc --html .\file_a.py --output-dir docs --force and it genetrates the following file in docs folder -> file_a.html

and when using this pdoc --html .\ --output-dir docs --force i receive error for pytest library that not even in the project

i wanted to know if there is a command to generate the whole project (im using PyCharm)

thanks alot :)

GiiR
  • 1
  • 1
  • Have you tried specifying each file separately: `pdoc3 --html file_a.py file_b.py ...`? Alternatively, have you tried specifying the whole but _named_ dir, i.e. `cd .. ; pdoc3 --html pythonProject`? – K3---rnc Oct 28 '22 at 16:45

0 Answers0