rapidata 2.18.0__py3-none-any.whl → 2.19.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.
Potentially problematic release.
This version of rapidata might be problematic. Click here for more details.
- rapidata/__init__.py +2 -0
- rapidata/api_client/__init__.py +7 -5
- rapidata/api_client/api/order_api.py +3 -6
- rapidata/api_client/api/pipeline_api.py +665 -98
- rapidata/api_client/api/validation_set_api.py +6 -6
- rapidata/api_client/models/__init__.py +7 -5
- rapidata/api_client/models/add_user_response_result.py +3 -3
- rapidata/api_client/models/campaign_query_result.py +2 -2
- rapidata/api_client/models/campaign_status.py +2 -1
- rapidata/api_client/models/create_order_model_user_filters_inner.py +39 -9
- rapidata/api_client/models/get_simple_workflow_results_result.py +3 -3
- rapidata/api_client/models/get_validation_rapids_result.py +143 -0
- rapidata/api_client/models/get_validation_rapids_result_asset.py +174 -0
- rapidata/api_client/models/get_validation_rapids_result_paged_result.py +105 -0
- rapidata/api_client/models/get_validation_rapids_result_payload.py +252 -0
- rapidata/api_client/models/get_validation_rapids_result_truth.py +258 -0
- rapidata/api_client/models/not_user_filter_model.py +102 -0
- rapidata/api_client/models/or_user_filter_model.py +106 -0
- rapidata/api_client/models/query_validation_rapids_result.py +9 -9
- rapidata/api_client_README.md +9 -5
- rapidata/rapidata_client/__init__.py +2 -0
- rapidata/rapidata_client/filter/__init__.py +2 -0
- rapidata/rapidata_client/filter/not_filter.py +30 -0
- rapidata/rapidata_client/filter/or_filter.py +30 -0
- rapidata/rapidata_client/filter/rapidata_filters.py +6 -3
- {rapidata-2.18.0.dist-info → rapidata-2.19.0.dist-info}/METADATA +1 -1
- {rapidata-2.18.0.dist-info → rapidata-2.19.0.dist-info}/RECORD +29 -20
- {rapidata-2.18.0.dist-info → rapidata-2.19.0.dist-info}/LICENSE +0 -0
- {rapidata-2.18.0.dist-info → rapidata-2.19.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Rapidata.Dataset
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class NotUserFilterModel(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
NotUserFilterModel
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
t: StrictStr = Field(description="Discriminator value for NotFilter", alias="_t")
|
|
30
|
+
filter: CreateOrderModelUserFiltersInner
|
|
31
|
+
__properties: ClassVar[List[str]] = ["_t", "filter"]
|
|
32
|
+
|
|
33
|
+
@field_validator('t')
|
|
34
|
+
def t_validate_enum(cls, value):
|
|
35
|
+
"""Validates the enum"""
|
|
36
|
+
if value not in set(['NotFilter']):
|
|
37
|
+
raise ValueError("must be one of enum values ('NotFilter')")
|
|
38
|
+
return value
|
|
39
|
+
|
|
40
|
+
model_config = ConfigDict(
|
|
41
|
+
populate_by_name=True,
|
|
42
|
+
validate_assignment=True,
|
|
43
|
+
protected_namespaces=(),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
54
|
+
return json.dumps(self.to_dict())
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
58
|
+
"""Create an instance of NotUserFilterModel from a JSON string"""
|
|
59
|
+
return cls.from_dict(json.loads(json_str))
|
|
60
|
+
|
|
61
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
62
|
+
"""Return the dictionary representation of the model using alias.
|
|
63
|
+
|
|
64
|
+
This has the following differences from calling pydantic's
|
|
65
|
+
`self.model_dump(by_alias=True)`:
|
|
66
|
+
|
|
67
|
+
* `None` is only added to the output dict for nullable fields that
|
|
68
|
+
were set at model initialization. Other fields with value `None`
|
|
69
|
+
are ignored.
|
|
70
|
+
"""
|
|
71
|
+
excluded_fields: Set[str] = set([
|
|
72
|
+
])
|
|
73
|
+
|
|
74
|
+
_dict = self.model_dump(
|
|
75
|
+
by_alias=True,
|
|
76
|
+
exclude=excluded_fields,
|
|
77
|
+
exclude_none=True,
|
|
78
|
+
)
|
|
79
|
+
# override the default output from pydantic by calling `to_dict()` of filter
|
|
80
|
+
if self.filter:
|
|
81
|
+
_dict['filter'] = self.filter.to_dict()
|
|
82
|
+
return _dict
|
|
83
|
+
|
|
84
|
+
@classmethod
|
|
85
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
86
|
+
"""Create an instance of NotUserFilterModel from a dict"""
|
|
87
|
+
if obj is None:
|
|
88
|
+
return None
|
|
89
|
+
|
|
90
|
+
if not isinstance(obj, dict):
|
|
91
|
+
return cls.model_validate(obj)
|
|
92
|
+
|
|
93
|
+
_obj = cls.model_validate({
|
|
94
|
+
"_t": obj.get("_t") if obj.get("_t") is not None else 'NotFilter',
|
|
95
|
+
"filter": CreateOrderModelUserFiltersInner.from_dict(obj["filter"]) if obj.get("filter") is not None else None
|
|
96
|
+
})
|
|
97
|
+
return _obj
|
|
98
|
+
|
|
99
|
+
from rapidata.api_client.models.create_order_model_user_filters_inner import CreateOrderModelUserFiltersInner
|
|
100
|
+
# TODO: Rewrite to not use raise_errors
|
|
101
|
+
NotUserFilterModel.model_rebuild(raise_errors=False)
|
|
102
|
+
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Rapidata.Dataset
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class OrUserFilterModel(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
OrUserFilterModel
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
t: StrictStr = Field(description="Discriminator value for OrFilter", alias="_t")
|
|
30
|
+
filters: List[CreateOrderModelUserFiltersInner]
|
|
31
|
+
__properties: ClassVar[List[str]] = ["_t", "filters"]
|
|
32
|
+
|
|
33
|
+
@field_validator('t')
|
|
34
|
+
def t_validate_enum(cls, value):
|
|
35
|
+
"""Validates the enum"""
|
|
36
|
+
if value not in set(['OrFilter']):
|
|
37
|
+
raise ValueError("must be one of enum values ('OrFilter')")
|
|
38
|
+
return value
|
|
39
|
+
|
|
40
|
+
model_config = ConfigDict(
|
|
41
|
+
populate_by_name=True,
|
|
42
|
+
validate_assignment=True,
|
|
43
|
+
protected_namespaces=(),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
54
|
+
return json.dumps(self.to_dict())
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
58
|
+
"""Create an instance of OrUserFilterModel from a JSON string"""
|
|
59
|
+
return cls.from_dict(json.loads(json_str))
|
|
60
|
+
|
|
61
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
62
|
+
"""Return the dictionary representation of the model using alias.
|
|
63
|
+
|
|
64
|
+
This has the following differences from calling pydantic's
|
|
65
|
+
`self.model_dump(by_alias=True)`:
|
|
66
|
+
|
|
67
|
+
* `None` is only added to the output dict for nullable fields that
|
|
68
|
+
were set at model initialization. Other fields with value `None`
|
|
69
|
+
are ignored.
|
|
70
|
+
"""
|
|
71
|
+
excluded_fields: Set[str] = set([
|
|
72
|
+
])
|
|
73
|
+
|
|
74
|
+
_dict = self.model_dump(
|
|
75
|
+
by_alias=True,
|
|
76
|
+
exclude=excluded_fields,
|
|
77
|
+
exclude_none=True,
|
|
78
|
+
)
|
|
79
|
+
# override the default output from pydantic by calling `to_dict()` of each item in filters (list)
|
|
80
|
+
_items = []
|
|
81
|
+
if self.filters:
|
|
82
|
+
for _item_filters in self.filters:
|
|
83
|
+
if _item_filters:
|
|
84
|
+
_items.append(_item_filters.to_dict())
|
|
85
|
+
_dict['filters'] = _items
|
|
86
|
+
return _dict
|
|
87
|
+
|
|
88
|
+
@classmethod
|
|
89
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
90
|
+
"""Create an instance of OrUserFilterModel from a dict"""
|
|
91
|
+
if obj is None:
|
|
92
|
+
return None
|
|
93
|
+
|
|
94
|
+
if not isinstance(obj, dict):
|
|
95
|
+
return cls.model_validate(obj)
|
|
96
|
+
|
|
97
|
+
_obj = cls.model_validate({
|
|
98
|
+
"_t": obj.get("_t") if obj.get("_t") is not None else 'OrFilter',
|
|
99
|
+
"filters": [CreateOrderModelUserFiltersInner.from_dict(_item) for _item in obj["filters"]] if obj.get("filters") is not None else None
|
|
100
|
+
})
|
|
101
|
+
return _obj
|
|
102
|
+
|
|
103
|
+
from rapidata.api_client.models.create_order_model_user_filters_inner import CreateOrderModelUserFiltersInner
|
|
104
|
+
# TODO: Rewrite to not use raise_errors
|
|
105
|
+
OrUserFilterModel.model_rebuild(raise_errors=False)
|
|
106
|
+
|
|
@@ -19,10 +19,10 @@ import json
|
|
|
19
19
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
-
from rapidata.api_client.models.add_user_response_result_validation_truth import AddUserResponseResultValidationTruth
|
|
23
22
|
from rapidata.api_client.models.file_asset_model_metadata_value import FileAssetModelMetadataValue
|
|
24
|
-
from rapidata.api_client.models.
|
|
25
|
-
from rapidata.api_client.models.
|
|
23
|
+
from rapidata.api_client.models.get_validation_rapids_result_asset import GetValidationRapidsResultAsset
|
|
24
|
+
from rapidata.api_client.models.get_validation_rapids_result_payload import GetValidationRapidsResultPayload
|
|
25
|
+
from rapidata.api_client.models.get_validation_rapids_result_truth import GetValidationRapidsResultTruth
|
|
26
26
|
from typing import Optional, Set
|
|
27
27
|
from typing_extensions import Self
|
|
28
28
|
|
|
@@ -32,9 +32,9 @@ class QueryValidationRapidsResult(BaseModel):
|
|
|
32
32
|
""" # noqa: E501
|
|
33
33
|
id: StrictStr
|
|
34
34
|
type: StrictStr
|
|
35
|
-
asset: Optional[
|
|
36
|
-
truth: Optional[
|
|
37
|
-
payload:
|
|
35
|
+
asset: Optional[GetValidationRapidsResultAsset] = None
|
|
36
|
+
truth: Optional[GetValidationRapidsResultTruth] = None
|
|
37
|
+
payload: GetValidationRapidsResultPayload
|
|
38
38
|
metadata: Dict[str, FileAssetModelMetadataValue]
|
|
39
39
|
correct_validation_count: StrictInt = Field(alias="correctValidationCount")
|
|
40
40
|
invalid_validation_count: StrictInt = Field(alias="invalidValidationCount")
|
|
@@ -125,9 +125,9 @@ class QueryValidationRapidsResult(BaseModel):
|
|
|
125
125
|
_obj = cls.model_validate({
|
|
126
126
|
"id": obj.get("id"),
|
|
127
127
|
"type": obj.get("type"),
|
|
128
|
-
"asset":
|
|
129
|
-
"truth":
|
|
130
|
-
"payload":
|
|
128
|
+
"asset": GetValidationRapidsResultAsset.from_dict(obj["asset"]) if obj.get("asset") is not None else None,
|
|
129
|
+
"truth": GetValidationRapidsResultTruth.from_dict(obj["truth"]) if obj.get("truth") is not None else None,
|
|
130
|
+
"payload": GetValidationRapidsResultPayload.from_dict(obj["payload"]) if obj.get("payload") is not None else None,
|
|
131
131
|
"metadata": dict(
|
|
132
132
|
(_k, FileAssetModelMetadataValue.from_dict(_v))
|
|
133
133
|
for _k, _v in obj["metadata"].items()
|
rapidata/api_client_README.md
CHANGED
|
@@ -162,8 +162,10 @@ Class | Method | HTTP request | Description
|
|
|
162
162
|
*OrderApi* | [**orders_public_get**](rapidata/api_client/docs/OrderApi.md#orders_public_get) | **GET** /orders/public | Retrieves orders that are public and can be cloned by any user.
|
|
163
163
|
*PipelineApi* | [**pipeline_id_workflow_artifact_id_put**](rapidata/api_client/docs/PipelineApi.md#pipeline_id_workflow_artifact_id_put) | **PUT** /pipeline/{id}/workflow/{artifactId} | Updates the workflow configuration for a pipeline.
|
|
164
164
|
*PipelineApi* | [**pipeline_id_workflow_config_artifact_id_put**](rapidata/api_client/docs/PipelineApi.md#pipeline_id_workflow_config_artifact_id_put) | **PUT** /pipeline/{id}/workflow-config/{artifactId} | Updates the workflow configuration for a pipeline.
|
|
165
|
+
*PipelineApi* | [**pipeline_id_workflow_config_put**](rapidata/api_client/docs/PipelineApi.md#pipeline_id_workflow_config_put) | **PUT** /pipeline/{id}/workflow-config | Updates the workflow configuration for a pipeline.
|
|
165
166
|
*PipelineApi* | [**pipeline_pipeline_id_campaign_artifact_id_put**](rapidata/api_client/docs/PipelineApi.md#pipeline_pipeline_id_campaign_artifact_id_put) | **PUT** /pipeline/{pipelineId}/campaign/{artifactId} | Updates a specific campaign for a pipeline.
|
|
166
167
|
*PipelineApi* | [**pipeline_pipeline_id_campaign_post**](rapidata/api_client/docs/PipelineApi.md#pipeline_pipeline_id_campaign_post) | **POST** /pipeline/{pipelineId}/campaign | Adds a campaign to a pipeline.
|
|
168
|
+
*PipelineApi* | [**pipeline_pipeline_id_campaign_put**](rapidata/api_client/docs/PipelineApi.md#pipeline_pipeline_id_campaign_put) | **PUT** /pipeline/{pipelineId}/campaign | Updates a specific campaign for a pipeline.
|
|
167
169
|
*PipelineApi* | [**pipeline_pipeline_id_get**](rapidata/api_client/docs/PipelineApi.md#pipeline_pipeline_id_get) | **GET** /pipeline/{pipelineId} | Gets a pipeline by its id.
|
|
168
170
|
*PipelineApi* | [**pipeline_pipeline_id_preliminary_download_post**](rapidata/api_client/docs/PipelineApi.md#pipeline_pipeline_id_preliminary_download_post) | **POST** /pipeline/{pipelineId}/preliminary-download | Initiates a preliminary download of the pipeline.
|
|
169
171
|
*PipelineApi* | [**pipeline_preliminary_download_preliminary_download_id_get**](rapidata/api_client/docs/PipelineApi.md#pipeline_preliminary_download_preliminary_download_id_get) | **GET** /pipeline/preliminary-download/{preliminaryDownloadId} | Gets the preliminary download.
|
|
@@ -223,7 +225,6 @@ Class | Method | HTTP request | Description
|
|
|
223
225
|
- [AddCampaignArtifactResult](rapidata/api_client/docs/AddCampaignArtifactResult.md)
|
|
224
226
|
- [AddCampaignModel](rapidata/api_client/docs/AddCampaignModel.md)
|
|
225
227
|
- [AddUserResponseResult](rapidata/api_client/docs/AddUserResponseResult.md)
|
|
226
|
-
- [AddUserResponseResultValidationTruth](rapidata/api_client/docs/AddUserResponseResultValidationTruth.md)
|
|
227
228
|
- [AddValidationRapidModel](rapidata/api_client/docs/AddValidationRapidModel.md)
|
|
228
229
|
- [AddValidationRapidModelPayload](rapidata/api_client/docs/AddValidationRapidModelPayload.md)
|
|
229
230
|
- [AddValidationRapidModelTruth](rapidata/api_client/docs/AddValidationRapidModelTruth.md)
|
|
@@ -353,8 +354,11 @@ Class | Method | HTTP request | Description
|
|
|
353
354
|
- [GetSimpleWorkflowResultsModel](rapidata/api_client/docs/GetSimpleWorkflowResultsModel.md)
|
|
354
355
|
- [GetSimpleWorkflowResultsResult](rapidata/api_client/docs/GetSimpleWorkflowResultsResult.md)
|
|
355
356
|
- [GetSimpleWorkflowResultsResultPagedResult](rapidata/api_client/docs/GetSimpleWorkflowResultsResultPagedResult.md)
|
|
356
|
-
- [
|
|
357
|
-
- [
|
|
357
|
+
- [GetValidationRapidsResult](rapidata/api_client/docs/GetValidationRapidsResult.md)
|
|
358
|
+
- [GetValidationRapidsResultAsset](rapidata/api_client/docs/GetValidationRapidsResultAsset.md)
|
|
359
|
+
- [GetValidationRapidsResultPagedResult](rapidata/api_client/docs/GetValidationRapidsResultPagedResult.md)
|
|
360
|
+
- [GetValidationRapidsResultPayload](rapidata/api_client/docs/GetValidationRapidsResultPayload.md)
|
|
361
|
+
- [GetValidationRapidsResultTruth](rapidata/api_client/docs/GetValidationRapidsResultTruth.md)
|
|
358
362
|
- [GetValidationSetByIdResult](rapidata/api_client/docs/GetValidationSetByIdResult.md)
|
|
359
363
|
- [GetWorkflowByIdResult](rapidata/api_client/docs/GetWorkflowByIdResult.md)
|
|
360
364
|
- [GetWorkflowByIdResultWorkflow](rapidata/api_client/docs/GetWorkflowByIdResultWorkflow.md)
|
|
@@ -395,10 +399,12 @@ Class | Method | HTTP request | Description
|
|
|
395
399
|
- [NewUserFilterModel](rapidata/api_client/docs/NewUserFilterModel.md)
|
|
396
400
|
- [NewsletterModel](rapidata/api_client/docs/NewsletterModel.md)
|
|
397
401
|
- [NotAvailableYetResult](rapidata/api_client/docs/NotAvailableYetResult.md)
|
|
402
|
+
- [NotUserFilterModel](rapidata/api_client/docs/NotUserFilterModel.md)
|
|
398
403
|
- [NullAssetModel](rapidata/api_client/docs/NullAssetModel.md)
|
|
399
404
|
- [OnlinePairMakerConfig](rapidata/api_client/docs/OnlinePairMakerConfig.md)
|
|
400
405
|
- [OnlinePairMakerConfigModel](rapidata/api_client/docs/OnlinePairMakerConfigModel.md)
|
|
401
406
|
- [OnlinePairMakerInformation](rapidata/api_client/docs/OnlinePairMakerInformation.md)
|
|
407
|
+
- [OrUserFilterModel](rapidata/api_client/docs/OrUserFilterModel.md)
|
|
402
408
|
- [OrderModel](rapidata/api_client/docs/OrderModel.md)
|
|
403
409
|
- [OrderModelPagedResult](rapidata/api_client/docs/OrderModelPagedResult.md)
|
|
404
410
|
- [OrderState](rapidata/api_client/docs/OrderState.md)
|
|
@@ -421,9 +427,7 @@ Class | Method | HTTP request | Description
|
|
|
421
427
|
- [PublicTextMetadataInput](rapidata/api_client/docs/PublicTextMetadataInput.md)
|
|
422
428
|
- [QueryModel](rapidata/api_client/docs/QueryModel.md)
|
|
423
429
|
- [QueryValidationRapidsResult](rapidata/api_client/docs/QueryValidationRapidsResult.md)
|
|
424
|
-
- [QueryValidationRapidsResultAsset](rapidata/api_client/docs/QueryValidationRapidsResultAsset.md)
|
|
425
430
|
- [QueryValidationRapidsResultPagedResult](rapidata/api_client/docs/QueryValidationRapidsResultPagedResult.md)
|
|
426
|
-
- [QueryValidationRapidsResultPayload](rapidata/api_client/docs/QueryValidationRapidsResultPayload.md)
|
|
427
431
|
- [QueryWorkflowsModel](rapidata/api_client/docs/QueryWorkflowsModel.md)
|
|
428
432
|
- [RapidIssue](rapidata/api_client/docs/RapidIssue.md)
|
|
429
433
|
- [RapidResponse](rapidata/api_client/docs/RapidResponse.md)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from typing import Any
|
|
2
|
+
from rapidata.rapidata_client.filter._base_filter import RapidataFilter
|
|
3
|
+
from rapidata.api_client.models.not_user_filter_model import NotUserFilterModel
|
|
4
|
+
from rapidata.api_client.models.create_order_model_user_filters_inner import CreateOrderModelUserFiltersInner
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class NotFilter(RapidataFilter):
|
|
8
|
+
"""A filter that negates another filter's condition.
|
|
9
|
+
This class implements a logical NOT operation on a given filter, inverting its results.
|
|
10
|
+
|
|
11
|
+
Args:
|
|
12
|
+
filter (RapidataFilter): The filter whose condition should be negated.
|
|
13
|
+
|
|
14
|
+
Example:
|
|
15
|
+
```python
|
|
16
|
+
from rapidata import NotFilter, LanguageFilter
|
|
17
|
+
|
|
18
|
+
NotFilter(LanguageFilter(["en"]))
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This will limit the order to be shown to only people who have their phone set to a language other than English.
|
|
22
|
+
"""
|
|
23
|
+
def __init__(self, filter: RapidataFilter):
|
|
24
|
+
if not isinstance(filter, RapidataFilter):
|
|
25
|
+
raise ValueError("Filter must be a RapidataFilter object")
|
|
26
|
+
|
|
27
|
+
self.filter = filter
|
|
28
|
+
|
|
29
|
+
def _to_model(self):
|
|
30
|
+
return NotUserFilterModel(_t="NotFilter", filter=CreateOrderModelUserFiltersInner(self.filter._to_model()))
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from typing import Any
|
|
2
|
+
from rapidata.rapidata_client.filter._base_filter import RapidataFilter
|
|
3
|
+
from rapidata.api_client.models.or_user_filter_model import OrUserFilterModel
|
|
4
|
+
from rapidata.api_client.models.create_order_model_user_filters_inner import CreateOrderModelUserFiltersInner
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class OrFilter(RapidataFilter):
|
|
8
|
+
"""A filter that combines multiple filters with a logical OR operation.
|
|
9
|
+
This class implements a logical OR operation on a list of filters, where the condition is met if any of the filters' conditions are met.
|
|
10
|
+
|
|
11
|
+
Args:
|
|
12
|
+
filters (list[RapidataFilter]): A list of filters to be combined with OR.
|
|
13
|
+
|
|
14
|
+
Example:
|
|
15
|
+
```python
|
|
16
|
+
from rapidata import OrFilter, LanguageFilter, CountryFilter
|
|
17
|
+
|
|
18
|
+
OrFilter([LanguageFilter(["en"]), CountryFilter(["US"])])
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This will match users who either have their phone set to English OR are located in the United States.
|
|
22
|
+
"""
|
|
23
|
+
def __init__(self, filters: list[RapidataFilter]):
|
|
24
|
+
if not all(isinstance(filter, RapidataFilter) for filter in filters):
|
|
25
|
+
raise ValueError("Filters must be a RapidataFilter object")
|
|
26
|
+
|
|
27
|
+
self.filters = filters
|
|
28
|
+
|
|
29
|
+
def _to_model(self):
|
|
30
|
+
return OrUserFilterModel(_t="OrFilter", filters=[CreateOrderModelUserFiltersInner(filter._to_model()) for filter in self.filters])
|
|
@@ -5,7 +5,8 @@ from rapidata.rapidata_client.filter import (
|
|
|
5
5
|
GenderFilter,
|
|
6
6
|
LanguageFilter,
|
|
7
7
|
UserScoreFilter,
|
|
8
|
-
|
|
8
|
+
NotFilter,
|
|
9
|
+
OrFilter)
|
|
9
10
|
|
|
10
11
|
class RapidataFilters:
|
|
11
12
|
"""RapidataFilters Classes
|
|
@@ -24,7 +25,8 @@ class RapidataFilters:
|
|
|
24
25
|
country (CountryFilter): The CountryFilter instance.
|
|
25
26
|
gender (GenderFilter): The GenderFilter instance.
|
|
26
27
|
language (LanguageFilter): The LanguageFilter instance.
|
|
27
|
-
|
|
28
|
+
not_filter (NotFilter): The NotFilter instance.
|
|
29
|
+
or_filter (OrFilter): The OrFilter instance.
|
|
28
30
|
|
|
29
31
|
Example:
|
|
30
32
|
```python
|
|
@@ -40,4 +42,5 @@ class RapidataFilters:
|
|
|
40
42
|
country = CountryFilter
|
|
41
43
|
gender = GenderFilter
|
|
42
44
|
language = LanguageFilter
|
|
43
|
-
|
|
45
|
+
not_filter = NotFilter
|
|
46
|
+
or_filter = OrFilter
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256
|
|
2
|
-
rapidata/api_client/__init__.py,sha256=
|
|
1
|
+
rapidata/__init__.py,sha256=-uqhIlYjh1gb4HiE_7ga8pXa2oIFfpYRvyPd6Axx4wo,655
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=jtvAjo0zg4XDehXuSdMnaaCS41mptb5CTAOA9Lz6TtA,26420
|
|
3
3
|
rapidata/api_client/api/__init__.py,sha256=z_KCn1Nw9RrVXzdC2RCpoEk7_vU19JT261Opw04RqNI,1129
|
|
4
4
|
rapidata/api_client/api/campaign_api.py,sha256=1ajX0hSnA4O5GacJLIGkAgorPlNDRVaEZY029Pkutl4,71353
|
|
5
5
|
rapidata/api_client/api/client_api.py,sha256=qGiNJHQarNEFNmkrgWeHmlVX96WuDZINozhYaNfiy3c,53357
|
|
@@ -10,26 +10,26 @@ rapidata/api_client/api/dataset_api.py,sha256=M-FwzuKrBu-dcZEK0FfcvAGd-lk4DLipnt
|
|
|
10
10
|
rapidata/api_client/api/feedback_api.py,sha256=9ecA2GTvEMkCugXm6McGWbK2bT9gSOb8C-LT8syZ3s0,11661
|
|
11
11
|
rapidata/api_client/api/identity_api.py,sha256=glClYKwEPyGUDY_SWef-8FGjbbui_RIpOeBhwfzTxAk,78117
|
|
12
12
|
rapidata/api_client/api/newsletter_api.py,sha256=pdJ7Gdxw7yKZromzGNhM1hRhzrqm4nDRib5xVvnClME,34230
|
|
13
|
-
rapidata/api_client/api/order_api.py,sha256=
|
|
14
|
-
rapidata/api_client/api/pipeline_api.py,sha256=
|
|
13
|
+
rapidata/api_client/api/order_api.py,sha256=aAf6bS4gTdSlDI42wjUMDRw0lYP4L3VQjk7JsZsEqKk,413101
|
|
14
|
+
rapidata/api_client/api/pipeline_api.py,sha256=n4JPczdE01qc1AbIgx9nqJvd7ltdo_LsHX4N_lyLwNs,110546
|
|
15
15
|
rapidata/api_client/api/rapid_api.py,sha256=wsUdeuL0JOyRoGwZ6bxUli3ik8aZV9vloD6fIjUAJsw,173070
|
|
16
16
|
rapidata/api_client/api/rapidata_identity_api_api.py,sha256=-kgoDuLdh-R4MQ7JPi3kQ0WDFKbmI0MkCjxwHXBmksA,9824
|
|
17
17
|
rapidata/api_client/api/simple_workflow_api.py,sha256=676u_J6hIL5u1V0jLuSEkkvHwBQBcpHGSfyd0147x-0,12806
|
|
18
18
|
rapidata/api_client/api/user_info_api.py,sha256=FuuA95Beeky-rnqIoSUe2-WQ7oVTfq0RElX0jfKXT0w,10042
|
|
19
19
|
rapidata/api_client/api/validation_api.py,sha256=XET31snfRc78TJre3jGOlb0bAs8wr82qhRiURiitUaE,98706
|
|
20
|
-
rapidata/api_client/api/validation_set_api.py,sha256=
|
|
20
|
+
rapidata/api_client/api/validation_set_api.py,sha256=Qg8tpVpxWiwU82Qon6OPjVJfoxNuRwK0cJlExw2XTkQ,213801
|
|
21
21
|
rapidata/api_client/api/workflow_api.py,sha256=a4LSlqk4X08YEKm4pS7wQeK1tK3JPKJ2xW0ye252r7A,98898
|
|
22
22
|
rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlGx9K4,27503
|
|
23
23
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
24
24
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
25
25
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
26
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
26
|
+
rapidata/api_client/models/__init__.py,sha256=W0vtAsfuN4TvOhUcA2I1Em9TsPEA1yotVwHbaxU3HwQ,24750
|
|
27
27
|
rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
|
|
28
28
|
rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=2sM9nimGo85Fk1k7yZQnp-3ncMXcz_wvYBCR8NG1Sb8,10771
|
|
29
29
|
rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
|
|
30
30
|
rapidata/api_client/models/add_campaign_model.py,sha256=HRFP1EGEzroTC2xzwvJoTaGiAlYUcprUlFkjxmxpOas,7478
|
|
31
31
|
rapidata/api_client/models/add_campaign_model_user_filters_inner.py,sha256=i7R_ToWdsfkOZechTm_-KE01kucRGvsJ_tVIJWqkGgw,11152
|
|
32
|
-
rapidata/api_client/models/add_user_response_result.py,sha256=
|
|
32
|
+
rapidata/api_client/models/add_user_response_result.py,sha256=gON-mQagMa1gi6fIUFSNLc7R8CozOdx0-nYnRJksL3Y,4015
|
|
33
33
|
rapidata/api_client/models/add_user_response_result_validation_truth.py,sha256=1_BKJKBayJ2h3HspPoMwbCrtG_zzMIy8y_b4RC8r6oM,11916
|
|
34
34
|
rapidata/api_client/models/add_validation_rapid_model.py,sha256=1qcTMyQMwX--K6PDct-MiSJieAN4UCFabaINGxVAPSQ,5396
|
|
35
35
|
rapidata/api_client/models/add_validation_rapid_model_payload.py,sha256=TxiQCEfoEz2LvSCLyPEbqs1f9iKcGZ4p1zxG3FZoo1U,11825
|
|
@@ -54,9 +54,9 @@ rapidata/api_client/models/box_shape.py,sha256=8sPLY_p1e9yjCGtUBbtfeZcj2StrnPRY8
|
|
|
54
54
|
rapidata/api_client/models/campaign_artifact_model.py,sha256=tAFlTCUGquSE6w6cKFrozbdRtRT0-oCDvH4rgFSputE,3126
|
|
55
55
|
rapidata/api_client/models/campaign_query_model.py,sha256=jyJVUrxumUmkx_Al4yoLi0fmXaxxEmE1pKMYdJGEkOM,3258
|
|
56
56
|
rapidata/api_client/models/campaign_query_model_paged_result.py,sha256=Aggg5CzXPO6dL-GeSf0RU7WKYelvFagEVq8jaz2MA6g,3518
|
|
57
|
-
rapidata/api_client/models/campaign_query_result.py,sha256=
|
|
57
|
+
rapidata/api_client/models/campaign_query_result.py,sha256=7gJDZrAQg7h1x2OtsIJ1nTQm93s3YNXQ3QvCVLBgrf0,3352
|
|
58
58
|
rapidata/api_client/models/campaign_query_result_paged_result.py,sha256=VIjrAUE3b7s_Kmwu2ihA2fjs-6Y5dZxLsYZ5Nzg6xuE,3526
|
|
59
|
-
rapidata/api_client/models/campaign_status.py,sha256=
|
|
59
|
+
rapidata/api_client/models/campaign_status.py,sha256=2RH4JWHBnbJpCHVduudpq2On9kEJSBw4ucnPtDmu2Ao,863
|
|
60
60
|
rapidata/api_client/models/campaign_user_filter_model.py,sha256=Jl92xwZPA_qQxeVkxGmT987KTG7Bdbj5zysugricbKo,3028
|
|
61
61
|
rapidata/api_client/models/capped_selection.py,sha256=JdufQsUToYeVDgVQ8-hwvOqLuy8u1baMmy_DvNKp6B4,3726
|
|
62
62
|
rapidata/api_client/models/capped_selection_selections_inner.py,sha256=pIT5w0rtbY2h__5xbsVj0zXEciaNMu7Ctfq1o-YZxjE,9234
|
|
@@ -124,7 +124,7 @@ rapidata/api_client/models/create_legacy_order_result.py,sha256=BR1XqPKq9QkDe0Uy
|
|
|
124
124
|
rapidata/api_client/models/create_order_model.py,sha256=CkCBzqF5vWK-Rswy5MlIWpe8qZIaSnAsEVjF3zKMbn8,10202
|
|
125
125
|
rapidata/api_client/models/create_order_model_referee.py,sha256=dxQ9SDiBjFIKYjctVNeiuGvjZwzIa0Q8JpW7iRei00I,5748
|
|
126
126
|
rapidata/api_client/models/create_order_model_selections_inner.py,sha256=9p9BJKHN3WhRiu-FwWf421COAxeGmm1KkkyDT7UW5uc,8354
|
|
127
|
-
rapidata/api_client/models/create_order_model_user_filters_inner.py,sha256=
|
|
127
|
+
rapidata/api_client/models/create_order_model_user_filters_inner.py,sha256=FhMQ8p_25vg-irqRfkvl7hdm7yBWqY7TvSe9DkgJpYA,12898
|
|
128
128
|
rapidata/api_client/models/create_order_model_workflow.py,sha256=cy7bD2kWvLkCgFdrViAG63xtYDIdVOn0dD74GRxni_A,6638
|
|
129
129
|
rapidata/api_client/models/create_order_result.py,sha256=zGr4EOKdjfy5SBLvox_iiCwwc7dXOfi70M0WYSZGgH4,3272
|
|
130
130
|
rapidata/api_client/models/create_rapid_result.py,sha256=ECREjyzsTg6leWTF19E-QtqmyaTIeIZzpp_sO9iA4kY,2535
|
|
@@ -200,10 +200,15 @@ rapidata/api_client/models/get_rapid_responses_result.py,sha256=Tz_s-64Gn1KEQpZo
|
|
|
200
200
|
rapidata/api_client/models/get_responses_result.py,sha256=PKotTgmo6kM6a65DNHvd0Eu6B6DghQiTdEtbDyErXhY,3012
|
|
201
201
|
rapidata/api_client/models/get_simple_workflow_result_overview_result.py,sha256=ThHj63FCET3FcfC8jBjTG8opL2ZUMwg4BZFIzXFaC8I,6554
|
|
202
202
|
rapidata/api_client/models/get_simple_workflow_results_model.py,sha256=r4DZspzPrwaI4DrC4OH-mwUvibcS0TzK9O8CFnsURSc,4289
|
|
203
|
-
rapidata/api_client/models/get_simple_workflow_results_result.py,sha256=
|
|
203
|
+
rapidata/api_client/models/get_simple_workflow_results_result.py,sha256=WNBHFW-D6tlMzNp9P7nGfoDoarjjwb2YwjlCCV1tA00,4411
|
|
204
204
|
rapidata/api_client/models/get_simple_workflow_results_result_paged_result.py,sha256=DWimv7FmvJmixjQvDFeTE_Q5jHLpLdQmPlXF_9iWSiY,3616
|
|
205
205
|
rapidata/api_client/models/get_validation_rapids_query.py,sha256=teC4ryyIXJkRwafaSorysBIsKJuO5C1L8f6juJMwrNs,4894
|
|
206
206
|
rapidata/api_client/models/get_validation_rapids_query_paged_result.py,sha256=ifyJ7Iy7VzTWxtwb2q5q5id927Iil00V3Nk9QqclsDo,3567
|
|
207
|
+
rapidata/api_client/models/get_validation_rapids_result.py,sha256=rfJ5jnRKf1W-84v8kxC3n96c8sR6Ub0Q-qGko0s_yHw,5848
|
|
208
|
+
rapidata/api_client/models/get_validation_rapids_result_asset.py,sha256=7gIOQGFB3hzgz31R66C0sPhHmGQ6poy71_x0TcwGNgA,7185
|
|
209
|
+
rapidata/api_client/models/get_validation_rapids_result_paged_result.py,sha256=W3HYqV62iIcm3yTVN1FgOAwOeWpumgUDA8jiLZ7EzP0,3575
|
|
210
|
+
rapidata/api_client/models/get_validation_rapids_result_payload.py,sha256=yVO4ku7FNovq6t8Chp0tFwerfY2Q4bBxa0xkqcuDUeo,11838
|
|
211
|
+
rapidata/api_client/models/get_validation_rapids_result_truth.py,sha256=Mn51HdYp7SiN2DIG8lnR8y53YjIMHK-gr4hvWXgtQl4,11868
|
|
207
212
|
rapidata/api_client/models/get_validation_set_by_id_result.py,sha256=dsonFbNl_Zj4mwUmo4Hc6QSDfpc1MDaiFzbEC3Ta_Uo,2845
|
|
208
213
|
rapidata/api_client/models/get_workflow_by_id_result.py,sha256=l8DvKolvRGJQtMuTXLVwJuCN0eaSET-gi0p6TV6phuQ,2886
|
|
209
214
|
rapidata/api_client/models/get_workflow_by_id_result_workflow.py,sha256=Pc-kq2AnoxqVQmJj52Fptyb-RoTihwq73GpODiw6trk,5735
|
|
@@ -262,6 +267,7 @@ rapidata/api_client/models/newsletter_model.py,sha256=wXWtCaodMw40dhX0krLuTRMCBs
|
|
|
262
267
|
rapidata/api_client/models/no_validation_workflow_rapid_selection_config.py,sha256=SgOfHf2WXg97Ko_2YcPl9iMekkChtrQPGwFm93TpBMo,3389
|
|
263
268
|
rapidata/api_client/models/not_available_yet_result.py,sha256=euGeN081IZ4mCaiJJD_lz_655Hn5n6Oomq6980Yzy1w,2996
|
|
264
269
|
rapidata/api_client/models/not_started_rapid_model.py,sha256=_IVYY9C2i8e4jaM6EDerk7ynKYwajX_-dtmTscCUe_U,2954
|
|
270
|
+
rapidata/api_client/models/not_user_filter_model.py,sha256=IScOwYUVryZQPgzLWCCX53QAO-xeYh_5bIpzOsXAnrs,3402
|
|
265
271
|
rapidata/api_client/models/null_asset.py,sha256=88mm-8iw4dJXCh4lYWYJQLYDxQiDOvqfjQnqSiOn8sg,3470
|
|
266
272
|
rapidata/api_client/models/null_asset_model.py,sha256=iYkiSxsLr1aJubdfsLKi468YWXINl1IiQ6CzaOmna4g,3716
|
|
267
273
|
rapidata/api_client/models/null_asset_model1.py,sha256=FAu0ayR7eK_mssNRFwDiaLTumoB44MiZzvWg6Lf3tOw,3601
|
|
@@ -270,6 +276,7 @@ rapidata/api_client/models/online_pair_maker_config.py,sha256=j29pRLXwNzlMs4uOV6
|
|
|
270
276
|
rapidata/api_client/models/online_pair_maker_config_model.py,sha256=2jvkHrlEJhde9iD6yJ4TQCFE8-gWbEq8EQzm6GbYg2w,3580
|
|
271
277
|
rapidata/api_client/models/online_pair_maker_information.py,sha256=SSVJUesx5nptyi9laNMT-K6JNieFn5IuegtqbbWyLCY,3609
|
|
272
278
|
rapidata/api_client/models/only_validation_workflow_rapid_selection_config.py,sha256=I_k5RsXAXbK8Oe3yhQjN_JO1t1kvPnA4pemQS_CzHmw,3231
|
|
279
|
+
rapidata/api_client/models/or_user_filter_model.py,sha256=16MfqCkzrGtQIIsVNmXuRjMk9yNPvfKKvoaFcuIgkag,3593
|
|
273
280
|
rapidata/api_client/models/order_model.py,sha256=bkC1-XRSCOhDrzMa6t1Io_MynNmnoMA1J3VXvV5221Y,3864
|
|
274
281
|
rapidata/api_client/models/order_model_paged_result.py,sha256=7wHL_M1NYHFWFnaWjqiIx2GCjwWup7Dk1dBNp7_oiLk,3453
|
|
275
282
|
rapidata/api_client/models/order_query_get200_response.py,sha256=Zt6TqghldmhkXrF8eIUWXVCp1Af7jiD6iMbuvdj02G8,5876
|
|
@@ -299,7 +306,7 @@ rapidata/api_client/models/public_text_metadata_input.py,sha256=n9-TY_32304RZ4N6
|
|
|
299
306
|
rapidata/api_client/models/query_campaigns_model.py,sha256=QFN637qh7qG0QjuJfTpimR57ACtItxTKn18rbdE-BKM,4138
|
|
300
307
|
rapidata/api_client/models/query_model.py,sha256=FP9dAgpgnlyxQfQhYWSvyTdRTjd9fDBdj8tdijLdw2g,4052
|
|
301
308
|
rapidata/api_client/models/query_orders_model.py,sha256=eRLuM82LOiKNFywC7vfKlAUvCGolUfTU5w-GUO4TAdA,4126
|
|
302
|
-
rapidata/api_client/models/query_validation_rapids_result.py,sha256=
|
|
309
|
+
rapidata/api_client/models/query_validation_rapids_result.py,sha256=4uhNnqr6HrxmruDS0ffgD8evZTK7Vzr3kxtSjBuwqzU,5856
|
|
303
310
|
rapidata/api_client/models/query_validation_rapids_result_asset.py,sha256=A8QsfT5dXwZ0LJYRL-Uwk3opcyVy21qOmIocNYZin1Q,7201
|
|
304
311
|
rapidata/api_client/models/query_validation_rapids_result_paged_result.py,sha256=Xe6rexVMSW9tWcO3w93tGmggpXN-lgPNqn9-lkWe_9o,3591
|
|
305
312
|
rapidata/api_client/models/query_validation_rapids_result_payload.py,sha256=FELmkIBU6aHLv0a283-RdELd4AGZVLKL6SIwYhftm_4,11854
|
|
@@ -404,8 +411,8 @@ rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrP
|
|
|
404
411
|
rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
|
|
405
412
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
406
413
|
rapidata/api_client/rest.py,sha256=Nnn1XE9sVUprPm_6AsUmetb_bd9dMjynDOob6y8NJNE,8775
|
|
407
|
-
rapidata/api_client_README.md,sha256=
|
|
408
|
-
rapidata/rapidata_client/__init__.py,sha256=
|
|
414
|
+
rapidata/api_client_README.md,sha256=WMuo7wBjQ5nVhYAt9kFrpdqa0Y7QU4rb5u3525g0dXU,54350
|
|
415
|
+
rapidata/rapidata_client/__init__.py,sha256=4Yg_2NvWhKusvcosuWzyrlJdjRnxXqNQUXDgyQrcNPQ,949
|
|
409
416
|
rapidata/rapidata_client/assets/__init__.py,sha256=hKgrOSn8gJcBSULaf4auYhH1S1N5AfcwIhBSq1BOKwQ,323
|
|
410
417
|
rapidata/rapidata_client/assets/_base_asset.py,sha256=B2YWH1NgaeYUYHDW3OPpHM_bqawHbH4EjnRCE2BYwiM,298
|
|
411
418
|
rapidata/rapidata_client/assets/_media_asset.py,sha256=9IKNKWarBJ-aAxfTjh80ScNsHlWGJnd55fsDbrf8x4s,10336
|
|
@@ -416,7 +423,7 @@ rapidata/rapidata_client/country_codes/__init__.py,sha256=FB9Dcks44J6C6YBSYmTmNZ
|
|
|
416
423
|
rapidata/rapidata_client/country_codes/country_codes.py,sha256=ePHqeb7y9DWQZAnddBzPx1puYBcrgUjdR2sbFijuFD8,283
|
|
417
424
|
rapidata/rapidata_client/demographic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
425
|
rapidata/rapidata_client/demographic/demographic_manager.py,sha256=XlgXngx-37Sow2B3jisVIWo6NrMWVI7aJqu9OwF9kCA,2143
|
|
419
|
-
rapidata/rapidata_client/filter/__init__.py,sha256=
|
|
426
|
+
rapidata/rapidata_client/filter/__init__.py,sha256=ttc63dWEQQwDRD8lirJgamjv_RLvc20IQydcqkHq1N4,416
|
|
420
427
|
rapidata/rapidata_client/filter/_base_filter.py,sha256=ytiSyeb9dvNZf93zwgb4PRDzf9ebsAu4wHBn4x49Re0,195
|
|
421
428
|
rapidata/rapidata_client/filter/age_filter.py,sha256=oRjGY65gE_X8oa0D0XRyvKAb4_Z6XOOaGTWykRSfLFA,739
|
|
422
429
|
rapidata/rapidata_client/filter/campaign_filter.py,sha256=6ZT11-gub8349QcRwuHt8AcBY18F7BdLRZ2Ch_vjLyU,735
|
|
@@ -427,7 +434,9 @@ rapidata/rapidata_client/filter/language_filter.py,sha256=reQHirEGXUBQaLwtEznK5O
|
|
|
427
434
|
rapidata/rapidata_client/filter/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
435
|
rapidata/rapidata_client/filter/models/age_group.py,sha256=9Lk_zvuGqJZNij_CLFNLwE07piUaDrZMyAXzFAk6FKc,1203
|
|
429
436
|
rapidata/rapidata_client/filter/models/gender.py,sha256=aXg6Kql2BIy8d5d1lCVi1axMWnyN1FFgPDU6fh2hYUM,627
|
|
430
|
-
rapidata/rapidata_client/filter/
|
|
437
|
+
rapidata/rapidata_client/filter/not_filter.py,sha256=I7crEyOCs53uS0VI48s9EqC6PAFfV9EZG3upwFBJwZo,1189
|
|
438
|
+
rapidata/rapidata_client/filter/or_filter.py,sha256=u6vkXMTG_j15SbY3bkbnXbxJMDgEsH5rdoFLbuoLQmo,1345
|
|
439
|
+
rapidata/rapidata_client/filter/rapidata_filters.py,sha256=ZOayFtIlACfegZSoA94YFZ-fJmqr5Pf161Z_IjiZWPg,1559
|
|
431
440
|
rapidata/rapidata_client/filter/user_score_filter.py,sha256=2C78zkWm5TnfkxGbV1ER2xB7s9ynpacaibzyRZKG8Cc,1566
|
|
432
441
|
rapidata/rapidata_client/metadata/__init__.py,sha256=cVAGs3F1i5BiimZ9m-aVXAiVyfqLMtSn59nqfRFmIxs,248
|
|
433
442
|
rapidata/rapidata_client/metadata/_base_metadata.py,sha256=t2kFqaz5BkEaYYj93Pw3h7zWVDq_S5ZkDxjDIRd21_I,189
|
|
@@ -490,7 +499,7 @@ rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,
|
|
|
490
499
|
rapidata/service/credential_manager.py,sha256=3x-Fb6tyqmgtpjI1MSOtXWW_SkzTK8Lo7I0SSL2YD7E,8602
|
|
491
500
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
492
501
|
rapidata/service/openapi_service.py,sha256=ORFPfHlb41zOUP5nDjYWZwO-ZcqNF_Mw2r71RitFtS0,4042
|
|
493
|
-
rapidata-2.
|
|
494
|
-
rapidata-2.
|
|
495
|
-
rapidata-2.
|
|
496
|
-
rapidata-2.
|
|
502
|
+
rapidata-2.19.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
503
|
+
rapidata-2.19.0.dist-info/METADATA,sha256=5jh6Ya8uSIBWwvubjl4f_m5jjjiedvV5LRWOir2g8EA,1187
|
|
504
|
+
rapidata-2.19.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
505
|
+
rapidata-2.19.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|