Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • This New Air Purifier Filter Can Remove Cannabis Smoke Odor, Just in Time for 4/20
    • Portable water filter provides safe drinking water from any source
    • MAGA Is Increasingly Convinced the Trump Assassination Attempt Was Staged
    • NCAA seeks faster trial over DraftKings disputed March Madness branding case
    • AI Trusted Less Than Social Media and Airlines, With Grok Placing Last, Survey Says
    • Extragalactic Archaeology tells the ‘life story’ of a whole galaxy
    • Swedish semiconductor startup AlixLabs closes €15 million Series A to scale atomic-level etching technology
    • Republican Mutiny Sinks Trump’s Push to Extend Warrantless Surveillance
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Saturday, April 18
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»Apply Sphinx’s Functionality to Create Documentation for Your Next Data Science Project
    Artificial Intelligence

    Apply Sphinx’s Functionality to Create Documentation for Your Next Data Science Project

    Editor Times FeaturedBy Editor Times FeaturedJune 18, 2025No Comments7 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    Effectively-written documentation is essential for nearly any information science undertaking because it enhances readability, facilitates collaboration, and ensures reproducibility. Clear and concise documentation gives context for the undertaking’s goals, methodologies, and findings, making it simpler for different group members (particularly, newbies) and stakeholders to grasp the that means behind work achieved. Moreover, documentation serves as a reference for future enhancements or troubleshooting, decreasing time spent on re-explaining and even refreshing the primary ideas. 

    Sounds engaging, isn’t it? However have you learnt which you can create practical documentation through Sphinx documentation software in a constant type just by utilizing docstrings? In the event you don’t know an excessive amount of about Sphinx’s performance but, this put up may also help you to determine it out.

    Few phrases about docstrings
    Docstrings are the remark blocks that seem in any class, class technique, and performance throughout the code.

    Three most important docstring codecs are formally supported through Sphinx: Google [1], NumPy [2], and reStructuredText (reST) [3]. Which one to decide on is as much as you, however on this put up I’ll work with the reST format, due to its versatility.

    On this article, I’ll introduce you to 3 most spectacular functionalities of Sphinx’s software, which may routinely generate documentation for Python modules. Earlier than contemplating these three circumstances I assume that you just’ve already created a documentation listing and put in Sphinx in your machine. If not, please, learn the TDS article on easy methods to set up and arrange Sphinx first [4].

    After putting in Sphinx, create a brand new Sphinx undertaking by command sphinx-quickstart. Comply with the prompts to arrange your undertaking. This can populate your listing with a number of information, together with conf.py and index.rst.

    Case 1. Use cross-references for fast navigation

    In response to the official web site of Sphinx, one in all its most helpful options is creating automated cross-references by means of semantic cross-referencing roles. Cross-references can be utilized to hyperlink to capabilities, courses, modules, and even sections inside your documentation.

    As an example, the cross reference to an object description, resembling :func:`.identify`, will create a hyperlink to the place the place identify() is documented.

    Let’s look at how it’s in observe. Think about that we now have a easy Python module referred to as mymodule.py with two fundamental capabilities inside.

    First operate is about summing two numbers:

    def add(a: int, b: int) -> int:
        """
        Add two numbers.
    
        :param a: First quantity.
        :param b: Second quantity.
        :return: Sum of a and b.
        """
        return a + b

    Second is about subtracting one quantity from the opposite:

    def subtract(c: int, d: int) -> int:
        """
        Subtract two numbers.
    
        :param c: First quantity.
        :param d: Second quantity.
        :return: Subtracting d from c.
        """
        return c - d

    It’s potential to make use of :func: to create cross-references to those two capabilities throughout the documentation (:func:.add, :func:.subtract). Let’s create one other file (most important.py), which is able to use the capabilities from mymodule.py. You may add docstrings right here if you wish to doc this file as nicely:

    from mymodule import add, subtract
    def most important():
       """
       Most important operate to exhibit the usage of two capabilities.
    
       It makes use of :func:`.add` and :func:`.subtract` capabilities from mymodule.py.
       """
       # Name the primary operate
       first = add(2,3)
       print(first)
    
       # Name the second operate
       second = subtract(9,8)
       print(second)
    
    if __name__ == "__main__":
       most important()

    To routinely generate documentation out of your code, you’ll be able to allow the autodoc extension in your conf.py file. Add 'sphinx.ext.autodoc' to the extensions record:

    extensions = ['sphinx.ext.autodoc']

    Ensure that to incorporate the trail to your module in order that Sphinx can discover it. Add the next traces on the high of conf.py:

    import os
    import sys
    sys.path.insert(0,  os.path.abspath('../src')) # mymodule.py and most important.py are situated in src folder in documentation listing

    Then we have to generate .rst information of our Python packages. They’re Sphinx’s personal format and must be generated earlier than making HTML-files. It’s quicker to make use of the apidoc command to take care of .rst. Run within the terminal:

    sphinx-apidoc -o supply src

    Right here -o supply defines the listing to put the output information, and src units the placement of Python modules we have to describe. After working this command, newly generated .rst information will seem in your folder.

    Lastly, navigate to your documentation’s folder and run:

    make html

    This can generate HTML documentation within the _build/html listing. Open the generated HTML information in an internet browser. It’s best to see your documentation with cross-references to the add and subtract capabilities:

    Click on right here on the operate names and you can be taken to a web page with their description:

    Case 2. Add hyperlinks to exterior assets

    Along with the flexibility to insert cross-references, Sphinx permits you to add hyperlinks to exterior assets. Under is an instance of how one can create a operate in mymodule.py file that makes use of the built-in abs() operate to exhibit the way it’s potential so as to add a hyperlink to the official Python documentation in its docstrings:

    def calculate_distance(point1, point2):
       """
       Calculate the space between two factors in a 2D area.
    
       This operate makes use of the built-in `abs()` operate to compute absolutely the     
       variations within the x and y coordinates of the 2 factors.
    
       For extra particulars, see the official Python documentation for `abs()`:
       `abs() `_.
       """
       a, b = point1
       c, d = point2
    
       # Calculate the variations in x and y coordinates
       delta_x = abs(c - a)
       delta_y = abs(d - b)
    
       # Calculate the Euclidean distance utilizing the Pythagorean theorem
       distance = (delta_x**2 + delta_y**2) ** 0.5
       return distance

    Working make html command for this case present you the next output:

    Case 3. Create particular directives and examples for higher visible results

    In Sphinx you’ll be able to create brief paragraphs with totally different admonitions, messages, and warnings, in addition to with concrete examples of obtained outcomes. Let’s enrich our module with a be aware directive and instance.

    def calculate_distance(point1, point2):
       """
       Calculate the space between two factors in a 2D area.
    
       This operate makes use of the built-in `abs()` operate to compute absolutely the
       variations within the x and y coordinates of the 2 factors.
    
       For extra particulars, see the official Python documentation for `abs()`:
       `abs() `_.
    
       Instance:
           >>> calculate_distance((1, 2), (4, 6))
           5.0
    
       .. be aware::
           There's a operate that calculates the Euclidean distance straight - `math.hypot() `_.
       """
       a, b = point1
       c, d = point2
    
       # Calculate the variations in x and y coordinates
       delta_x = abs(c - a)
       delta_y = abs(d - b)
    
       # Calculate the Euclidean distance utilizing the Pythagorean theorem
       distance = (delta_x**2 + delta_y**2) ** 0.5
       return distance

    And the ensuing HTML web page appears to be like as follows:

    Due to this fact, for including any instance throughout the docstrings it is advisable use >>>. And to specify a be aware there, simply use .. be aware::. An excellent factor is that you just would possibly add hyperlinks to exterior assets contained in the be aware.

    Conclusion

    Thorough documentation permits others not solely to raised perceive the topic of studying, however to deeply work together with it, which is crucial for technical and scientific documentation. Total, good documentation promotes environment friendly information switch and helps keep the undertaking’s longevity, finally contributing to its success and influence.

    On this put up we thought of easy methods to create a easy, but well-written documentation utilizing Sphinx documentation software. Not solely did we discover ways to create a Sphinx undertaking from scratch, but in addition realized easy methods to use its performance, together with cross-references, hyperlinks to exterior assets, and particular directives. Hope, you discovered this information useful for your self!

    Observe: all photographs within the article have been made by creator.

    References

    [1] Google Python Fashion Information: https://google.github.io/styleguide/pyguide.html make html

    [2] NumPy Fashion Information: https://numpydoc.readthedocs.io/en/latest/format.html 

    [3] reStructuredText Fashion Information: https://docutils.sourceforge.io/rst.html 

    [4] Publish “Step by Step Fundamentals: Code Autodocumentation”: https://towardsdatascience.com/step-by-step-basics-code-autodocumentation-fa0d9ae4ac71 

    [5] Official web site of Sphinx documentation software: https://www.sphinx-doc.org/en/master/ 



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    A Practical Guide to Memory for Autonomous LLM Agents

    April 17, 2026

    You Don’t Need Many Labels to Learn

    April 17, 2026

    Beyond Prompting: Using Agent Skills in Data Science

    April 17, 2026

    6 Things I Learned Building LLMs From Scratch That No Tutorial Teaches You

    April 17, 2026

    Introduction to Deep Evidential Regression for Uncertainty Quantification

    April 17, 2026

    memweave: Zero-Infra AI Agent Memory with Markdown and SQLite — No Vector Database Required

    April 17, 2026

    Comments are closed.

    Editors Picks

    This New Air Purifier Filter Can Remove Cannabis Smoke Odor, Just in Time for 4/20

    April 18, 2026

    Portable water filter provides safe drinking water from any source

    April 18, 2026

    MAGA Is Increasingly Convinced the Trump Assassination Attempt Was Staged

    April 18, 2026

    NCAA seeks faster trial over DraftKings disputed March Madness branding case

    April 18, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    What If I had AI in 2018: Rent the Runway Fulfillment Center Optimization

    June 14, 2025

    This AI Wearable From Ex-Apple Engineers Looks Like an iPod Shuffle

    April 9, 2026

    Nvidia announces DGX desktop “personal AI supercomputers”

    March 21, 2025
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

    Type above and press Enter to search. Press Esc to cancel.