sphinx 项目根目录_如何使用Sphinx工具记录Django项目

sphinx 项目根目录

I recently visited a company where I had a nice talk with one of its employees. We talked about technology and programming. Then we touched the subject of project documentation. Specifically how React does it automatically but Django doesn’t. That made me think I should do some automatic documentation for my Django projects.

我最近访问了一家公司,在那里我与其中一名员工进行了愉快的交谈。 我们讨论了技术和编程。 然后,我们触及了项目文档的主题。 具体来说,React是如何自动执行的,而Django没有。 那使我认为我应该为Django项目做一些自动文档。

I couldn’t find any relevant documentation on how its done, so it took me a little longer than I originally planned. Not because it was hard, but because I found that the Sphinx official documentation and other resources to be outdated or obscure.

我找不到有关其完成方式的任何相关文档,因此它花了我的时间比我最初计划的要长。 不是因为很难,而是因为我发现Sphinx官方文档和其他资源已经过时或晦涩。

So today I have made a simple but comprehensive tutorial that explains how to make Django documentation using the Sphinx documentation tool in Ubuntu.

因此,今天我做了一个简单而全面的教程,解释了如何在Ubuntu中使用Sphinx文档工具制作Django文档。

安装Sphinx (Install Sphinx)

First you should enter the virtual environment for your Django project.

首先,您应该为Django项目输入虚拟环境。

Installing Sphinx is quite straightforward using pip3 (pip for Python 3):

使用pip3(适用于Python 3的pip)安装Sphinx非常简单:

pip3 install sphinx

创建文档目录 (Create a documentation directory)

Once you’ve installed Sphinx, you will need to create the document root folder. This folder will hold your documentation and other files you will need (images, about pages, and so on…).

一旦安装了Sphinx,就需要创建文档根文件夹。 该文件夹将保存您的文档和其他所需文件(图像,有关页面的信息,等等)。

Create your document root folder in your project main folder and name it /docs.

在项目主文件夹中创建文档根文件夹,并将其命名为/ docs。

To start Sphinx, run this command inside your /docs folder:

要启动Sphinx,请在/ docs文件夹中运行以下命令:

sphinx-quickstart

You’ll have a lot of options now. In most cases you can simply retype the default option, but there are some options you need to pay attention to.

您现在将有很多选择。 在大多数情况下,您可以简单地重新输入默认选项,但是您需要注意一些选项。

This is how I answered:

这就是我的回答:

