diff --git a/mkdocs.yml b/mkdocs.yml index 1ecae21..8c6d2a7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -10,7 +10,7 @@ repo_url: https://github.com/spotware/openApiPy edit_uri: "" # Copyright -copyright: Copyright © 2020 Spotware +copyright: Copyright © 2021 Spotware # Configuration theme: @@ -27,7 +27,7 @@ extra: social: - icon: fontawesome/brands/github link: https://github.com/spotware - name: spotware on GitHub + name: Spotware on GitHub # Page tree nav: diff --git a/samples/ConsoleSample/ConsoleSample.py b/samples/ConsoleSample/ConsoleSample.py index 74d2d41..44dacf7 100644 --- a/samples/ConsoleSample/ConsoleSample.py +++ b/samples/ConsoleSample/ConsoleSample.py @@ -1,10 +1,7 @@ #!/usr/bin/env python -from spotware_open_api.client import Client -from spotware_open_api.auth import Auth -from spotware_open_api.protobuf import Protobuf -from spotware_open_api.tcpProtocol import TcpProtocol -from spotware_open_api.messages.OpenApiCommonModelMessages_pb2 import * +from spotware_open_api import Client, Protobuf, TcpProtocol, Auth +from spotware_open_api.messages.OpenApiCommonMessages_pb2 import * from spotware_open_api.messages.OpenApiCommonMessages_pb2 import * from spotware_open_api.messages.OpenApiMessages_pb2 import * from spotware_open_api.messages.OpenApiModelMessages_pb2 import * diff --git a/spotware_open_api/__init__.py b/spotware_open_api/__init__.py index c52283c..0e2c319 100644 --- a/spotware_open_api/__init__.py +++ b/spotware_open_api/__init__.py @@ -1,5 +1,7 @@ """Top-level package for Spotware OpenApiPy.""" - +from .client import Client +from .protobuf import Protobuf +from .tcpProtocol import TcpProtocol +from .auth import Auth __author__ = """Spotware""" __email__ = 'connect@spotware.com' -__version__ = '1.0.0'