Skip to content

Commit

Permalink
Python sdk maintenance (#569)
Browse files Browse the repository at this point in the history
* Update dependencies
* Update bleak
* Update Wifi Windows driver for Hero 13
  • Loading branch information
tcamise-gpsw committed Sep 6, 2024
1 parent 17699c0 commit 17c943e
Show file tree
Hide file tree
Showing 36 changed files with 1,220 additions and 1,091 deletions.
6 changes: 6 additions & 0 deletions demos/python/sdk_wireless_camera_control/docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ These should not be imported directly and instead should be accessed using the r
Base Types
----------

.. automodule:: open_gopro.types

GoPro Enum
^^^^^^^^^^

Expand Down Expand Up @@ -173,6 +175,8 @@ These are the various models that are returned in responses, used in commands, e
from open_gopro.models import ***
.. autopydantic_model:: open_gopro.models.media_list.MediaPath

.. autopydantic_model:: open_gopro.models.media_list.MediaMetadata

.. autopydantic_model:: open_gopro.models.media_list.PhotoMetadata
Expand Down Expand Up @@ -221,6 +225,8 @@ Exceptions
Common Interface
================

.. automodule:: open_gopro.parser_interface

.. autoclass:: open_gopro.gopro_base.GoProBase

.. autoclass:: open_gopro.communicator_interface.GoProBle
Expand Down
92 changes: 63 additions & 29 deletions demos/python/sdk_wireless_camera_control/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

from open_gopro import WirelessGoPro

from sphinx.ext.intersphinx import missing_reference

import open_gopro.models

gopro = WirelessGoPro(enable_wifi=False)

project = "Open GoPro Python SDK"
Expand All @@ -23,8 +27,8 @@
"sphinx.ext.autosectionlabel",
"sphinx.ext.graphviz",
"sphinx.ext.inheritance_diagram",
# "sphinxemoji.sphinxemoji", # https://github.com/sphinx-contrib/emojicodes/issues/42
"sphinxcontrib.autodoc_pydantic",
"sphinx.ext.intersphinx",
]
html_theme = "sphinx_rtd_theme"
html_context = {
Expand All @@ -36,9 +40,12 @@
autodoc_default_options = {
"members": True,
}
# https://autodoc-pydantic.readthedocs.io/en/stable/users/installation.html#configuration
autodoc_pydantic_model_show_json = True
# https://autodoc-pydantic.readthedocs.io/en/stable/users/configuration.html
autodoc_pydantic_model_show_json = False
autodoc_pydantic_settings_show_json = False
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
}

# The version info for the project you're documenting, acts as replacement
# for |version| and |release|, also used in various other places throughout
Expand All @@ -51,52 +58,79 @@

nitpicky = True

TYPE_ALIASES = {
"CameraState": "open_gopro.types.CameraState",
"UpdateCb": "open_gopro.types.UpdateCb",
"UpdateType": "open_gopro.types.UpdateType",
"JsonDict": "open_gopro.JsonDict",
"ResponseType": "open_gopro.types.ResponseType",
"Protobuf": "open_gopro.types.Protobuf",
"IdType": "open_gopro.types.IdType",
# TODO there must be a better way of doing this...
"Params.Toggle": "open_gopro.api.params.Toggle",
"Params.CameraControl": "open_gopro.api.params.CameraControl",
"Params.WebcamProtocol": "open_gopro.api.params.WebcamProtocol",
"Params.WebcamResolution": "open_gopro.api.params.WebcamResolution",
"Params.WebcamFOV": "open_gopro.api.params.WebcamFOV",
}

# This is very broken.
# https://github.com/sphinx-doc/sphinx/issues/10455
# https://github.com/sphinx-doc/sphinx/issues/10785
# autodoc_type_aliases = {
# "IdType": "open_gopro.interface.IdType",
# "CommunicatorType": "open_gopro.interface.CommunicatorType",
# "ParserType": "open_gopro.interface.ParserType",
# "DisconnectHandlerType": "open_gopro.ble.controller.DisconnectHandlerType",
# "NotiHandlerType": "open_gopro.ble.controller.NotiHandlerType",
# "ValueType": "open_gopro.api.builders.ValueType",
# "BleDevice": "open_gopro.ble.controller.BleDevice",
# "BleHandle": "open_gopro.ble.controller.BleHandle",
# "CmdType": "open_gopro.constants.CmdType",
# "ResponseType": "open_gopro.constants.ResponseType",
# "CameraState": "open_gopro.types.CameraState",
# "Path": "pathlib.Path",
# }

