cognite-toolkit 0.7.9__py3-none-any.whl → 0.7.11__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.
- cognite_toolkit/_cdf_tk/commands/_purge.py +27 -28
- cognite_toolkit/_cdf_tk/commands/_upload.py +6 -2
- cognite_toolkit/_cdf_tk/commands/clean.py +11 -13
- cognite_toolkit/_cdf_tk/commands/deploy.py +9 -17
- cognite_toolkit/_cdf_tk/commands/dump_resource.py +6 -4
- cognite_toolkit/_cdf_tk/commands/pull.py +6 -19
- cognite_toolkit/_cdf_tk/cruds/_base_cruds.py +7 -25
- cognite_toolkit/_cdf_tk/cruds/_data_cruds.py +3 -6
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/agent.py +4 -6
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/auth.py +4 -12
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/classic.py +19 -36
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/configuration.py +4 -10
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/data_organization.py +4 -12
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/datamodel.py +16 -41
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/extraction_pipeline.py +5 -15
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py +8 -21
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/file.py +6 -22
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/function.py +5 -15
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/hosted_extractors.py +12 -26
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/industrial_tool.py +3 -6
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py +3 -14
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/migration.py +4 -8
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/raw.py +4 -8
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/relationship.py +3 -6
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/robotics.py +15 -34
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/streams.py +2 -5
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/three_d_model.py +3 -6
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/timeseries.py +5 -13
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/transformation.py +4 -19
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/workflow.py +20 -37
- cognite_toolkit/_cdf_tk/cruds/_worker.py +13 -30
- cognite_toolkit/_cdf_tk/storageio/__init__.py +3 -3
- cognite_toolkit/_cdf_tk/storageio/_base.py +23 -0
- cognite_toolkit/_cdf_tk/storageio/_file_content.py +4 -0
- cognite_toolkit/_cdf_tk/storageio/selectors/_datapoints.py +1 -1
- cognite_toolkit/_cdf_tk/utils/fileio/_readers.py +42 -1
- cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml +1 -1
- cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml +1 -1
- cognite_toolkit/_resources/cdf.toml +1 -1
- cognite_toolkit/_version.py +1 -1
- {cognite_toolkit-0.7.9.dist-info → cognite_toolkit-0.7.11.dist-info}/METADATA +1 -1
- {cognite_toolkit-0.7.9.dist-info → cognite_toolkit-0.7.11.dist-info}/RECORD +45 -45
- {cognite_toolkit-0.7.9.dist-info → cognite_toolkit-0.7.11.dist-info}/WHEEL +0 -0
- {cognite_toolkit-0.7.9.dist-info → cognite_toolkit-0.7.11.dist-info}/entry_points.txt +0 -0
- {cognite_toolkit-0.7.9.dist-info → cognite_toolkit-0.7.11.dist-info}/licenses/LICENSE +0 -0
|
@@ -218,12 +218,35 @@ class UploadableStorageIO(
|
|
|
218
218
|
def read_chunks(
|
|
219
219
|
cls, reader: MultiFileReader, selector: T_Selector
|
|
220
220
|
) -> Iterable[list[tuple[str, dict[str, JsonVal]]]]:
|
|
221
|
+
"""Read data from a MultiFileReader in chunks.
|
|
222
|
+
|
|
223
|
+
This method yields chunks of data, where each chunk is a list of tuples. Each tuple contains a source ID
|
|
224
|
+
(e.g., line number or row identifier) and a dictionary representing the data in a JSON-compatible format.
|
|
225
|
+
|
|
226
|
+
This method can be overridden by subclasses to customize how data is read and chunked.
|
|
227
|
+
Args:
|
|
228
|
+
reader: An instance of MultiFileReader to read data from.
|
|
229
|
+
selector: The selection criteria to identify the data.
|
|
230
|
+
"""
|
|
221
231
|
data_name = "row" if reader.is_table else "line"
|
|
222
232
|
# Include name of line for better error messages
|
|
223
233
|
iterable = ((f"{data_name} {line_no}", item) for line_no, item in reader.read_chunks_with_line_numbers())
|
|
224
234
|
|
|
225
235
|
yield from chunker(iterable, cls.CHUNK_SIZE)
|
|
226
236
|
|
|
237
|
+
@classmethod
|
|
238
|
+
def count_chunks(cls, reader: MultiFileReader) -> int:
|
|
239
|
+
"""Count the number of items in a MultiFileReader.
|
|
240
|
+
|
|
241
|
+
This method can be overridden by subclasses to customize how items are counted.
|
|
242
|
+
|
|
243
|
+
Args:
|
|
244
|
+
reader: An instance of MultiFileReader to count items from.
|
|
245
|
+
Returns:
|
|
246
|
+
The number of items in the reader.
|
|
247
|
+
"""
|
|
248
|
+
return reader.count()
|
|
249
|
+
|
|
227
250
|
|
|
228
251
|
class TableUploadableStorageIO(UploadableStorageIO[T_Selector, T_ResourceResponse, T_ResourceRequest], ABC):
|
|
229
252
|
"""A base class for storage items that support uploading data with table schemas."""
|
|
@@ -250,3 +250,7 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, FileMetadata, FileM
|
|
|
250
250
|
metadata[FILEPATH] = file_path
|
|
251
251
|
batch.append((str(file_path), metadata))
|
|
252
252
|
yield batch
|
|
253
|
+
|
|
254
|
+
@classmethod
|
|
255
|
+
def count_chunks(cls, reader: MultiFileReader) -> int:
|
|
256
|
+
return len(reader.input_files)
|
|
@@ -52,7 +52,7 @@ TimeSeriesColumn = Annotated[
|
|
|
52
52
|
|
|
53
53
|
class DataPointsFileSelector(DataSelector):
|
|
54
54
|
type: Literal["datapointsFile"] = "datapointsFile"
|
|
55
|
-
kind: Literal["
|
|
55
|
+
kind: Literal["Datapoints"] = "Datapoints"
|
|
56
56
|
|
|
57
57
|
timestamp_column: str
|
|
58
58
|
columns: tuple[TimeSeriesColumn, ...]
|
|
@@ -38,7 +38,7 @@ class FileReader(FileIO, ABC):
|
|
|
38
38
|
@abstractmethod
|
|
39
39
|
def _read_chunks_from_file(self, file: TextIOWrapper) -> Iterator[dict[str, JsonVal]]:
|
|
40
40
|
"""Read chunks from the file."""
|
|
41
|
-
|
|
41
|
+
...
|
|
42
42
|
|
|
43
43
|
@classmethod
|
|
44
44
|
def from_filepath(cls, filepath: Path) -> "type[FileReader]":
|
|
@@ -62,6 +62,11 @@ class FileReader(FileIO, ABC):
|
|
|
62
62
|
f"Unknown file format: {suffix}. Available formats: {humanize_collection(FILE_READ_CLS_BY_FORMAT.keys())}."
|
|
63
63
|
)
|
|
64
64
|
|
|
65
|
+
@abstractmethod
|
|
66
|
+
def count(self) -> int:
|
|
67
|
+
"""Count the number of chunks in the file."""
|
|
68
|
+
...
|
|
69
|
+
|
|
65
70
|
|
|
66
71
|
class MultiFileReader(FileReader):
|
|
67
72
|
"""Reads multiple files and yields chunks from each file sequentially.
|
|
@@ -112,6 +117,14 @@ class MultiFileReader(FileReader):
|
|
|
112
117
|
def _read_chunks_from_file(self, file: TextIOWrapper) -> Iterator[dict[str, JsonVal]]:
|
|
113
118
|
raise NotImplementedError("This method is not used in MultiFileReader.")
|
|
114
119
|
|
|
120
|
+
def count(self) -> int:
|
|
121
|
+
"""Count the total number of chunks in all files."""
|
|
122
|
+
total_count = 0
|
|
123
|
+
for input_file in self.input_files:
|
|
124
|
+
reader = self.reader_class(input_file)
|
|
125
|
+
total_count += reader.count()
|
|
126
|
+
return total_count
|
|
127
|
+
|
|
115
128
|
|
|
116
129
|
class NDJsonReader(FileReader):
|
|
117
130
|
FORMAT = ".ndjson"
|
|
@@ -121,11 +134,25 @@ class NDJsonReader(FileReader):
|
|
|
121
134
|
if stripped := line.strip():
|
|
122
135
|
yield json.loads(stripped)
|
|
123
136
|
|
|
137
|
+
def count(self) -> int:
|
|
138
|
+
"""Count the number of lines (chunks) in the NDJSON file."""
|
|
139
|
+
compression = Compression.from_filepath(self.input_file)
|
|
140
|
+
with compression.open("r") as file:
|
|
141
|
+
line_count = sum(1 for line in file if line.strip())
|
|
142
|
+
return line_count
|
|
143
|
+
|
|
124
144
|
|
|
125
145
|
class YAMLBaseReader(FileReader, ABC):
|
|
126
146
|
def _read_chunks_from_file(self, file: TextIOWrapper) -> Iterator[dict[str, JsonVal]]:
|
|
127
147
|
yield from yaml.safe_load_all(file)
|
|
128
148
|
|
|
149
|
+
def count(self) -> int:
|
|
150
|
+
"""Count the number of documents (chunks) in the YAML file."""
|
|
151
|
+
compression = Compression.from_filepath(self.input_file)
|
|
152
|
+
with compression.open("r") as file:
|
|
153
|
+
doc_count = sum(1 for _ in yaml.safe_load_all(file))
|
|
154
|
+
return doc_count
|
|
155
|
+
|
|
129
156
|
|
|
130
157
|
class YAMLReader(YAMLBaseReader):
|
|
131
158
|
FORMAT = ".yaml"
|
|
@@ -306,6 +333,13 @@ class CSVReader(TableReader):
|
|
|
306
333
|
raise ToolkitValueError(f"No data found in the file: {input_file.as_posix()!r}.")
|
|
307
334
|
return column_names, sample_rows
|
|
308
335
|
|
|
336
|
+
def count(self) -> int:
|
|
337
|
+
"""Count the number of rows in the CSV file."""
|
|
338
|
+
compression = Compression.from_filepath(self.input_file)
|
|
339
|
+
with compression.open("r") as file:
|
|
340
|
+
line_count = sum(1 for _ in file) - 1 # Subtract 1 for header
|
|
341
|
+
return line_count
|
|
342
|
+
|
|
309
343
|
|
|
310
344
|
class ParquetReader(TableReader):
|
|
311
345
|
FORMAT = ".parquet"
|
|
@@ -359,6 +393,13 @@ class ParquetReader(TableReader):
|
|
|
359
393
|
raise ToolkitValueError(f"No data found in the file: {input_file.as_posix()!r}.")
|
|
360
394
|
return column_names, sample_rows
|
|
361
395
|
|
|
396
|
+
def count(self) -> int:
|
|
397
|
+
"""Count the number of rows in the Parquet file."""
|
|
398
|
+
import pyarrow.parquet as pq
|
|
399
|
+
|
|
400
|
+
with pq.ParquetFile(self.input_file) as parquet_file:
|
|
401
|
+
return parquet_file.metadata.num_rows
|
|
402
|
+
|
|
362
403
|
|
|
363
404
|
FILE_READ_CLS_BY_FORMAT: Mapping[str, type[FileReader]] = {}
|
|
364
405
|
TABLE_READ_CLS_BY_FORMAT: Mapping[str, type[TableReader]] = {}
|
cognite_toolkit/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.7.
|
|
1
|
+
__version__ = "0.7.11"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cognite_toolkit
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.11
|
|
4
4
|
Summary: Official Cognite Data Fusion tool for project templates and configuration deployment
|
|
5
5
|
Project-URL: Homepage, https://docs.cognite.com/cdf/deploy/cdf_toolkit/
|
|
6
6
|
Project-URL: Changelog, https://github.com/cognitedata/toolkit/releases
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cognite_toolkit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
cognite_toolkit/_cdf.py,sha256=PzDig6dgbDX5VL88AeijQuTeYb2SS_yvenw9gr4fnxY,5794
|
|
3
|
-
cognite_toolkit/_version.py,sha256=
|
|
3
|
+
cognite_toolkit/_version.py,sha256=wcKNUm4uZK839U_xaeQFOEaUVqbjHp-EU_6MMaml4qk,23
|
|
4
4
|
cognite_toolkit/_cdf_tk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
cognite_toolkit/_cdf_tk/cdf_toml.py,sha256=VSWV9h44HusWIaKpWgjrOMrc3hDoPTTXBXlp6-NOrIM,9079
|
|
6
6
|
cognite_toolkit/_cdf_tk/constants.py,sha256=TplKm2J9pGRHq7nAnLI0caTMHetS04OIz3hfq-jvGzo,7236
|
|
@@ -108,21 +108,21 @@ cognite_toolkit/_cdf_tk/commands/_changes.py,sha256=sU0KaTtPVSJgAZcaZ1Tkcajj36pm
|
|
|
108
108
|
cognite_toolkit/_cdf_tk/commands/_cli_commands.py,sha256=TK6U_rm6VZT_V941kTyHMoulWgJzbDC8YIIQDPJ5x3w,1011
|
|
109
109
|
cognite_toolkit/_cdf_tk/commands/_download.py,sha256=gOUjsu-YaiIyKGd5kZDW-1lsgY7sQwGxg2Pwk6TlWdY,6823
|
|
110
110
|
cognite_toolkit/_cdf_tk/commands/_profile.py,sha256=_4iX3AHAI6eLmRVUlWXCSvVHx1BZW2yDr_i2i9ECg6U,43120
|
|
111
|
-
cognite_toolkit/_cdf_tk/commands/_purge.py,sha256=
|
|
111
|
+
cognite_toolkit/_cdf_tk/commands/_purge.py,sha256=HqN2T0OrHG53BfQrolYLi0kFa-_KuJjbZldFtQdMdnY,32914
|
|
112
112
|
cognite_toolkit/_cdf_tk/commands/_questionary_style.py,sha256=h-w7fZKkGls3TrzIGBKjsZSGoXJJIYchgD1StfA40r8,806
|
|
113
|
-
cognite_toolkit/_cdf_tk/commands/_upload.py,sha256=
|
|
113
|
+
cognite_toolkit/_cdf_tk/commands/_upload.py,sha256=jFt4NG2zEcUu8WUCgRQEoYDIs5C70VTVvTKkZ0F5j1A,13534
|
|
114
114
|
cognite_toolkit/_cdf_tk/commands/_utils.py,sha256=UxMJW5QYKts4om5n6x2Tq2ihvfO9gWjhQKeqZNFTlKg,402
|
|
115
115
|
cognite_toolkit/_cdf_tk/commands/_virtual_env.py,sha256=GFAid4hplixmj9_HkcXqU5yCLj-fTXm4cloGD6U2swY,2180
|
|
116
116
|
cognite_toolkit/_cdf_tk/commands/auth.py,sha256=TD6X3CKFNhDHoIv2b2uI2nKBHgQljLntp9vZffdA-jc,31384
|
|
117
117
|
cognite_toolkit/_cdf_tk/commands/build_cmd.py,sha256=6m-lK0vccje1gaQ_fd68UvA4CbhuBszDapnHwu4VU_U,30897
|
|
118
|
-
cognite_toolkit/_cdf_tk/commands/clean.py,sha256=
|
|
118
|
+
cognite_toolkit/_cdf_tk/commands/clean.py,sha256=JNPIjNSiOJaP-cUhFzT8H3s30luA9lI39yH18QxHaYM,16603
|
|
119
119
|
cognite_toolkit/_cdf_tk/commands/collect.py,sha256=zBMKhhvjOpuASMnwP0eeHRI02tANcvFEZgv0CQO1ECc,627
|
|
120
|
-
cognite_toolkit/_cdf_tk/commands/deploy.py,sha256=
|
|
121
|
-
cognite_toolkit/_cdf_tk/commands/dump_resource.py,sha256=
|
|
120
|
+
cognite_toolkit/_cdf_tk/commands/deploy.py,sha256=DpA6q0f17qCpsrYUywavvaRjJ-qaIm78ukw8kIfCNbg,23262
|
|
121
|
+
cognite_toolkit/_cdf_tk/commands/dump_resource.py,sha256=C9lqBT3MKgFyrcjS-4_6xXEOVBk8uJf65I4S30faXyE,39786
|
|
122
122
|
cognite_toolkit/_cdf_tk/commands/featureflag.py,sha256=lgLMwuNIwFjvvKn1sNMunkq4VTwdNqXtrZfdGFTrNcI,968
|
|
123
123
|
cognite_toolkit/_cdf_tk/commands/init.py,sha256=pcxFhZheXm3FPU1pkeh10M0WXPg7EcLFUgJlrE817tE,9257
|
|
124
124
|
cognite_toolkit/_cdf_tk/commands/modules.py,sha256=91Fov16fEIVk-3ZmBd3MlibbbzRuYLjUY9CUnudV4w0,40976
|
|
125
|
-
cognite_toolkit/_cdf_tk/commands/pull.py,sha256=
|
|
125
|
+
cognite_toolkit/_cdf_tk/commands/pull.py,sha256=3dU-jQj40laL1eURukMwvr1clJz5MZ1ppz0aatGBgso,38944
|
|
126
126
|
cognite_toolkit/_cdf_tk/commands/repo.py,sha256=MNy8MWphTklIZHvQOROCweq8_SYxGv6BaqnLpkFFnuk,3845
|
|
127
127
|
cognite_toolkit/_cdf_tk/commands/resources.py,sha256=NeHVA1b1TMsP-2wgd5u1vif_N6nln7ePxZ0BXypwt-k,7377
|
|
128
128
|
cognite_toolkit/_cdf_tk/commands/run.py,sha256=JyX9jLEQej9eRrHVCCNlw4GuF80qETSol3-T5CCofgw,37331
|
|
@@ -140,33 +140,33 @@ cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py,sha256=wrdBH5P6NgiZQSY
|
|
|
140
140
|
cognite_toolkit/_cdf_tk/commands/_migrate/prepare.py,sha256=RfqaNoso5CyBwc-p6ckwcYqBfZXKhdJgdGIyd0TATaI,2635
|
|
141
141
|
cognite_toolkit/_cdf_tk/commands/_migrate/selectors.py,sha256=N1H_-rBpPUD6pbrlcofn1uEK1bA694EUXEe1zIXeqyo,2489
|
|
142
142
|
cognite_toolkit/_cdf_tk/cruds/__init__.py,sha256=Qxb_Vjv6maJePvO7hunUAtUqXIXW3vi1-hLoWQVs__4,6551
|
|
143
|
-
cognite_toolkit/_cdf_tk/cruds/_base_cruds.py,sha256=
|
|
144
|
-
cognite_toolkit/_cdf_tk/cruds/_data_cruds.py,sha256=
|
|
145
|
-
cognite_toolkit/_cdf_tk/cruds/_worker.py,sha256=
|
|
143
|
+
cognite_toolkit/_cdf_tk/cruds/_base_cruds.py,sha256=w8Qt00_AF1cM47ttBD96CTi9h5iM7QHFpGEEPKZGnnI,18663
|
|
144
|
+
cognite_toolkit/_cdf_tk/cruds/_data_cruds.py,sha256=4inL7ACmIQs3i9rVOqKG4uOnp3Ywhwg_Fmrm_9hWpyI,8890
|
|
145
|
+
cognite_toolkit/_cdf_tk/cruds/_worker.py,sha256=3UABlgb_LhM4dXpuruuxsVzvJuKvCPqgEugNuqSvqJQ,9054
|
|
146
146
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/__init__.py,sha256=gSbQHXTgbkguEc2kFckgt13JVO5GXol_JXT2LW4T5o0,2879
|
|
147
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/agent.py,sha256=
|
|
148
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/auth.py,sha256=
|
|
149
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/classic.py,sha256=
|
|
150
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/configuration.py,sha256
|
|
151
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/data_organization.py,sha256=
|
|
152
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/datamodel.py,sha256=
|
|
153
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/extraction_pipeline.py,sha256=
|
|
154
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py,sha256=
|
|
155
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/file.py,sha256=
|
|
156
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/function.py,sha256=
|
|
147
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/agent.py,sha256=2UjX0m85fw_zt4EpCm5Ihz2gE1AlgOgR8-7Pr8M2c4g,5128
|
|
148
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/auth.py,sha256=mswG-Fp_nfgociGTJ_aIG18we2nFNurcyObPxD9WKlA,24540
|
|
149
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/classic.py,sha256=r9yY02GS3VEDgf85DCBrt06t4kM0o6uGqUmQm_NdQuw,25661
|
|
150
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/configuration.py,sha256=plVGY-hvT01XC96C6hrabL07NaLphNWUq2iNI3m2Oyw,5811
|
|
151
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/data_organization.py,sha256=U0ItuoNr1KEtoFQAiIe-K19_72ht9-kGndFVgF-iC10,9524
|
|
152
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/datamodel.py,sha256=SagiSp3JERgEU3SnkjQ76vrxSM7gRA17lvoh0BW4KeQ,64867
|
|
153
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/extraction_pipeline.py,sha256=a2HywkruYNJGLZxqOjlp8mrpRGtJDPqIb6qY00eUbEI,17701
|
|
154
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py,sha256=o-ugb5WO4DKg3fV_2DValAdjmZGJWyk8hfR55Lmx7WU,16303
|
|
155
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/file.py,sha256=vyeRsiIOEbUeYslBsgXoyCk5hozDsubUilA7bdjqS5c,14855
|
|
156
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/function.py,sha256=v3kjn3igwTF53LJ6pp0O8d4S1XFJ1eXQGCchWAcaAx0,28439
|
|
157
157
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/group_scoped.py,sha256=WEg8-CxMP64WfE_XXIlH114zM51K0uLaYa4atd992zI,1690
|
|
158
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/hosted_extractors.py,sha256=
|
|
159
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/industrial_tool.py,sha256=
|
|
160
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py,sha256
|
|
161
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/migration.py,sha256=
|
|
162
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/raw.py,sha256=
|
|
163
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/relationship.py,sha256=
|
|
164
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/robotics.py,sha256=
|
|
165
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/streams.py,sha256=
|
|
166
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/three_d_model.py,sha256=
|
|
167
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/timeseries.py,sha256=
|
|
168
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/transformation.py,sha256=
|
|
169
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/workflow.py,sha256=
|
|
158
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/hosted_extractors.py,sha256=P0hlXK0_FmO86U-gDHMHz8N0vpDtPoKupiQfhNP5KLE,14619
|
|
159
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/industrial_tool.py,sha256=QrgSCcLN0NtpQuP7zcCUYaWoiq3JiUB2j0A15d8MNNc,7856
|
|
160
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py,sha256=-FDfZ-iPsWh_65HCze8M3-5Ijo3sr_n-AT-6FENSjpk,12076
|
|
161
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/migration.py,sha256=v_aQbZwUZXBAj7AjK22f-7mbcKNdB5FBlyTQiLaCPAw,4499
|
|
162
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/raw.py,sha256=rKTmIYD2_nm7LeIBa10iMZreNvw00OuQu-wC0gyiGQg,12072
|
|
163
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/relationship.py,sha256=G_pUKvIpdF54SqDQsCLYcWGM6twZJ_JA-xeFAYCgtdk,6194
|
|
164
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/robotics.py,sha256=IeDks5yJFta8Tp4SmikWjVxn0kyeCv44Pf3Jw9y5zQc,16074
|
|
165
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/streams.py,sha256=N-6YgllJbv7XudzkOAUpPktLsnFlCFU6fzabV9oX3N0,3097
|
|
166
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/three_d_model.py,sha256=5jIRF2JqosVHyAi2Ek6H38K2FWcNqrbPOR6MTSIEAQI,7320
|
|
167
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/timeseries.py,sha256=rMkA78K9CZqUu7YBDiLgnaZgPcIsWdT-J3nB4xwCJWw,23032
|
|
168
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/transformation.py,sha256=ndhoGIC6tBjNmwI0wDfg8v_6dJfCnHUnTienYOtKwC8,33876
|
|
169
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/workflow.py,sha256=dVkf7OpZHV2H7V3zRU4BzUqDxgAudiWBJPvGeydATCg,26035
|
|
170
170
|
cognite_toolkit/_cdf_tk/data_classes/__init__.py,sha256=4zL-zR3lgQTCWfcy28LK0HEcukQOndPEFXVqfYfdKHU,1720
|
|
171
171
|
cognite_toolkit/_cdf_tk/data_classes/_base.py,sha256=0jy9VrYIO6iRgOZIcRASv-xIQjU3QbMICffEEIqzx6A,2673
|
|
172
172
|
cognite_toolkit/_cdf_tk/data_classes/_build_files.py,sha256=ARZpzcpmcbtG5Jg391d7A-7MJCFeUqqiDfJlO14cvvI,953
|
|
@@ -240,14 +240,14 @@ cognite_toolkit/_cdf_tk/resource_classes/robotics/data_postprocessing.py,sha256=
|
|
|
240
240
|
cognite_toolkit/_cdf_tk/resource_classes/robotics/frame.py,sha256=XmDqJ0pAxe_vAP0Dhktba1f9o2zg_ORCJ3Hz8cyJMrk,899
|
|
241
241
|
cognite_toolkit/_cdf_tk/resource_classes/robotics/location.py,sha256=dbc9HT-bc2Qt15hHoR63SM7pg321BhNuTNjI7HHCwSA,468
|
|
242
242
|
cognite_toolkit/_cdf_tk/resource_classes/robotics/map.py,sha256=j77z7CzCMiMj8r94BdUKCum9EuZRUjaSlUAy9K9DL_Q,942
|
|
243
|
-
cognite_toolkit/_cdf_tk/storageio/__init__.py,sha256=
|
|
243
|
+
cognite_toolkit/_cdf_tk/storageio/__init__.py,sha256=h5Wr4i7zNIgsslrsRJxmp7ls4bNRKl0uZzQ7GLRMP7g,1920
|
|
244
244
|
cognite_toolkit/_cdf_tk/storageio/_annotations.py,sha256=JI_g18_Y9S7pbc9gm6dZMyo3Z-bCndJXF9C2lOva0bQ,4848
|
|
245
245
|
cognite_toolkit/_cdf_tk/storageio/_applications.py,sha256=vena8BW7erki6i-hGdcdiOmDbMU3P9M_Kn_5dPG6Yzw,16084
|
|
246
246
|
cognite_toolkit/_cdf_tk/storageio/_asset_centric.py,sha256=GZZSQ8NLCP8tSQKOc8BUb2NCZAvw_BoCVcA1Og7vnIs,30821
|
|
247
|
-
cognite_toolkit/_cdf_tk/storageio/_base.py,sha256=
|
|
247
|
+
cognite_toolkit/_cdf_tk/storageio/_base.py,sha256=ElvqhIEBnhcz0yY1Ds164wVN0_7CFNK-uT0-z7LcR9U,13067
|
|
248
248
|
cognite_toolkit/_cdf_tk/storageio/_data_classes.py,sha256=s3TH04BJ1q7rXndRhEbVMEnoOXjxrGg4n-w9Z5uUL-o,3480
|
|
249
249
|
cognite_toolkit/_cdf_tk/storageio/_datapoints.py,sha256=AGTQm9CBRbu1oXbBh0X7UGzFrHnlWZExqNvAohT0hM0,8641
|
|
250
|
-
cognite_toolkit/_cdf_tk/storageio/_file_content.py,sha256=
|
|
250
|
+
cognite_toolkit/_cdf_tk/storageio/_file_content.py,sha256=ufuQ-ZTxQrLVaKtJhe7WGMD3CTgJRRA2tQZ-UkbRLnw,11000
|
|
251
251
|
cognite_toolkit/_cdf_tk/storageio/_instances.py,sha256=t9fNpHnT6kCk8LDoPj3qZXmHpyDbPF5BZ6pI8ziTyFw,10810
|
|
252
252
|
cognite_toolkit/_cdf_tk/storageio/_raw.py,sha256=pgZN5MbqDwMZl9Ow1KouDJUO2Ngga8_b6hwv7H31SVQ,5161
|
|
253
253
|
cognite_toolkit/_cdf_tk/storageio/selectors/__init__.py,sha256=ELUCirQmhDR52PVIhLRd_2M1DWYURwL44U6WiN9_hEA,2225
|
|
@@ -255,7 +255,7 @@ cognite_toolkit/_cdf_tk/storageio/selectors/_asset_centric.py,sha256=7Iv_ccVX6Vz
|
|
|
255
255
|
cognite_toolkit/_cdf_tk/storageio/selectors/_base.py,sha256=hjFkbmNGsK3QIW-jnJV_8YNmvVROERxzG82qIZhU7SM,3065
|
|
256
256
|
cognite_toolkit/_cdf_tk/storageio/selectors/_canvas.py,sha256=E9S-wr-JUqRosI_2cSCfR0tF8MdIFTrMxDItuWRcuO4,597
|
|
257
257
|
cognite_toolkit/_cdf_tk/storageio/selectors/_charts.py,sha256=lQHuNtF3i6SEIMPAlziMm0QlqRcvZJ7MKIug6HMTDrs,1012
|
|
258
|
-
cognite_toolkit/_cdf_tk/storageio/selectors/_datapoints.py,sha256=
|
|
258
|
+
cognite_toolkit/_cdf_tk/storageio/selectors/_datapoints.py,sha256=tMdSa-xj_Mf94SwGE8E1I4l_UpioK9OvE8vA8SbBeqY,1719
|
|
259
259
|
cognite_toolkit/_cdf_tk/storageio/selectors/_file_content.py,sha256=J_lP04QsvqCOIiw_u2rGMqIa_7obIxCaFkC70ukUjpI,3628
|
|
260
260
|
cognite_toolkit/_cdf_tk/storageio/selectors/_instances.py,sha256=NCFSJrAw52bNX6UTfOali8PvNjlqHnvxzL0hYBr7ZmA,4934
|
|
261
261
|
cognite_toolkit/_cdf_tk/storageio/selectors/_raw.py,sha256=sZq9C4G9DMe3S46_usKet0FphQ6ow7cWM_PfXrEAakk,503
|
|
@@ -291,7 +291,7 @@ cognite_toolkit/_cdf_tk/utils/validate_access.py,sha256=1puswcpgEDNCwdk91dhLqCBS
|
|
|
291
291
|
cognite_toolkit/_cdf_tk/utils/fileio/__init__.py,sha256=0rJsL3jClj_smxh_Omqchf0K9xTi1DlKgmCDjBqJ38I,1243
|
|
292
292
|
cognite_toolkit/_cdf_tk/utils/fileio/_base.py,sha256=eC6mRIwSD4LjyFa83BoBnhO0t3l-ctQMW295LIyxXLk,827
|
|
293
293
|
cognite_toolkit/_cdf_tk/utils/fileio/_compression.py,sha256=8BAPgg5OKc3vkEEkqOvYsuyh12iXVNuEmC0omWwyJNQ,2355
|
|
294
|
-
cognite_toolkit/_cdf_tk/utils/fileio/_readers.py,sha256=
|
|
294
|
+
cognite_toolkit/_cdf_tk/utils/fileio/_readers.py,sha256=IjOSHyW0GiID_lKdgAwQZao9acnn6uF9pKWTcd7whGU,17263
|
|
295
295
|
cognite_toolkit/_cdf_tk/utils/fileio/_writers.py,sha256=mc23m0kJgl57FUDvwLmS7yR3xVZWQguPJa_63-qQ_L0,17731
|
|
296
296
|
cognite_toolkit/_cdf_tk/utils/http_client/__init__.py,sha256=G8b7Bg4yIet5R4Igh3dS2SntWzE6I0iTGBeNlNsSxkQ,857
|
|
297
297
|
cognite_toolkit/_cdf_tk/utils/http_client/_client.py,sha256=NTRfloXkCiS_rl5Vl1D_hsyTTowMKWDsiIR4oGwTADI,11208
|
|
@@ -303,13 +303,13 @@ cognite_toolkit/_repo_files/.gitignore,sha256=ip9kf9tcC5OguF4YF4JFEApnKYw0nG0vPi
|
|
|
303
303
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/README.md,sha256=OLA0D7yCX2tACpzvkA0IfkgQ4_swSd-OlJ1tYcTBpsA,240
|
|
304
304
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/deploy-pipeline.yml,sha256=brULcs8joAeBC_w_aoWjDDUHs3JheLMIR9ajPUK96nc,693
|
|
305
305
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/dry-run-pipeline.yml,sha256=OBFDhFWK1mlT4Dc6mDUE2Es834l8sAlYG50-5RxRtHk,723
|
|
306
|
-
cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=
|
|
307
|
-
cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=
|
|
308
|
-
cognite_toolkit/_resources/cdf.toml,sha256=
|
|
306
|
+
cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=mpx6YFBvI4pcHFunI3NNW6aOA-jmJMSQyxptev0R-jw,667
|
|
307
|
+
cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=CZvp6XBuvkqVs2Q87XD5xuRdVc8BlColbo8mP-fiuD4,2430
|
|
308
|
+
cognite_toolkit/_resources/cdf.toml,sha256=i9P-3gDGeUA8gSpwz_ZxtB_Lj1uJUmZKbyOWNb8P2_4,475
|
|
309
309
|
cognite_toolkit/demo/__init__.py,sha256=-m1JoUiwRhNCL18eJ6t7fZOL7RPfowhCuqhYFtLgrss,72
|
|
310
310
|
cognite_toolkit/demo/_base.py,sha256=6xKBUQpXZXGQ3fJ5f7nj7oT0s2n7OTAGIa17ZlKHZ5U,8052
|
|
311
|
-
cognite_toolkit-0.7.
|
|
312
|
-
cognite_toolkit-0.7.
|
|
313
|
-
cognite_toolkit-0.7.
|
|
314
|
-
cognite_toolkit-0.7.
|
|
315
|
-
cognite_toolkit-0.7.
|
|
311
|
+
cognite_toolkit-0.7.11.dist-info/METADATA,sha256=ZYoAB36exzGiBlVpxKPMXIdtCaAp4gjrR2amqxpFYuw,4501
|
|
312
|
+
cognite_toolkit-0.7.11.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
313
|
+
cognite_toolkit-0.7.11.dist-info/entry_points.txt,sha256=JlR7MH1_UMogC3QOyN4-1l36VbrCX9xUdQoHGkuJ6-4,83
|
|
314
|
+
cognite_toolkit-0.7.11.dist-info/licenses/LICENSE,sha256=CW0DRcx5tL-pCxLEN7ts2S9g2sLRAsWgHVEX4SN9_Mc,752
|
|
315
|
+
cognite_toolkit-0.7.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|