{
    "content": [
        {
            "type": "text",
            "text": "# distro (pydoc)\n\n**Summary:** distro\n\n## Section Outline\n\n- **NAME** (2 lines)\n- **PACKAGE CONTENTS** (3 lines)\n- **CLASSES** (3 lines) — 1 subsections\n  - class LinuxDistribution (226 lines)\n- **FUNCTIONS** (1 lines) — 24 subsections\n  - build_number (8 lines)\n  - codename (9 lines)\n  - Lookup hierarchy: (8 lines)\n  - distro_release_attr (14 lines)\n  - distro_release_info (5 lines)\n  - id (49 lines)\n  - Lookup hierarchy and transformations: (25 lines)\n  - info (39 lines)\n  - like (5 lines)\n  - Lookup hierarchy: (5 lines)\n  - linux_distribution (31 lines)\n  - lsb_release_attr (15 lines)\n  - lsb_release_info (6 lines)\n  - major_version (8 lines)\n  - minor_version (8 lines)\n  - name (9 lines)\n  - Lookup hierarchy: (23 lines)\n  - os_release_attr (14 lines)\n  - os_release_info (5 lines)\n  - uname_attr (12 lines)\n  - uname_info (3 lines)\n  - version (27 lines)\n  - Lookup hierarchy: (14 lines)\n  - version_parts (12 lines)\n- **DATA** (5 lines)\n- **VERSION** (2 lines)\n- **FILE** (3 lines)\n\n## Full Content\n\n### NAME\n\ndistro\n\n### PACKAGE CONTENTS\n\nmain\ndistro\n\n### CLASSES\n\nbuiltins.object\ndistro.distro.LinuxDistribution\n\n#### class LinuxDistribution\n\n|  LinuxDistribution(includelsb: Optional[bool] = None, osreleasefile: str = '', distroreleasefile: str = '', includeuname: Optional[bool] = None, rootdir: Optional[str] = None, includeoslevel: Optional[bool] = None) -> None\n|\n|  Provides information about a OS distribution.\n|\n|  This package creates a private module-global instance of this class with\n|  default initialization arguments, that is used by the\n|  `consolidated accessor functions` and `single source accessor functions`.\n|  By using default initialization arguments, that module-global instance\n|  returns data about the current OS distribution (i.e. the distro this\n|  package runs on).\n|\n|  Normally, it is not necessary to create additional instances of this class.\n|  However, in situations where control is needed over the exact data sources\n|  that are used, instances of this class can be created with a specific\n|  distro release file, or a specific os-release file, or without invoking the\n|  lsbrelease command.\n|\n|  Methods defined here:\n|\n|  init(self, includelsb: Optional[bool] = None, osreleasefile: str = '', distroreleasefile: str = '', includeuname: Optional[bool] = None, rootdir: Optional[str] = None, includeoslevel: Optional[bool] = None) -> None\n|      The initialization method of this class gathers information from the\n|      available data sources, and stores that in private instance attributes.\n|      Subsequent access to the information items uses these private instance\n|      attributes, so that the data sources are read only once.\n|\n|      Parameters:\n|\n|      * ``includelsb`` (bool): Controls whether the\n|        `lsbrelease command output` is included as a data source.\n|\n|        If the lsbrelease command is not available in the program execution\n|        path, the data source for the lsbrelease command will be empty.\n|\n|      * ``osreleasefile`` (string): The path name of the\n|        `os-release file` that is to be used as a data source.\n|\n|        An empty string (the default) will cause the default path name to\n|        be used (see `os-release file` for details).\n|\n|        If the specified or defaulted os-release file does not exist, the\n|        data source for the os-release file will be empty.\n|\n|      * ``distroreleasefile`` (string): The path name of the\n|        `distro release file` that is to be used as a data source.\n|\n|        An empty string (the default) will cause a default search algorithm\n|        to be used (see `distro release file` for details).\n|\n|        If the specified distro release file does not exist, or if no default\n|        distro release file can be found, the data source for the distro\n|        release file will be empty.\n|\n|      * ``includeuname`` (bool): Controls whether uname command output is\n|        included as a data source. If the uname command is not available in\n|        the program execution path the data source for the uname command will\n|        be empty.\n|\n|      * ``rootdir`` (string): The absolute path to the root directory to use\n|        to find distro-related information files. Note that ``include*``\n|        parameters must not be enabled in combination with ``rootdir``.\n|\n|      * ``includeoslevel`` (bool): Controls whether (AIX) oslevel command\n|        output is included as a data source. If the oslevel command is not\n|        available in the program execution path the data source will be\n|        empty.\n|\n|      Public instance attributes:\n|\n|      * ``osreleasefile`` (string): The path name of the\n|        `os-release file` that is actually used as a data source. The\n|        empty string if no distro release file is used as a data source.\n|\n|      * ``distroreleasefile`` (string): The path name of the\n|        `distro release file` that is actually used as a data source. The\n|        empty string if no distro release file is used as a data source.\n|\n|      * ``includelsb`` (bool): The result of the ``includelsb`` parameter.\n|        This controls whether the lsb information will be loaded.\n|\n|      * ``includeuname`` (bool): The result of the ``includeuname``\n|        parameter. This controls whether the uname information will\n|        be loaded.\n|\n|      * ``includeoslevel`` (bool): The result of the ``includeoslevel``\n|        parameter. This controls whether (AIX) oslevel information will be\n|        loaded.\n|\n|      * ``rootdir`` (string): The result of the ``rootdir`` parameter.\n|        The absolute path to the root directory to use to find distro-related\n|        information files.\n|\n|      Raises:\n|\n|      * :py:exc:`ValueError`: Initialization parameters combination is not\n|         supported.\n|\n|      * :py:exc:`OSError`: Some I/O issue with an os-release file or distro\n|        release file.\n|\n|      * :py:exc:`UnicodeError`: A data source has unexpected characters or\n|        uses an unexpected encoding.\n|\n|  repr(self) -> str\n|      Return repr of all info\n|\n|  buildnumber(self, best: bool = False) -> str\n|      Return the build number of the current distribution.\n|\n|      For details, see :func:`distro.buildnumber`.\n|\n|  codename(self) -> str\n|      Return the codename of the OS distribution.\n|\n|      For details, see :func:`distro.codename`.\n|\n|  distroreleaseattr(self, attribute: str) -> str\n|      Return a single named information item from the distro release file\n|      data source of the OS distribution.\n|\n|      For details, see :func:`distro.distroreleaseattr`.\n|\n|  distroreleaseinfo(self) -> Dict[str, str]\n|      Return a dictionary containing key-value pairs for the information\n|      items from the distro release file data source of the OS\n|      distribution.\n|\n|      For details, see :func:`distro.distroreleaseinfo`.\n|\n|  id(self) -> str\n|      Return the distro ID of the OS distribution, as a string.\n|\n|      For details, see :func:`distro.id`.\n|\n|  info(self, pretty: bool = False, best: bool = False) -> distro.distro.InfoDict\n|      Return certain machine-readable information about the OS\n|      distribution.\n|\n|      For details, see :func:`distro.info`.\n|\n|  like(self) -> str\n|      Return the IDs of distributions that are like the OS distribution.\n|\n|      For details, see :func:`distro.like`.\n|\n|  linuxdistribution(self, fulldistributionname: bool = True) -> Tuple[str, str, str]\n|      Return information about the OS distribution that is compatible\n|      with Python's :func:`platform.linuxdistribution`, supporting a subset\n|      of its parameters.\n|\n|      For details, see :func:`distro.linuxdistribution`.\n|\n|  lsbreleaseattr(self, attribute: str) -> str\n|      Return a single named information item from the lsbrelease command\n|      output data source of the OS distribution.\n|\n|      For details, see :func:`distro.lsbreleaseattr`.\n|\n|  lsbreleaseinfo(self) -> Dict[str, str]\n|      Return a dictionary containing key-value pairs for the information\n|      items from the lsbrelease command data source of the OS\n|      distribution.\n|\n|      For details, see :func:`distro.lsbreleaseinfo`.\n|\n|  majorversion(self, best: bool = False) -> str\n|      Return the major version number of the current distribution.\n|\n|      For details, see :func:`distro.majorversion`.\n|\n|  minorversion(self, best: bool = False) -> str\n|      Return the minor version number of the current distribution.\n|\n|      For details, see :func:`distro.minorversion`.\n|\n|  name(self, pretty: bool = False) -> str\n|      Return the name of the OS distribution, as a string.\n|\n|      For details, see :func:`distro.name`.\n|\n|  osreleaseattr(self, attribute: str) -> str\n|      Return a single named information item from the os-release file data\n|      source of the OS distribution.\n|\n|      For details, see :func:`distro.osreleaseattr`.\n|\n|  osreleaseinfo(self) -> Dict[str, str]\n|      Return a dictionary containing key-value pairs for the information\n|      items from the os-release file data source of the OS distribution.\n|\n|      For details, see :func:`distro.osreleaseinfo`.\n|\n|  oslevelinfo(self) -> str\n|      Return AIX' oslevel command output.\n|\n|  unameattr(self, attribute: str) -> str\n|      Return a single named information item from the uname command\n|      output data source of the OS distribution.\n|\n|      For details, see :func:`distro.unameattr`.\n|\n|  unameinfo(self) -> Dict[str, str]\n|      Return a dictionary containing key-value pairs for the information\n|      items from the uname command data source of the OS distribution.\n|\n|      For details, see :func:`distro.unameinfo`.\n|\n|  version(self, pretty: bool = False, best: bool = False) -> str\n|      Return the version of the OS distribution, as a string.\n|\n|      For details, see :func:`distro.version`.\n|\n|  versionparts(self, best: bool = False) -> Tuple[str, str, str]\n|      Return the version of the OS distribution, as a tuple of version\n|      numbers.\n|\n|      For details, see :func:`distro.versionparts`.\n|\n|  ----------------------------------------------------------------------\n|  Data descriptors defined here:\n|\n|  dict\n|      dictionary for instance variables (if defined)\n|\n|  weakref\n|      list of weak references to the object (if defined)\n\n### FUNCTIONS\n\n#### build_number\n\nReturn the build number of the current OS distribution, as a string,\nif provided.\nOtherwise, the empty string is returned. The build number is the third part\nof the dot-separated version string.\n\nFor a description of the *best* parameter, see the :func:`distro.version`\nmethod.\n\n#### codename\n\nReturn the codename for the release of the current OS distribution,\nas a string.\n\nIf the distribution does not have a codename, an empty string is returned.\n\nNote that the returned codename is not always really a codename. For\nexample, openSUSE returns \"x8664\". This function does not handle such\ncases in any special way and just returns the string it finds, if any.\n\n#### Lookup hierarchy:\n\n* the codename within the \"VERSION\" attribute of the os-release file, if\nprovided,\n\n* the value of the \"Codename\" attribute returned by the lsbrelease\ncommand,\n\n* the value of the \"<codename>\" field of the distro release file.\n\n#### distro_release_attr\n\nReturn a single named information item from the distro release file\ndata source of the current OS distribution.\n\nParameters:\n\n* ``attribute`` (string): Key of the information item.\n\nReturns:\n\n* (string): Value of the information item, if the item exists.\nThe empty string, if the item does not exist.\n\nSee `distro release file` for details about these information items.\n\n#### distro_release_info\n\nReturn a dictionary containing key-value pairs for the information items\nfrom the distro release file data source of the current OS distribution.\n\nSee `distro release file` for details about these information items.\n\n#### id\n\nReturn the distro ID of the current distribution, as a\nmachine-readable string.\n\nFor a number of OS distributions, the returned distro ID value is\n*reliable*, in the sense that it is documented and that it does not change\nacross releases of the distribution.\n\nThis package maintains the following reliable distro ID values:\n\n==============  =========================================\nDistro ID       Distribution\n==============  =========================================\n\"ubuntu\"        Ubuntu\n\"debian\"        Debian\n\"rhel\"          RedHat Enterprise Linux\n\"centos\"        CentOS\n\"fedora\"        Fedora\n\"sles\"          SUSE Linux Enterprise Server\n\"opensuse\"      openSUSE\n\"amzn\"          Amazon Linux\n\"arch\"          Arch Linux\n\"cloudlinux\"    CloudLinux OS\n\"exherbo\"       Exherbo Linux\n\"gentoo\"        GenToo Linux\n\"ibmpowerkvm\"  IBM PowerKVM\n\"kvmibm\"        KVM for IBM z Systems\n\"linuxmint\"     Linux Mint\n\"mageia\"        Mageia\n\"mandriva\"      Mandriva Linux\n\"parallels\"     Parallels\n\"pidora\"        Pidora\n\"raspbian\"      Raspbian\n\"oracle\"        Oracle Linux (and Oracle Enterprise Linux)\n\"scientific\"    Scientific Linux\n\"slackware\"     Slackware\n\"xenserver\"     XenServer\n\"openbsd\"       OpenBSD\n\"netbsd\"        NetBSD\n\"freebsd\"       FreeBSD\n\"midnightbsd\"   MidnightBSD\n\"rocky\"         Rocky Linux\n\"aix\"           AIX\n==============  =========================================\n\nIf you have a need to get distros for reliable IDs added into this set,\nor if you find that the :func:`distro.id` function returns a different\ndistro ID for one of the listed distros, please create an issue in the\n`distro issue tracker`.\n\n#### Lookup hierarchy and transformations:\n\nFirst, the ID is obtained from the following sources, in the specified\norder. The first available and non-empty value is used:\n\n* the value of the \"ID\" attribute of the os-release file,\n\n* the value of the \"Distributor ID\" attribute returned by the lsbrelease\ncommand,\n\n* the first part of the file name of the distro release file,\n\nThe so determined ID value then passes the following transformations,\nbefore it is returned by this method:\n\n* it is translated to lower case,\n\n* blanks (which should not be there anyway) are translated to underscores,\n\n* a normalization of the ID is performed, based upon\n`normalization tables`. The purpose of this normalization is to ensure\nthat the ID is as reliable as possible, even across incompatible changes\nin the OS distributions. A common reason for an incompatible change is\nthe addition of an os-release file, or the addition of the lsbrelease\ncommand, with ID values that differ from what was previously determined\nfrom the distro release file name.\n\n#### info\n\nReturn certain machine-readable information items about the current OS\ndistribution in a dictionary, as shown in the following example:\n\n.. sourcecode:: python\n\n{\n'id': 'rhel',\n'version': '7.0',\n'versionparts': {\n'major': '7',\n'minor': '0',\n'buildnumber': ''\n},\n'like': 'fedora',\n'codename': 'Maipo'\n}\n\nThe dictionary structure and keys are always the same, regardless of which\ninformation items are available in the underlying data sources. The values\nfor the various keys are as follows:\n\n* ``id``:  The result of :func:`distro.id`.\n\n* ``version``:  The result of :func:`distro.version`.\n\n* ``versionparts -> major``:  The result of :func:`distro.majorversion`.\n\n* ``versionparts -> minor``:  The result of :func:`distro.minorversion`.\n\n* ``versionparts -> buildnumber``:  The result of\n:func:`distro.buildnumber`.\n\n* ``like``:  The result of :func:`distro.like`.\n\n* ``codename``:  The result of :func:`distro.codename`.\n\nFor a description of the *pretty* and *best* parameters, see the\n:func:`distro.version` method.\n\n#### like\n\nReturn a space-separated list of distro IDs of distributions that are\nclosely related to the current OS distribution in regards to packaging\nand programming interfaces, for example distributions the current\ndistribution is a derivative from.\n\n#### Lookup hierarchy:\n\nThis information item is only provided by the os-release file.\nFor details, see the description of the \"IDLIKE\" attribute in the\n`os-release man page\n<http://www.freedesktop.org/software/systemd/man/os-release.html>`.\n\n#### linux_distribution\n\n.. deprecated:: 1.6.0\n\n:func:`distro.linuxdistribution()` is deprecated. It should only be\nused as a compatibility shim with Python's\n:py:func:`platform.linuxdistribution()`. Please use :func:`distro.id`,\n:func:`distro.version` and :func:`distro.name` instead.\n\nReturn information about the current OS distribution as a tuple\n``(idname, version, codename)`` with items as follows:\n\n* ``idname``:  If *fulldistributionname* is false, the result of\n:func:`distro.id`. Otherwise, the result of :func:`distro.name`.\n\n* ``version``:  The result of :func:`distro.version`.\n\n* ``codename``:  The extra item (usually in parentheses) after the\nos-release version number, or the result of :func:`distro.codename`.\n\nThe interface of this function is compatible with the original\n:py:func:`platform.linuxdistribution` function, supporting a subset of\nits parameters.\n\nThe data it returns may not exactly be the same, because it uses more data\nsources than the original function, and that may lead to different data if\nthe OS distribution is not consistent across multiple data sources it\nprovides (there are indeed such distributions ...).\n\nAnother reason for differences is the fact that the :func:`distro.id`\nmethod normalizes the distro ID string to a reliable machine-readable value\nfor a number of popular OS distributions.\n\n#### lsb_release_attr\n\nReturn a single named information item from the lsbrelease command output\ndata source of the current OS distribution.\n\nParameters:\n\n* ``attribute`` (string): Key of the information item.\n\nReturns:\n\n* (string): Value of the information item, if the item exists.\nThe empty string, if the item does not exist.\n\nSee `lsbrelease command output` for details about these information\nitems.\n\n#### lsb_release_info\n\nReturn a dictionary containing key-value pairs for the information items\nfrom the lsbrelease command data source of the current OS distribution.\n\nSee `lsbrelease command output` for details about these information\nitems.\n\n#### major_version\n\nReturn the major version of the current OS distribution, as a string,\nif provided.\nOtherwise, the empty string is returned. The major version is the first\npart of the dot-separated version string.\n\nFor a description of the *best* parameter, see the :func:`distro.version`\nmethod.\n\n#### minor_version\n\nReturn the minor version of the current OS distribution, as a string,\nif provided.\nOtherwise, the empty string is returned. The minor version is the second\npart of the dot-separated version string.\n\nFor a description of the *best* parameter, see the :func:`distro.version`\nmethod.\n\n#### name\n\nReturn the name of the current OS distribution, as a human-readable\nstring.\n\nIf *pretty* is false, the name is returned without version or codename.\n(e.g. \"CentOS Linux\")\n\nIf *pretty* is true, the version and codename are appended.\n(e.g. \"CentOS Linux 7.1.1503 (Core)\")\n\n#### Lookup hierarchy:\n\nThe name is obtained from the following sources, in the specified order.\nThe first available and non-empty value is used:\n\n* If *pretty* is false:\n\n- the value of the \"NAME\" attribute of the os-release file,\n\n- the value of the \"Distributor ID\" attribute returned by the lsbrelease\ncommand,\n\n- the value of the \"<name>\" field of the distro release file.\n\n* If *pretty* is true:\n\n- the value of the \"PRETTYNAME\" attribute of the os-release file,\n\n- the value of the \"Description\" attribute returned by the lsbrelease\ncommand,\n\n- the value of the \"<name>\" field of the distro release file, appended\nwith the value of the pretty version (\"<versionid>\" and \"<codename>\"\nfields) of the distro release file, if available.\n\n#### os_release_attr\n\nReturn a single named information item from the os-release file data source\nof the current OS distribution.\n\nParameters:\n\n* ``attribute`` (string): Key of the information item.\n\nReturns:\n\n* (string): Value of the information item, if the item exists.\nThe empty string, if the item does not exist.\n\nSee `os-release file` for details about these information items.\n\n#### os_release_info\n\nReturn a dictionary containing key-value pairs for the information items\nfrom the os-release file data source of the current OS distribution.\n\nSee `os-release file` for details about these information items.\n\n#### uname_attr\n\nReturn a single named information item from the distro release file\ndata source of the current OS distribution.\n\nParameters:\n\n* ``attribute`` (string): Key of the information item.\n\nReturns:\n\n* (string): Value of the information item, if the item exists.\nThe empty string, if the item does not exist.\n\n#### uname_info\n\nReturn a dictionary containing key-value pairs for the information items\nfrom the distro release file data source of the current OS distribution.\n\n#### version\n\nReturn the version of the current OS distribution, as a human-readable\nstring.\n\nIf *pretty* is false, the version is returned without codename (e.g.\n\"7.0\").\n\nIf *pretty* is true, the codename in parenthesis is appended, if the\ncodename is non-empty (e.g. \"7.0 (Maipo)\").\n\nSome distributions provide version numbers with different precisions in\nthe different sources of distribution information. Examining the different\nsources in a fixed priority order does not always yield the most precise\nversion (e.g. for Debian 8.2, or CentOS 7.1).\n\nSome other distributions may not provide this kind of information. In these\ncases, an empty string would be returned. This behavior can be observed\nwith rolling releases distributions (e.g. Arch Linux).\n\nThe *best* parameter can be used to control the approach for the returned\nversion:\n\nIf *best* is false, the first non-empty version number in priority order of\nthe examined sources is returned.\n\nIf *best* is true, the most precise version number out of all examined\nsources is returned.\n\n#### Lookup hierarchy:\n\nIn all cases, the version number is obtained from the following sources.\nIf *best* is false, this order represents the priority order:\n\n* the value of the \"VERSIONID\" attribute of the os-release file,\n* the value of the \"Release\" attribute returned by the lsbrelease\ncommand,\n* the version number parsed from the \"<versionid>\" field of the first line\nof the distro release file,\n* the version number parsed from the \"PRETTYNAME\" attribute of the\nos-release file, if it follows the format of the distro release files.\n* the version number parsed from the \"Description\" attribute returned by\nthe lsbrelease command, if it follows the format of the distro release\nfiles.\n\n#### version_parts\n\nReturn the version of the current OS distribution as a tuple\n``(major, minor, buildnumber)`` with items as follows:\n\n* ``major``:  The result of :func:`distro.majorversion`.\n\n* ``minor``:  The result of :func:`distro.minorversion`.\n\n* ``buildnumber``:  The result of :func:`distro.buildnumber`.\n\nFor a description of the *best* parameter, see the :func:`distro.version`\nmethod.\n\n### DATA\n\nNORMALIZEDDISTROID = {'redhat': 'rhel'}\nNORMALIZEDLSBID = {'enterpriseenterpriseas': 'oracle', 'enterpriseen...\nNORMALIZEDOSID = {'ol': 'oracle', 'opensuse-leap': 'opensuse'}\nall = ['NORMALIZEDDISTROID', 'NORMALIZEDLSBID', 'NORMALIZEDOS...\n\n### VERSION\n\n1.7.0\n\n### FILE\n\n/usr/lib/python3/dist-packages/distro/init.py\n\n"
        }
    ],
    "structuredContent": {
        "command": "distro",
        "section": "",
        "mode": "pydoc",
        "summary": "distro",
        "synopsis": null,
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "PACKAGE CONTENTS",
                "lines": 3,
                "subsections": []
            },
            {
                "name": "CLASSES",
                "lines": 3,
                "subsections": [
                    {
                        "name": "class LinuxDistribution",
                        "lines": 226
                    }
                ]
            },
            {
                "name": "FUNCTIONS",
                "lines": 1,
                "subsections": [
                    {
                        "name": "build_number",
                        "lines": 8
                    },
                    {
                        "name": "codename",
                        "lines": 9
                    },
                    {
                        "name": "Lookup hierarchy:",
                        "lines": 8
                    },
                    {
                        "name": "distro_release_attr",
                        "lines": 14
                    },
                    {
                        "name": "distro_release_info",
                        "lines": 5
                    },
                    {
                        "name": "id",
                        "lines": 49
                    },
                    {
                        "name": "Lookup hierarchy and transformations:",
                        "lines": 25
                    },
                    {
                        "name": "info",
                        "lines": 39
                    },
                    {
                        "name": "like",
                        "lines": 5
                    },
                    {
                        "name": "Lookup hierarchy:",
                        "lines": 5
                    },
                    {
                        "name": "linux_distribution",
                        "lines": 31
                    },
                    {
                        "name": "lsb_release_attr",
                        "lines": 15
                    },
                    {
                        "name": "lsb_release_info",
                        "lines": 6
                    },
                    {
                        "name": "major_version",
                        "lines": 8
                    },
                    {
                        "name": "minor_version",
                        "lines": 8
                    },
                    {
                        "name": "name",
                        "lines": 9
                    },
                    {
                        "name": "Lookup hierarchy:",
                        "lines": 23
                    },
                    {
                        "name": "os_release_attr",
                        "lines": 14
                    },
                    {
                        "name": "os_release_info",
                        "lines": 5
                    },
                    {
                        "name": "uname_attr",
                        "lines": 12
                    },
                    {
                        "name": "uname_info",
                        "lines": 3
                    },
                    {
                        "name": "version",
                        "lines": 27
                    },
                    {
                        "name": "Lookup hierarchy:",
                        "lines": 14
                    },
                    {
                        "name": "version_parts",
                        "lines": 12
                    }
                ]
            },
            {
                "name": "DATA",
                "lines": 5,
                "subsections": []
            },
            {
                "name": "VERSION",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "FILE",
                "lines": 3,
                "subsections": []
            }
        ]
    }
}