I am trying to use documentation using docstrings- my code is written in cython and compiles fine normally
When I try to run
pdoc --http localhost:8080 main.pyx
I get a bunch of errors such as
module 'mongo' has no attribute 'retrieve_all_fundamental_events_from_db
while in fact my mongo.pyx
module does have the function 'retrieve_all_fundamental_events_from_db' and it works perfectly fine otherwise
How to fix this? Does pdoc work with cython?