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.
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/PKG-INFO +1 -1
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio/nina.py +9 -10
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio.egg-info/PKG-INFO +1 -1
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/setup.py +1 -1
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/LICENSE +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/README.md +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio/__init__.py +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio/client.py +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio/errors.py +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio/py.typed +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio/types.py +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio.egg-info/SOURCES.txt +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio.egg-info/dependency_links.txt +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio.egg-info/requires.txt +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/pyninaapiio.egg-info/top_level.txt +0 -0
- {pyninaapiio-0.0.1 → pyninaapiio-0.0.2}/setup.cfg +0 -0
|
@@ -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 .
|
|
9
|
-
from .models.
|
|
10
|
-
from .models.get_image_index_response_200 import GetImageIndexResponse200
|
|
11
|
-
from .models.
|
|
12
|
-
from .
|
|
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:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|