Welcome to the Sphinx 1.7.5 quickstart utility.Please enter values for the following settings (just press Enter to
accept a default value, if one is given in brackets).Selected root path: .You have two options for placing the build directory for Sphinx output.
Either, you use a directory “_build” within the root path, or you separate
“source” and “build” directories within the root path.> Separate source and build directories (y/n) [n]: nInside the root directory, two more directories will be created; “_templates”
for custom HTML templates and “_static” for custom stylesheets and other static
files. You can enter another prefix (such as “.”) to replace the underscore.> Name prefix for templates and static dir [_]: _The project name will occur in several places in the built documentation.
> Project name: Your_project_name
> Author name(s): Goran Aviani
> Project release []: 1.0If the documents are to be written in a language other than English,
you can select a language here by its language code. Sphinx will then
translate text that it generates into that language.For a list of supported codes, see
http://sphinx-doc.org/config.html#confval-language.> Project language [en]: enThe file name suffix for source files. Commonly, this is either “.txt”
or “.rst”. Only files with this suffix are considered documents.> Source file suffix [.rst]: .rstOne document is special in that it is considered the top node of the
“contents tree”, that is, it is the root of the hierarchical structure
of the documents. Normally, this is “index”, but if your “index”
document is a custom template, you can also set this to another filename.> Name of your master document (without suffix) [index]: indexSphinx can also add configuration for epub output:> Do you want to use the epub builder (y/n) [n]: nIndicate which of the following Sphinx extensions should be enabled:> autodoc: automatically insert docstrings from modules (y/n) [n]: y
> doctest: automatically test code snippets in doctest blocks (y/n) [n]: y
> intersphinx: link between Sphinx documentation of different projects (y/n) [n]: n
> todo: write “todo” entries that can be shown or hidden on build (y/n) [n]: y
> coverage: checks for documentation coverage (y/n) [n]: y
> imgmath: include math, rendered as PNG or SVG images (y/n) [n]: y
> mathjax: include math, rendered in the browser by MathJax (y/n) [n]: n
> ifconfig: conditional inclusion of content based on config values (y/n) [n]: n
> viewcode: include links to the source code of documented Python objects (y/n) [n]: n
> githubpages: create .nojekyll file to publish the document on GitHub pages (y/n) [n]: n
A Makefile and a Windows command file can be generated for you so that you
only have to run e.g. `make html’ instead of invoking sphinx-build
directly.
> Create Makefile? (y/n) [y]: y
> Create Windows command file? (y/n) [y]: yCreating file ./conf.py.
Creating file ./index.rst.
Creating file ./Makefile.
Creating file ./make.bat.Finished: An initial directory structure has been created.You should now populate your master file ./index.rst and create other documentation
source files. Use the Makefile to build the docs, like so:make builderwhere “builder” is one of the supported builders, e.g. html, latex or linkcheck.

Django连接 (Django connection)

In your project folder, find /docs/conf.py and inside it, somewhere near the top of the file, find “#import os”. Just below it, write this:

在您的项目文件夹中,找到/docs/conf.py,并在其中的文件顶部附近找到“ #import os”。 在它的正下方,写下:

import os
import sys
import django
sys.path.insert(0, os.path.abspath('..'))
os.environ['DJANGO_SETTINGS_MODULE'] = 'Your_project_name.settings'
django.setup()

Now there are two ways you can proceed:

现在,有两种方法可以继续:

  1. You can use sphinx-apidoc to generate completely automatic documentation, or

    您可以使用sphinx-apidoc 生成全自动文档,或者

  2. You can build your own modules that will show in the documentation.

    您可以构建自己的模块,这些模块将显示在文档中。

In this tutorial I am going to show you how to do it both ways.

在本教程中,我将向您展示两种方法。

1. Sphinx-apidoc (1. Sphinx-apidoc)

This is the simpler method where you just need to navigate to your /docs folder and execute:

这是更简单的方法,您只需要导航到/ docs文件夹并执行:

sphinx-apidoc -o . ..

Now you need to build your documentation by running the command:

现在,您需要通过运行以下命令来构建文档:

make html

Navigate to Your_project_folder/docs/_build/html and open index.html. This is the index page of your documentation.

导航到Your_project_folder / docs / _build / html并打开index.html。 这是文档的索引页。

2.构建自己的模块 (2. Building your own modules)

This is the slightly more complicated way, but will give you much more freedom in organizing your documentation.

这是稍微复杂一些的方法,但是会给您更多的组织文档的自由。

Now you’ll want to make documentation about your views, modules etc. But first let me show you an easy example, just so you understand the logic of this part:

现在,您将要制作有关视图,模块等的文档。但是,首先让我向您展示一个简单的示例,以使您了解这部分的逻辑:

Go in your /docs folder and create a new folder named “/modules”. Inside it create a file named all-about-me.rst:

进入/ docs文件夹并创建一个名为“ / modules”的新文件夹。 在其中创建一个名为all-about-me.rst的文件:

mkdir modulesf
touch modules/all-about-me.rst

Inside all-about-me.rst write something like this:

在all-about-me.rst内编写如下内容:

############
All about me
############I’m Goran Aviani, a Django developer.

Now you’ve created something to show in your documentation, but still you don’t have an actual place to show it. Go back to the /docs folder and open index.rst and just bellow this code

现在,您已经创建了一些要显示在文档中的内容,但是仍然没有显示它的实际位置。 返回到/ docs文件夹并打开index.rst,然后将以下代码显示如下

.. toctree:::maxdepth: 2:caption: Contents:

Add this:

添加:

modules/all-about-me.rst

Make it so there is a blank line between the upper code and the added line:

使其在上方代码和添加的行之间留空行:

.. toctree:::maxdepth: 2:caption: Contents:modules/all-about-me.rst

Now you need to build your documentation. Change the location to the folder that contains the Makefile ( that is the /docs folder). Then run in the terminal:

现在,您需要构建文档。 将位置更改为包含Makefile的文件夹(即/ docs文件夹)。 然后在终端中运行:

make html

You will find your documentation in

您可以在以下位置找到文档

Your_project_folder/docs/_build/html and open index.html
Your_project_folder / docs / _build / html并打开index.html

You can do the same for your Django views:

您可以对Django视图执行相同的操作:

Inside the /modules folder, create the views.rst file.

在/ modules文件夹中,创建views.rst文件。

touch views.rst

Inside the views.rst file write this:

在views.rst文件中写入以下内容:

Views
======.. automodule:: yourapp.views:members::undoc-members:

Inside index.rst, just under modules/all-about-me.rst, add this:

在index.rst内部,在modules / all-about-me.rst下,添加以下代码:

modules/views.rst

Now you again need to build your documentation by running “make html” inside your /docs folder:

现在,您再次需要通过在/ docs文件夹中运行“ make html”来构建文档:

make html

Get the idea? First you create the .rst file and then you put it inside index.rst so it can be displayed on index.html page.

有主意吗? 首先,您创建.rst文件,然后将其放入index.rst中,以便可以在index.html页面上显示它。

You can make same thing for your models. Go in your /modules folder and create models.rst file.

您可以为模型制作相同的东西。 进入/ modules文件夹并创建models.rst文件。

touch models.rst

You can add something like this in your models.rst file:

您可以在models.rst文件中添加以下内容:

Models
=======.. automodule:: yourapp.models:members::undoc-members:

Inside index.rst just under modules/views.rst paste:

在index.rst内部,就在modules / views.rst下面,粘贴:

modules/models.rst

Inside your /docs folder run:

在/ docs文件夹中运行:

make html

文件测试 (Documentation test)

You can test your documentation by running this code inside your /docs folder:

您可以通过在/ docs文件夹中运行以下代码来测试文档:

make linkcheck

Voilà! You are done!

瞧! 大功告成!

This is my first public tutorial, so give me a few claps if you like it :)

这是我的第一个公开教程,如果您喜欢,请给我一些鼓掌:)

Thank you for reading! Check out more articles like this on my freeCodeCamp profile: https://www.freecodecamp.org/news/author/goran/ and other fun stuff I build on my GitHub page: https://github.com/GoranAviani

感谢您的阅读! 在我的freeCodeCamp个人资料上查看更多类似的文章: https ://www.freecodecamp.org/news/author/goran/和我在GitHub页面上构建的其他有趣的东西: https : //github.com/GoranAviani

翻译自: https://www.freecodecamp.org/news/sphinx-for-django-documentation-2454e924b3bc/

sphinx 项目根目录

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393811.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

程序员必知之浮点数运算原理详解

导读:浮点数运算是一个非常有技术含量的话题,不太容易掌握。许多程序员都不清楚使用操作符比较float/double类型的话到底出现什么问题。 许多人使用float/double进行货币计算时经常会犯错。这篇文章是这一系列中的精华,所有的软件开发人员都应…

axure选中后横线切换_3、开关状态切换 —— Axure实用交互

写在开头:开关的制作在几乎所有原型设计中都会用到,所以美观自然的交互开关可以给你的原型设计加分不少。本次开关设计主要用到的是逻辑为:选中状态的切换首先,来看一下演示动画开始原型设计一、创建元件首先需要打开Axure软件,并…

Django框架——模型(数据库操作)

-- models.py-- ORM(object-relation mapping) 实现数据模型与数据库的解耦;# 对象,关系,映射;1.根 据对象的类型生成表结构;2.将对象、列表的操作,转换为sql语句;3.将sql查询到的结果转换为对象…

leetcode140. 单词拆分 II(回溯+记忆化)

给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,在字符串中增加空格来构建一个句子,使得句子中所有的单词都在词典中。返回所有这些可能的句子。 说明: 分隔时可以重复使用字典中的单词。 你可以假设字典中没有重复的单词。 …

#loj 3058 [HNOI2019] 白兔之舞

单位根反演思博题 模数是乱给的记得整个任意模数ntt k为p-1的约数意味着一定存在k次单位根,设g是p的原根则\(w_{k}^{1}g^{\frac{k-1}{p}}\) 既然k次单位根存在自然考虑单位根反演了 设\(f(i)\)表示跳了i步并且停在了第二维为y的顶点的方案数 设\(st\)表示初始向量而…

标杆徐2018 Linux自动化运维实战,标杆徐2018 Linux自动化运维系列⑦: SaltStack自动化配置管理实战...

结合企业自动化集群场景讲解,轻松玩转SaltStack自动化配置管理工具第1章 SaltStack基础应用SaltStack安装SaltStack认证Saltstack远程执行SaltStack配置管理第2章 SaltStack数据系统SaltStack数据系统-Grains 客户端向服务端发送状态SaltStack数据系统-paiil 服务…

JS 对象引用问题

var a {n:1}; var b a; a {n:2}; a.x a ;console.log(a.x);console.log(b.x); var a {n:1}; var b a; a.x a {n:2}; console.log(a.x);console.log(b.x); 这两个问题主要理解两点就很简单了。 对象是引用类型,改变赋值只是改变指针的引用。运算符相当于改变…

工程代码_Egret开发笔记(二)基础工程代码阅读

代码目录结构在Egret Wing中打开上一节中我们创建的项目工程,查看代码目录结构,Forward在如下图中标记了各个目录的及关键文件的用途。代码阅读理解接下来我们从web入口一步一步阅读初始代码。首先打开index.html文件,我们看到index文件内容如…

知晓云助力小程序开发

小程序开发遇到瓶颈虽然腾讯提供了小程序解决方案,https://cloud.tencent.com/solution/la。但是对于普通开发者或者小企业的开发人员来说,购买域名,网站备案、部署SSL证书,安装会话服务器。业务逻辑上要使用数据库,缓…

leetcode131. 分割回文串(回溯)

给定一个字符串 s&#xff0c;将 s 分割成一些子串&#xff0c;使每个子串都是回文串。 返回 s 所有可能的分割方案。 示例: 输入: “aab” 输出: [ [“aa”,“b”], [“a”,“a”,“b”] ] 代码 class Solution {List<List<String>> stringListnew ArrayList…

Cracer渗透-windows基础(系统目录,服务,端口,注册表)

系统目录C:\Windows\system32\config\SAM (保存系统密码) 无法正常修改&#xff0c;可以进入PE系统进行修改&#xff08;先备份在清空&#xff09;利用结束后&#xff0c;再将之前备份的恢复C:\Windows\System32\drivers\hosts&#xff08;域名解析文件&#xff09;hosts欺骗&a…

java--xml文件读取(SAX)

SAX解析原理&#xff1a; 使用Handler去逐个分析遇到的每一个节点 SAX方式解析步奏&#xff1a; 创建xml解析需要的handler&#xff08;parser.parse(file,handler)&#xff09; package com.imooc_xml.sax.handler;import java.util.ArrayList;import org.xml.sax.Attributes…

算法训练营 重编码_编码训练营之后该做什么-以及如何获得成功

算法训练营 重编码by Anthony Morris安东尼莫里斯(Anthony Morris) 编码训练营之后该做什么-以及如何获得成功 (What to do — and how to find success — after a coding bootcamp) It’s almost been two years since I graduated from the Lighthouse Labs Web Developmen…

leetcode860. 柠檬水找零(贪心)

在柠檬水摊上&#xff0c;每一杯柠檬水的售价为 5 美元。 顾客排队购买你的产品&#xff0c;&#xff08;按账单 bills 支付的顺序&#xff09;一次购买一杯。 每位顾客只买一杯柠檬水&#xff0c;然后向你付 5 美元、10 美元或 20 美元。你必须给每个顾客正确找零&#xff0…

linux防火墙开启某端口命令行,linux上防火墙 开启某个端口

linux下防火墙 开启某个端口直接在/etc/sysconfig/iptables中增加一行&#xff1a;-A RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 8080 -j ACCEPT注意添加位置:-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 25 -j ACCEPT-A RH-Fi…

imp命令导入指定表_Sqoop 使用shell命令的各种参数的配置及使用方法

点击上方蓝色字体&#xff0c;选择“设为星标”回复”资源“获取更多资源本文作者&#xff1a;Sheep Sun本文链接&#xff1a;https://www.cnblogs.com/yangxusun9/p/12558683.html大数据技术与架构点击右侧关注&#xff0c;大数据开发领域最强公众号&#xff01;暴走大数据点击…

黑客频繁来袭 关注云计算的安全与保障

本文讲的是 : 黑客频繁来袭 关注云计算的安全与保障 , 【IT168 资讯】日前&#xff0c;虎嗅网遭受网络攻击的事件&#xff0c;引起业内关注。2月27日晚&#xff0c;虎嗅网中断访问&#xff0c;虎嗅网新浪官方微博随即发表声明&#xff0c;表示网站受到恶意攻击&#xff0c;随…

51nod 1100:斜率最大

题目链接 斜率最大点对横坐标必相邻 #include <bits/stdc.h> using namespace std; const int maxn 1e4 100;struct point {int x, y, pos;bool operator < (const point& rhs)const{return x<rhs.x;} } a[maxn]; double xielv(point a, point b) {return (a…

ik分词和jieba分词哪个好_Pubseg:一种单双字串的BiLSTM中文分词工具

中文分词是中文自然语言处理中的重要的步骤&#xff0c;有一个更高精度的中文分词模型会显著提升文档分类、情感预测、社交媒体处理等任务的效果[1]。Pubseg是基于BiLSTM中文分词工具&#xff0c;基于ICWS2005PKU语料训练集训练而成&#xff0c;其优点在于在ICWS2005-PKU语料下…

freecodecamp_freeCodeCamp.org隐私权政策:问题与解答

freecodecampWe take your privacy seriously. And we give you full control over your data.我们把你的隐私当回事。 而且&#xff0c;我们可以完全控制您的数据。 freeCodeCamp doesnt show you ads or sell your data to anyone. Our nonprofit is instead supported by t…