tinesight 0.0.12.dev1__tar.gz → 0.0.13__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.
- {tinesight-0.0.12.dev1 → tinesight-0.0.13}/PKG-INFO +1 -1
- {tinesight-0.0.12.dev1 → tinesight-0.0.13}/pyproject.toml +1 -1
- {tinesight-0.0.12.dev1 → tinesight-0.0.13}/src/tinesight/_api.py +1 -1
- {tinesight-0.0.12.dev1 → tinesight-0.0.13}/README.md +0 -0
- {tinesight-0.0.12.dev1 → tinesight-0.0.13}/src/tinesight/__init__.py +0 -0
- {tinesight-0.0.12.dev1 → tinesight-0.0.13}/src/tinesight/client.py +1 -1
- {tinesight-0.0.12.dev1 → tinesight-0.0.13}/src/tinesight/registrar.py +0 -0
|
@@ -10,5 +10,5 @@ class TinesightApiMixin:
|
|
|
10
10
|
|
|
11
11
|
@property
|
|
12
12
|
def public_ux_api_uri(self) -> str:
|
|
13
|
-
api_ref = "17bx575oxl" if os.getenv("TINESIGHT_DEV") else "
|
|
13
|
+
api_ref = "17bx575oxl" if os.getenv("TINESIGHT_DEV") else "nj9x61m0pc"
|
|
14
14
|
return f"https://{api_ref}.execute-api.us-east-1.amazonaws.com"
|
|
File without changes
|
|
File without changes
|
|
@@ -103,10 +103,10 @@ class TinesightClient(TinesightApiMixin):
|
|
|
103
103
|
|
|
104
104
|
if isinstance(video_source, int) and self._is_raspberry_pi():
|
|
105
105
|
from picamera2 import Picamera2
|
|
106
|
+
|
|
106
107
|
use_picamera2 = True
|
|
107
108
|
print("Detected Raspberry Pi - using picamera2 for CSI camera")
|
|
108
109
|
|
|
109
|
-
|
|
110
110
|
# Initialize camera
|
|
111
111
|
if use_picamera2:
|
|
112
112
|
picam2 = Picamera2()
|
|
File without changes
|