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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: tinesight
3
- Version: 0.0.12.dev1
3
+ Version: 0.0.13
4
4
  Summary: Tinesight SDK
5
5
  Requires-Dist: cryptography>=44
6
6
  Requires-Dist: pycognito>=2024.5.1
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tinesight"
3
- version = "0.0.12.dev1"
3
+ version = "0.0.13"
4
4
  description = "Tinesight SDK"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -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 "api"
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
@@ -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()