mixpeek 0.17.9__py3-none-any.whl → 0.18.0__py3-none-any.whl
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.
- mixpeek/_version.py +2 -2
- mixpeek/assets.py +14 -14
- mixpeek/collections.py +10 -10
- mixpeek/{feature_extractors.py → featureextractors.py} +2 -2
- mixpeek/features.py +348 -8
- mixpeek/{ingest_assets.py → ingestassets.py} +6 -6
- mixpeek/namespaces.py +12 -12
- mixpeek/organizations.py +10 -626
- mixpeek/sdk.py +9 -6
- mixpeek/tasks.py +6 -6
- mixpeek/taxonomies.py +686 -0
- mixpeek/{taxonomy_entities.py → taxonomyentities.py} +14 -690
- mixpeek/users.py +626 -0
- {mixpeek-0.17.9.dist-info → mixpeek-0.18.0.dist-info}/METADATA +57 -54
- {mixpeek-0.17.9.dist-info → mixpeek-0.18.0.dist-info}/RECORD +16 -15
- mixpeek/feature_search.py +0 -350
- {mixpeek-0.17.9.dist-info → mixpeek-0.18.0.dist-info}/WHEEL +0 -0
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class IngestAssets(BaseSDK):
|
12
|
-
def
|
12
|
+
def ingest_text(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
collection: str,
|
@@ -151,7 +151,7 @@ class IngestAssets(BaseSDK):
|
|
151
151
|
http_res,
|
152
152
|
)
|
153
153
|
|
154
|
-
async def
|
154
|
+
async def ingest_text_async(
|
155
155
|
self,
|
156
156
|
*,
|
157
157
|
collection: str,
|
@@ -293,7 +293,7 @@ class IngestAssets(BaseSDK):
|
|
293
293
|
http_res,
|
294
294
|
)
|
295
295
|
|
296
|
-
def
|
296
|
+
def ingest_video_url(
|
297
297
|
self,
|
298
298
|
*,
|
299
299
|
url: str,
|
@@ -438,7 +438,7 @@ class IngestAssets(BaseSDK):
|
|
438
438
|
http_res,
|
439
439
|
)
|
440
440
|
|
441
|
-
async def
|
441
|
+
async def ingest_video_url_async(
|
442
442
|
self,
|
443
443
|
*,
|
444
444
|
url: str,
|
@@ -583,7 +583,7 @@ class IngestAssets(BaseSDK):
|
|
583
583
|
http_res,
|
584
584
|
)
|
585
585
|
|
586
|
-
def
|
586
|
+
def ingest_image_url(
|
587
587
|
self,
|
588
588
|
*,
|
589
589
|
url: str,
|
@@ -728,7 +728,7 @@ class IngestAssets(BaseSDK):
|
|
728
728
|
http_res,
|
729
729
|
)
|
730
730
|
|
731
|
-
async def
|
731
|
+
async def ingest_image_url_async(
|
732
732
|
self,
|
733
733
|
*,
|
734
734
|
url: str,
|
mixpeek/namespaces.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class Namespaces(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
namespace_name: str,
|
@@ -127,7 +127,7 @@ class Namespaces(BaseSDK):
|
|
127
127
|
http_res,
|
128
128
|
)
|
129
129
|
|
130
|
-
async def
|
130
|
+
async def create_async(
|
131
131
|
self,
|
132
132
|
*,
|
133
133
|
namespace_name: str,
|
@@ -245,7 +245,7 @@ class Namespaces(BaseSDK):
|
|
245
245
|
http_res,
|
246
246
|
)
|
247
247
|
|
248
|
-
def
|
248
|
+
def list(
|
249
249
|
self,
|
250
250
|
*,
|
251
251
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
@@ -340,7 +340,7 @@ class Namespaces(BaseSDK):
|
|
340
340
|
http_res,
|
341
341
|
)
|
342
342
|
|
343
|
-
async def
|
343
|
+
async def list_async(
|
344
344
|
self,
|
345
345
|
*,
|
346
346
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
@@ -435,7 +435,7 @@ class Namespaces(BaseSDK):
|
|
435
435
|
http_res,
|
436
436
|
)
|
437
437
|
|
438
|
-
def
|
438
|
+
def delete(
|
439
439
|
self,
|
440
440
|
*,
|
441
441
|
namespace: str,
|
@@ -537,7 +537,7 @@ class Namespaces(BaseSDK):
|
|
537
537
|
http_res,
|
538
538
|
)
|
539
539
|
|
540
|
-
async def
|
540
|
+
async def delete_async(
|
541
541
|
self,
|
542
542
|
*,
|
543
543
|
namespace: str,
|
@@ -639,7 +639,7 @@ class Namespaces(BaseSDK):
|
|
639
639
|
http_res,
|
640
640
|
)
|
641
641
|
|
642
|
-
def
|
642
|
+
def update(
|
643
643
|
self,
|
644
644
|
*,
|
645
645
|
namespace: str,
|
@@ -760,7 +760,7 @@ class Namespaces(BaseSDK):
|
|
760
760
|
http_res,
|
761
761
|
)
|
762
762
|
|
763
|
-
async def
|
763
|
+
async def update_async(
|
764
764
|
self,
|
765
765
|
*,
|
766
766
|
namespace: str,
|
@@ -881,7 +881,7 @@ class Namespaces(BaseSDK):
|
|
881
881
|
http_res,
|
882
882
|
)
|
883
883
|
|
884
|
-
def
|
884
|
+
def get(
|
885
885
|
self,
|
886
886
|
*,
|
887
887
|
namespace: str,
|
@@ -983,7 +983,7 @@ class Namespaces(BaseSDK):
|
|
983
983
|
http_res,
|
984
984
|
)
|
985
985
|
|
986
|
-
async def
|
986
|
+
async def get_async(
|
987
987
|
self,
|
988
988
|
*,
|
989
989
|
namespace: str,
|
@@ -1085,7 +1085,7 @@ class Namespaces(BaseSDK):
|
|
1085
1085
|
http_res,
|
1086
1086
|
)
|
1087
1087
|
|
1088
|
-
def
|
1088
|
+
def list_models(
|
1089
1089
|
self,
|
1090
1090
|
*,
|
1091
1091
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
@@ -1180,7 +1180,7 @@ class Namespaces(BaseSDK):
|
|
1180
1180
|
http_res,
|
1181
1181
|
)
|
1182
1182
|
|
1183
|
-
async def
|
1183
|
+
async def list_models_async(
|
1184
1184
|
self,
|
1185
1185
|
*,
|
1186
1186
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|