ately 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
i tried the following command : pdoc --html .\fila_a.py --output-dir docs --force --config "lunr_search={}" and it genetrates the following file in docs folder -> file_a.html
is there a way to generate 1 file for all the .py files i have in code?
also tried pdoc --html .\ --output-dir docs --force --config "lunr_search={}"
but getting an error for pytest library that not in my project at all
also tried pdoc --html pythonProject --output-dir docs --force --config "lunr_search={}"
and it says that it cant find module pythonProject
Expected Behavior
ately 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:
Actual Behavior
i tried the following command :
pdoc --html .\fila_a.py --output-dir docs --force --config "lunr_search={}"
and it genetrates the following file in docs folder -> file_a.html is there a way to generate 1 file for all the.py
files i have in code? also triedpdoc --html .\ --output-dir docs --force --config "lunr_search={}"
but getting an error forpytest
library that not in my project at all also tried pdoc --html pythonProject --output-dir docs --force --config "lunr_search={}" and it says that it cant find modulepythonProject
Steps to Reproduce
Additional info