nitpick_ignore = [
("py:class", "T"),
("py:class", "T_co"),
("py:class", "ExceptionHandler"),
("py:class", "datetime.datetime"),
("py:class", "open_gopro.models.parsers.Parser"),
("py:class", "abc.ABC"),
("py:class", "collections.abc.Iterable"),
# TODO need to fix these
("py:class", "Path"),
("py:class", "JsonDict"),
("py:class", "ValueType"),
]
nitpick_ignore_regex = [
(r"py:class", r".*proto\..+"), # TODO how should / can we handle protobuf documenting?
(r"py:class", r".*proto\..+"),
(r"py:class", r".*_pb2\..+"),
(r"py:class", r".+Type"),
(r"py:obj", r".+Type"),
(r"py:class", r".*Path"),
(r"py:class", r".*InitVar"),
(r"py:class", r".*UpdateCb"),
(r"py:class", r".*JsonDict"),
(r"py:class", r".*BleDevice"),
(r"py:class", r".*BleHandle"),
(r"py:class", r".*Parser"),
(r"py:class", r".*Builder"),
(r".*", r".*construct.*"),
(r".*", r".*response.T*"),
# Generic Types that are pointless to document
(r"py:class", r".*\.T"),
(r"py:class", r".*\.T_co"),
(r"py:class", r".*BleHandle"),
(r"py:class", r".*BleDevice"),
(r"py:class", r".*CommunicatorType"),
(r"py:class", r".*NotiHandlerType"),
(r"py:class", r".*DisconnectHandlerType"),
(r"py:obj", r".*CommunicatorType"),
(r"py:class", r".*QueryParserType"),
(r"py:class", r".*ValueType"),
(r"py:obj", r".*communicator_interface.MessageType"),
(r"py:class", r".*dataclasses.*"),
]


# This is the expected signature of the handler for this event, cf doc
def autodoc_skip_member_handler(app, what, name, *_):
for skip in ("internal", "deprecated"):
if skip in name.lower():
return name


def resolve_type_aliases(app, env, node, contnode):
"""Resolve :class: references to our type aliases as :attr: instead."""
try:
if node["refdomain"] == "py" and (target := TYPE_ALIASES.get(node["reftarget"])):
# print(f"updating {node['reftarget']}")
return app.env.get_domain("py").resolve_any_xref(env, node["refdoc"], app.builder, target, node, contnode,)[
0
][1]
except IndexError:
# print("Error")
return None


def setup(app):
app.connect("autodoc-skip-member", autodoc_skip_member_handler)
app.connect("missing-reference", resolve_type_aliases)
6 changes: 3 additions & 3 deletions demos/python/sdk_wireless_camera_control/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ def tests(session) -> None:
@session(python=SUPPORTED_VERSIONS[-1])
def docstrings(session) -> None:
"""Validate docstrings."""
session.install("darglint")
session.install("pydoclint")
session.install("pydocstyle[toml]")
session.run("pydocstyle", "open_gopro")
session.run("darglint", "open_gopro")
session.run("pydoclint", "open_gopro")


@session(python=SUPPORTED_VERSIONS[-1])
Expand All @@ -78,7 +78,7 @@ def docs(session) -> None:
"sphinx-rtd-theme",
"sphinxcontrib-napoleon",
"autodoc-pydantic",
"darglint",
"pydoclint",
)
session.run("sphinx-build", "-W", "docs", "docs/build")
# Clean up for Jekyll consumption
Expand Down
24 changes: 12 additions & 12 deletions demos/python/sdk_wireless_camera_control/open_gopro/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""Implementation of Open GoPro API version 2.0"""

from __future__ import annotations

from typing import Final

from open_gopro.communicator_interface import GoProHttp, GoProWirelessInterface
Expand All @@ -12,16 +14,15 @@


class WirelessApi:
"""Implementation of Open GoPro API version 2.0 for Wireless interface (Wifi and BLE)"""
"""Implementation of Open GoPro API version 2.0 for Wireless interface (Wifi and BLE)
Args:
communicator (GoProWirelessInterface): used to communicate via BLE and Wifi
"""

version: Final = "2.0"

def __init__(self, communicator: GoProWirelessInterface) -> None:
"""Constructor
Args:
communicator (GoProWirelessInterface): used to communicate via BLE and Wifi
"""
self._communicator = communicator
self.ble_command = BleCommands(communicator)
self.ble_setting = BleSettings(communicator)
Expand All @@ -32,16 +33,15 @@ def __init__(self, communicator: GoProWirelessInterface) -> None:


class WiredApi:
"""Implementation of Open GoPro API version 2.0 for Wired interface (USB)"""
"""Implementation of Open GoPro API version 2.0 for Wired interface (USB)
Args:
communicator (GoProHttp): used to communicate via BLE and Wifi
"""

version: Final = "2.0"

def __init__(self, communicator: GoProHttp) -> None:
"""Constructor
Args:
communicator (GoProHttp): used to communicate via BLE and Wifi
"""
self._communicator = communicator
self.http_command = HttpCommands(communicator)
self.http_setting = HttpSettings(communicator)
Loading

0 comments on commit 17c943e

Please sign in to comment.