简体   繁体   中英

How to import module to Sphinx

import myModule as myModule

with this code works import and I can make my doc

import myPackage.myModule as myModule

with this I get

"No module named myPackage.myModule"

Doesn't matter if this file exist in root directory or in myPackage directory.

In RST-File I have not mentioned about myModule, I want to document other file that just import this module.

Sphinx needs to be able to import your code, to generate documentation for classes and functions. You probably need to add your project's root folder to sys.path in Sphinx. You can do this from the Sphinx conf.py file:

import sys
import os
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))

Replace '..' with the relative path to the project root.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM