Skip to content

Commit

Permalink
regenerate docs with 'sphinx-apidoc fastkml -o docs'
Browse files Browse the repository at this point in the history
  • Loading branch information
cleder committed Oct 26, 2024
1 parent 0cd9018 commit bf1b262
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 7 deletions.
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.napoleon",
"sphinx.ext.autosummary",
]
autosummary_generate = True

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
Expand Down
63 changes: 56 additions & 7 deletions docs/fastkml.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
fastkml package
===============

Module contents
---------------

.. automodule:: fastkml
:members:
:undoc-members:
:no-index:


Submodules
Expand Down Expand Up @@ -45,6 +39,14 @@ fastkml.config module
:undoc-members:
:show-inheritance:

fastkml.containers module
-------------------------

.. automodule:: fastkml.containers
:members:
:undoc-members:
:show-inheritance:

fastkml.data module
-------------------

Expand All @@ -69,6 +71,14 @@ fastkml.exceptions module
:undoc-members:
:show-inheritance:

fastkml.features module
-----------------------

.. automodule:: fastkml.features
:members:
:undoc-members:
:show-inheritance:

fastkml.geometry module
-----------------------

Expand Down Expand Up @@ -100,7 +110,22 @@ fastkml.kml module
:members:
:undoc-members:
:show-inheritance:
:no-index: StyleUrl

fastkml.kml\_base module
------------------------

.. automodule:: fastkml.kml_base
:members:
:undoc-members:
:show-inheritance:

fastkml.links module
--------------------

.. automodule:: fastkml.links
:members:
:undoc-members:
:show-inheritance:

fastkml.mixins module
---------------------
Expand All @@ -110,6 +135,22 @@ fastkml.mixins module
:undoc-members:
:show-inheritance:

fastkml.overlays module
-----------------------

.. automodule:: fastkml.overlays
:members:
:undoc-members:
:show-inheritance:

fastkml.registry module
-----------------------

.. automodule:: fastkml.registry
:members:
:undoc-members:
:show-inheritance:

fastkml.styles module
---------------------

Expand All @@ -134,6 +175,14 @@ fastkml.types module
:undoc-members:
:show-inheritance:

fastkml.utils module
--------------------

.. automodule:: fastkml.utils
:members:
:undoc-members:
:show-inheritance:

fastkml.views module
--------------------

Expand Down
2 changes: 2 additions & 0 deletions fastkml/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
from typing import Type
from typing import Union

__all__ = ["find_all", "has_attribute_values"]


def has_attribute_values(obj: object, **kwargs: Any) -> bool:
"""
Expand Down

0 comments on commit bf1b262

Please sign in to comment.