pyninaapiio 0.0.1__tar.gz → 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyninaapiio
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Python Wrapper for N.I.N.A. Advanced API
5
5
  Home-page: https://github.com/mawinkler/pyninaapiio
6
6
  Author: Markus Winkler
@@ -1,17 +1,16 @@
1
1
  import asyncio
2
+ import base64
2
3
  import io
3
4
  from pprint import pprint as pp
4
5
 
5
- from .api.image import get_image_history, get_image_index
6
- from .api.mount import get_equipment_mount_info
7
-
8
- from .client import Client
9
- from .models.get_image_history_response_200 import GetImageHistoryResponse200
10
- from .models.get_image_index_response_200 import GetImageIndexResponse200
11
- from .models.get_image_index_bayer_pattern import GetImageIndexBayerPattern
12
- from .models.mount_info import MountInfo
13
- from .types import Response
14
- import base64
6
+ from pyninaapiio.api.image import get_image_history, get_image_index
7
+ from pyninaapiio.api.mount import get_equipment_mount_info
8
+ from pyninaapiio.client import Client
9
+ from pyninaapiio.models.get_image_history_response_200 import GetImageHistoryResponse200
10
+ from pyninaapiio.models.get_image_index_bayer_pattern import GetImageIndexBayerPattern
11
+ from pyninaapiio.models.get_image_index_response_200 import GetImageIndexResponse200
12
+ from pyninaapiio.models.mount_info import MountInfo
13
+ from pyninaapiio.types import Response
15
14
 
16
15
 
17
16
  # async with client as client:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyninaapiio
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Python Wrapper for N.I.N.A. Advanced API
5
5
  Home-page: https://github.com/mawinkler/pyninaapiio
6
6
  Author: Markus Winkler
@@ -11,7 +11,7 @@ if os.path.isfile(requirement_path):
11
11
  setup(
12
12
  name="pyninaapiio",
13
13
  packages=["pyninaapiio"],
14
- version="0.0.1",
14
+ version="0.0.2",
15
15
  license="MIT",
16
16
  description="Python Wrapper for N.I.N.A. Advanced API",
17
17
  long_description=" ".join(
File without changes
File without changes
File without changes