osducli 0.0.49__py3-none-any.whl → 0.0.51__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.
osducli/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.49
1
+ 0.0.51
@@ -32,14 +32,15 @@ from osducli.cliclient import CliOsduClient, handle_cli_exceptions
32
32
  show_default=True,
33
33
  help="maximum number of records to return.",
34
34
  )
35
+ @click.option("-a", "--aggregate", "_aggr", help="Aggregate by element", required=False)
35
36
  @handle_cli_exceptions
36
37
  @command_with_output("results[*].{Id:id,Kind:kind,CreateTime:createTime}")
37
- def _click_command(state: State, kind: str, _id: str, _query: str, limit: int):
38
+ def _click_command(state: State, kind: str, _id: str, _query: str, limit: int, _aggr: str):
38
39
  """Search using more advanced query terms"""
39
- return query(state, kind, _id, _query, limit)
40
+ return query(state, kind, _id, _query, limit, _aggr)
40
41
 
41
42
 
42
- def query(state: State, kind: str, identifier: str, custom_query: str, limit: int):
43
+ def query(state: State, kind: str, identifier: str, custom_query: str, limit: int, aggregate: str = None):
43
44
  """Query search service
44
45
 
45
46
  Args:
@@ -48,6 +49,7 @@ def query(state: State, kind: str, identifier: str, custom_query: str, limit: in
48
49
  identifier (str): id to search for
49
50
  custom_query (str): custom search query
50
51
  limit (int): maximum number of records to return.
52
+ aggregate (str): aggregate by element
51
53
  """
52
54
  client = CliOsduClient(state.config)
53
55
  search_client = client.get_search_client()
@@ -59,7 +61,7 @@ def query(state: State, kind: str, identifier: str, custom_query: str, limit: in
59
61
  kind = "*:*:*:*"
60
62
 
61
63
  query_val = f'id:("{identifier}")' if identifier is not None else custom_query
62
- request_data = QueryRequest(kind=kind, query=query_val, limit=limit)
64
+ request_data = QueryRequest(kind=kind, query=query_val, limit=limit, aggregate_by=aggregate)
63
65
 
64
66
  response = search_client.query_records(query_request=request_data)
65
67
  client.check_status_code(response)
@@ -0,0 +1,13 @@
1
+ # Licensed under the Apache License, Version 2.0 (the "License");
2
+ # you may not use this file except in compliance with the License.
3
+ # You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ """Storage service version commands"""
@@ -0,0 +1,47 @@
1
+ # Licensed under the Apache License, Version 2.0 (the "License");
2
+ # you may not use this file except in compliance with the License.
3
+ # You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ """Storage service version get command"""
14
+
15
+ import click
16
+
17
+ from osducli.click_cli import CustomClickCommand, State, command_with_output
18
+ from osducli.cliclient import CliOsduClient, handle_cli_exceptions
19
+
20
+
21
+ # click entry point
22
+ @click.command(cls=CustomClickCommand)
23
+ @click.option("-id", "--id", "_id", help="Record id to search for", required=True)
24
+ @click.option("-v", "--version", "_ver", help="Record version to search for", required=True)
25
+ @click.option("-a", "--attributes", "_attr", help="Filter attributes to restrict the returned fields of the record.", required=False)
26
+ @handle_cli_exceptions
27
+ @command_with_output("results || {Id:id,Version:version,Kind:kind,CreateUser:createUser,CreateTime:createTime}")
28
+ def _click_command(state: State, _id: str, _ver: str, _attr: list):
29
+ """Get specific record by id and version"""
30
+ return get(state, _id, _ver, _attr)
31
+
32
+
33
+ def get(state: State, id: str, version: str, attributes: list = None): # pylint: disable=redefined-builtin
34
+ """Get specific record by id and version
35
+
36
+ Args:
37
+ state (State): Global state
38
+ id (str): Id of records
39
+ version (str): Version of records
40
+ attributes (list): Filter attributes
41
+ """
42
+ client = CliOsduClient(state.config)
43
+ record_client = client.get_storage_record_client()
44
+ response = record_client.get_specific_record(id, version, attributes)
45
+
46
+ client.check_status_code(response)
47
+ return response.json()
@@ -10,33 +10,34 @@
10
10
  # See the License for the specific language governing permissions and
11
11
  # limitations under the License.
12
12
 
13
- """Storage service versions command"""
13
+ """Storage service version list command"""
14
14
 
15
15
  import click
16
16
 
17
17
  from osducli.click_cli import CustomClickCommand, State, command_with_output
18
18
  from osducli.cliclient import CliOsduClient, handle_cli_exceptions
19
- from osducli.config import CONFIG_STORAGE_URL
20
19
 
21
20
 
22
21
  # click entry point
23
22
  @click.command(cls=CustomClickCommand)
24
- @click.option("-id", "--id", "_id", required=True, help="id to get versions for")
23
+ @click.option("-id", "--id", "_id", help="Record id to search for", required=True)
25
24
  @handle_cli_exceptions
26
25
  @command_with_output("versions")
27
26
  def _click_command(state: State, _id: str):
28
- """List record versions"""
29
- return versions(state, _id)
27
+ """Get record versions for given id"""
28
+ return get(state, _id)
30
29
 
31
30
 
32
- def versions(state: State, id: str): # pylint: disable=invalid-name,redefined-builtin
33
- """List record versions
31
+ def get(state: State, id: str): # pylint: disable=redefined-builtin
32
+ """Get record versions for given id
34
33
 
35
34
  Args:
36
35
  state (State): Global state
37
- id (str): id to get versions for
36
+ id (str): Id of records
38
37
  """
39
- connection = CliOsduClient(state.config)
40
- url = "records/versions/" + id
41
- json = connection.cli_get_returning_json(CONFIG_STORAGE_URL, url)
42
- return json
38
+ client = CliOsduClient(state.config)
39
+ record_client = client.get_storage_record_client()
40
+ response = record_client.get_record_versions(id)
41
+
42
+ client.check_status_code(response)
43
+ return response.json()
@@ -38,9 +38,9 @@ def get_config_path(config: CLIConfig,
38
38
  "owners": [config.get('core', 'acl_owner')]
39
39
  }
40
40
  },
41
- "wellbore_mapping": { get_mapping(wellbore_mapping_file) },
42
- "welllog_mapping": { get_mapping(welllog_mapping_file) },
43
- "las_file_mapping": { get_mapping(las_mapping_file) }
41
+ "wellbore_mapping": get_mapping(wellbore_mapping_file),
42
+ "welllog_mapping": get_mapping(welllog_mapping_file),
43
+ "las_file_mapping": get_mapping(las_mapping_file)
44
44
  }
45
45
  with tempfile.NamedTemporaryFile('w', delete=False, suffix='.json') as tmp:
46
46
  json.dump(output, tmp, indent=4)
@@ -21,17 +21,17 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_PPFGDATASET_PATH
21
21
  @click.command(cls=CustomClickCommand, help="Update a session, either commit or abandon")
22
22
  @click.option("-id", "--id", "_id", help="PPFG Dataset id to update", required=True)
23
23
  @click.option("-s", "--session", "_ses", help="PPFG Dataset session id to update", required=True)
24
- @click.option("-c", "--commit", "_com", is_flag=True, help="Commit or abandon", required=False)
24
+ @click.option("-a", "--abandon", "_aba", is_flag=True, help="Abandon session. Will commit session if flag is omitted", required=False)
25
25
  @handle_cli_exceptions
26
26
  @command_with_output()
27
- def _click_command(state: State, _id: str, _ses: str, _com: bool):
28
- return update_session(state, _id, _ses, _com)
27
+ def _click_command(state: State, _id: str, _ses: str, _aba: bool):
28
+ return update_session(state, _id, _ses, _aba)
29
29
 
30
30
 
31
- def update_session(state: State, record_id: str, session_id: str, commit: bool):
31
+ def update_session(state: State, record_id: str, session_id: str, abandon: bool = False):
32
32
  """Update a session, either commit or abandon"""
33
33
  client = CliOsduClient(state.config)
34
34
  wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_PPFGDATASET_PATH)
35
- response = wellbore_client.update_wbddms_session(record_id, session_id, commit)
35
+ response = wellbore_client.update_wbddms_session(record_id, session_id, abandon)
36
36
  client.check_status_code(response)
37
37
  return response.json()
@@ -21,17 +21,17 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_TRAJECTORY_PATH
21
21
  @click.command(cls=CustomClickCommand, help="Update a session, either commit or abandon")
22
22
  @click.option("-id", "--id", "_id", help="Wellbore Trajectory id to update", required=True)
23
23
  @click.option("-s", "--session", "_ses", help="Wellbore Trajectory session id to update", required=True)
24
- @click.option("-c", "--commit", "_com", is_flag=True, help="Commit or abandon", required=False)
24
+ @click.option("-a", "--abandon", "_aba", is_flag=True, help="Abandon session. Will commit session if flag is omitted", required=False)
25
25
  @handle_cli_exceptions
26
26
  @command_with_output()
27
- def _click_command(state: State, _id: str, _ses: str, _com: bool):
28
- return update_session(state, _id, _ses, _com)
27
+ def _click_command(state: State, _id: str, _ses: str, _aba: bool):
28
+ return update_session(state, _id, _ses, _aba)
29
29
 
30
30
 
31
- def update_session(state: State, record_id: str, session_id: str, commit: bool):
31
+ def update_session(state: State, record_id: str, session_id: str, abandon: bool = False):
32
32
  """Update a session, either commit or abandon"""
33
33
  client = CliOsduClient(state.config)
34
34
  wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_TRAJECTORY_PATH)
35
- response = wellbore_client.update_wbddms_session(record_id, session_id, commit)
35
+ response = wellbore_client.update_wbddms_session(record_id, session_id, abandon)
36
36
  client.check_status_code(response)
37
37
  return response.json()
@@ -20,7 +20,7 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
20
20
  # click entry point
21
21
  @click.command(cls=CustomClickCommand, help="Get WellLog data statistics by id")
22
22
  @click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
23
- @click.option("-c", "--curves", "_curves", help="List of curves or array to be returned. All curves if empty", required=False)
23
+ @click.option("-cu", "--curves", "_curves", help="List of curves or array to be returned. All curves if empty", required=False)
24
24
  @handle_cli_exceptions
25
25
  @command_with_output()
26
26
  def _click_command(state: State, _id: str, _curves: str):
@@ -21,17 +21,17 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
21
21
  @click.command(cls=CustomClickCommand, help="Update a session, either commit or abandon")
22
22
  @click.option("-id", "--id", "_id", help="WellLog id to update", required=True)
23
23
  @click.option("-s", "--session", "_ses", help="WellLog session id to update", required=True)
24
- @click.option("-c", "--commit", "_com", is_flag=True, help="Commit or abandon", required=False)
24
+ @click.option("-a", "--abandon", "_aba", is_flag=True, help="Abandon session. Will commit session if flag is omitted", required=False)
25
25
  @handle_cli_exceptions
26
26
  @command_with_output()
27
- def _click_command(state: State, _id: str, _ses: str, _com: bool):
28
- return update_session(state, _id, _ses, _com)
27
+ def _click_command(state: State, _id: str, _ses: str, _aba: bool):
28
+ return update_session(state, _id, _ses, _aba)
29
29
 
30
30
 
31
- def update_session(state: State, record_id: str, session_id: str, commit: bool):
31
+ def update_session(state: State, record_id: str, session_id: str, abandon: bool = False):
32
32
  """Update a session, either commit or abandon"""
33
33
  client = CliOsduClient(state.config)
34
34
  wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
35
- response = wellbore_client.update_wbddms_session(record_id, session_id, commit)
35
+ response = wellbore_client.update_wbddms_session(record_id, session_id, abandon)
36
36
  client.check_status_code(response)
37
37
  return response.json()
@@ -21,7 +21,7 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
21
21
  @click.command(cls=CustomClickCommand, help="Get WellLog data statistics by id and version")
22
22
  @click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
23
23
  @click.option("-v", "--version", "_ver", help="WellLog version to search for", required=True)
24
- @click.option("-c", "--curves", "_curves", help="List of curves or array to be returned. All curves if empty", required=False)
24
+ @click.option("-cu", "--curves", "_curves", help="List of curves or array to be returned. All curves if empty", required=False)
25
25
  @handle_cli_exceptions
26
26
  @command_with_output()
27
27
  def _click_command(state: State, _id: str, _ver: str, _curves: str):
@@ -23,17 +23,17 @@ from osducli.commands.wellbore_ddms._const import (
23
23
  @click.command(cls=CustomClickCommand, help="Update a session, either commit or abandon")
24
24
  @click.option("-id", "--id", "_id", help="Wellpressure Test Raw Measurement id to update", required=True)
25
25
  @click.option("-s", "--session", "_ses", help="Wellpressure Test Raw Measurement session id to update", required=True)
26
- @click.option("-c", "--commit", "_com", is_flag=True, help="Commit or abandon", required=False)
26
+ @click.option("-a", "--abandon", "_aba", is_flag=True, help="Abandon session. Will commit session if flag is omitted", required=False)
27
27
  @handle_cli_exceptions
28
28
  @command_with_output()
29
- def _click_command(state: State, _id: str, _ses: str, _com: bool):
30
- return update_session(state, _id, _ses, _com)
29
+ def _click_command(state: State, _id: str, _ses: str, _aba: bool):
30
+ return update_session(state, _id, _ses, _aba)
31
31
 
32
32
 
33
- def update_session(state: State, record_id: str, session_id: str, commit: bool):
33
+ def update_session(state: State, record_id: str, session_id: str, abandon: bool = False):
34
34
  """Update a session, either commit or abandon"""
35
35
  client = CliOsduClient(state.config)
36
36
  wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELLPRESSURE_TEST_RAW_MEASUREMENT_PATH)
37
- response = wellbore_client.update_wbddms_session(record_id, session_id, commit)
37
+ response = wellbore_client.update_wbddms_session(record_id, session_id, abandon)
38
38
  client.check_status_code(response)
39
39
  return response.json()
osducli/wbddms_client.py CHANGED
@@ -126,9 +126,9 @@ class WellboreDdmsClient(BaseClient):
126
126
  url=f"{self.wellbore_ddms_url}/{record_id}/sessions/{session_id}"
127
127
  )
128
128
 
129
- def update_wbddms_session(self, record_id: str, session_id: str, commit: bool = True) -> requests.Response:
129
+ def update_wbddms_session(self, record_id: str, session_id: str, abandon: bool = False) -> requests.Response:
130
130
  """Update a session, either commit or abandon"""
131
- data = '{"state": ' + ('commit' if commit else 'abandon') + '}'
131
+ data = {"state": ("abandon" if abandon else "commit")}
132
132
  return self.make_request(
133
133
  method=HttpMethod.PATCH,
134
134
  url=f"{self.wellbore_ddms_url}/{record_id}/sessions/{session_id}",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: osducli
3
- Version: 0.0.49
3
+ Version: 0.0.51
4
4
  Summary: OSDU command line
5
5
  Author-email: Equinor ASA <mhew@equinor.com>
6
6
  License-Expression: Apache-2.0
@@ -75,6 +75,15 @@ For more information, specify the `-h` flag:
75
75
  Change Log
76
76
  ==========
77
77
 
78
+ 0.0.51
79
+ ------
80
+ - Get record version command
81
+ - Aggregate by in search query
82
+
83
+ 0.0.50
84
+ ------
85
+ - Maintenance release
86
+
78
87
  0.0.49
79
88
  ------
80
89
  - Added commands for Wellbore DDMS API
@@ -1,4 +1,4 @@
1
- osducli/VERSION,sha256=aIQefJKZYKas7s8349sFuyBVTOjJBAJ1jqYsDffdRjE,6
1
+ osducli/VERSION,sha256=pKLYb8I7W-9_9iuPirYhJ9jzAkpo28gEuYMDA0g7API,6
2
2
  osducli/__init__.py,sha256=J3RwqAbN7MWvz8vL24fMUar9Sfk8nMI8xq_aSHGXUy8,591
3
3
  osducli/__main__.py,sha256=4HonhahSaS3Un0f93qnbs_pmJ5pbbVHU-qdhsssVkB0,3661
4
4
  osducli/click_cli.py,sha256=EIe42DOnHDRKU3mPGwT12jI-yX3hsBOp_nS4nMTWc_Y,10864
@@ -7,7 +7,7 @@ osducli/config.py,sha256=OSsUK2UNiEYL_ikpAKkJhpodxMYMw39mEhav5IoUfRo,7873
7
7
  osducli/log.py,sha256=a5pzV2QIOqFEWCGFj01FaZk9PEzMkAr6duHei_dCme8,1549
8
8
  osducli/state.py,sha256=b0GHH2oZ-4ogtmHenNkYwNRSE3OpSTL0XklbKVjUAKQ,3335
9
9
  osducli/version.py,sha256=I8tEetbJZtyhZvVgLMOKwbOnBCKYEfpQlT0YcTP3nXc,722
10
- osducli/wbddms_client.py,sha256=WXuJgzNKADHG8kRaD4B0ZNZk3asT1sLKh8sVP4EgEeo,8005
10
+ osducli/wbddms_client.py,sha256=BsDZZ8GPGPpHU6C1iXP-TYbIWpOQC1DrdTrrgmY4fjc,7998
11
11
  osducli/auth/__init__.py,sha256=p2bZquIGOPfofHV6GIzWRUv_b9O_pIH5BTyv_gfQT6c,553
12
12
  osducli/auth/aws_token_credential.py,sha256=awKDU2nA3iGXYdIR1NTBk6z64ImIC7okfYr8x7FOM-s,2322
13
13
  osducli/auth/credentials.py,sha256=ZhYHMmePr_vfzdcjc3UrEon8R26KYnZ9sfBLES6DLrA,3185
@@ -70,7 +70,7 @@ osducli/commands/search/_const.py,sha256=YYTZd35Z9O0gEf6kb9Ntonvv3qArkAcszKAq2VA
70
70
  osducli/commands/search/id.py,sha256=1tVbgpDRhW08gyaLfQbCZjFrQDUGPh8gupf7pNhiN6c,1909
71
71
  osducli/commands/search/info.py,sha256=j6cjYDbxiiQEKXs0LJGQ_0scKReCGi6iQJrfn2X0B20,1333
72
72
  osducli/commands/search/kind.py,sha256=9vGVp4QG4dTII4LGcLYKDAE2PmcB-isgiCfwiITVauU,1786
73
- osducli/commands/search/query.py,sha256=EUHnIFvuCxAYBQK_k7YkBb8mYnedvRPMwBpeM1vj9r4,2405
73
+ osducli/commands/search/query.py,sha256=nZkOyhz0dTKEHCvICkyeEkfph4Wd6O_p51GTzJg1lEY,2606
74
74
  osducli/commands/status/__init__.py,sha256=5g1PB_tU0sqP7aplnihjfhMzVVQdlB3Y01QIeHAtSMw,595
75
75
  osducli/commands/status/status.py,sha256=yh6KVUpNYbrLJIH-7GjMyo2MpR8Wvycr4KdkxUI1V5A,4543
76
76
  osducli/commands/storage/__init__.py,sha256=Ilc97Kje3VVLZIBJucd_2jsW1GF5En00xF-A6kiLAFM,585
@@ -80,7 +80,9 @@ osducli/commands/storage/delete.py,sha256=ryjrd24wiJlTAL6jIsTW1gCxB0icAMu0YIyUTx
80
80
  osducli/commands/storage/get.py,sha256=FgjoN_1cY90cbU1osh53XviGvTZaPtRjthUmtP2Y2-k,2136
81
81
  osducli/commands/storage/info.py,sha256=CGbA92GJYkWcLXHx1Z4i9g7Auk-ws2Cg6n6X7_m27iw,1345
82
82
  osducli/commands/storage/list.py,sha256=bIN76XW70Xml0CCldNvjN-qCumqICjZkQPXs7LTY69M,1413
83
- osducli/commands/storage/versions.py,sha256=9KtVFIofIXPjozw_haeZDx28Y5SVfbYKtOyP8Q4jxx4,1483
83
+ osducli/commands/storage/version/__init__.py,sha256=h_BEt3whnDdxWHMNK9ej3_aQ_oWtRN41Wjr4XN9kQ6k,593
84
+ osducli/commands/storage/version/get.py,sha256=r7_HRE5FS2HNrltyO-RsxVcAlhlmwoKmGdOMDy76w_E,1983
85
+ osducli/commands/storage/version/list.py,sha256=F9bAHnmp-Iy2cDIjR7rT4CcPYWnrzBARC2ZEWNjg-uk,1483
84
86
  osducli/commands/unit/__init__.py,sha256=wi3jN5VORSyR-1R9p3smO6zkzejAnAI0-T9_moGSl08,582
85
87
  osducli/commands/unit/_const.py,sha256=GuBlXzsI723OKlqcBzsG21T44V_SbOPqdbaw8_c2c5s,696
86
88
  osducli/commands/unit/info.py,sha256=3mAB14C5256cDQGR_pUbSpKXN-0ohA7gxqxwq4t4VP8,1210
@@ -89,7 +91,7 @@ osducli/commands/version/__init__.py,sha256=S8QUNV3WSGTJAWwzvPokDscvBP4m0BAwXV_J
89
91
  osducli/commands/version/version.py,sha256=5Yc2e0IDlFJtbZvGWVSXFHBWtBO48K60KRZmpLGDjg4,4246
90
92
  osducli/commands/wbdutil/__init__.py,sha256=jmG3Hw7UtR63wI2fCYhKgiLJrRXZChEnihA0VksUhb0,595
91
93
  osducli/commands/wbdutil/_const.py,sha256=ImAh9YWr-Tf74FLBznE-bGf9E80LmDIMl-RAaAETeTU,767
92
- osducli/commands/wbdutil/config_file.py,sha256=32iJ9vq2hLjEBDYViURutKFo5LkVc9X3kQPU_pVnBpM,2164
94
+ osducli/commands/wbdutil/config_file.py,sha256=JnfzetW6Gnao48Eag2yCSnN_O6GWpjEBq4Oo_5Hwdo8,2152
93
95
  osducli/commands/wbdutil/download.py,sha256=4RSNe_ldlkd9gMbiHVamG2XdfqctAWyqzYfGgGG0IiQ,1862
94
96
  osducli/commands/wbdutil/search.py,sha256=ULXh6cPmC34x0-FU66t9LsfhgRUH6Og5YQ_dazr33oQ,1531
95
97
  osducli/commands/wbdutil/update.py,sha256=RizosFp3f1VOvvTGDL5QIkm9vdrcrR1PxsHssyKJY7s,1588
@@ -121,7 +123,7 @@ osducli/commands/wellbore_ddms/ppfgdataset/session/create.py,sha256=98Y8y845-jC0
121
123
  osducli/commands/wellbore_ddms/ppfgdataset/session/get.py,sha256=MGo9ep_N-IqEjvUFO4KKRiU2lN3t-r28c67AyJRB9qo,1640
122
124
  osducli/commands/wellbore_ddms/ppfgdataset/session/list.py,sha256=qTIDPovmJARrCPHRfS3zY8FBDm6-jssNGrDE-0B1sPI,1524
123
125
  osducli/commands/wellbore_ddms/ppfgdataset/session/send.py,sha256=LHu4QjB3oTlOvlq8JGnEdwn9LIYHH84H8BPF0ClupSY,1885
124
- osducli/commands/wellbore_ddms/ppfgdataset/session/update.py,sha256=7Pqu6665GyiodElxGmKCDBgcHeitsKBoyYqfsZQ8QaM,1816
126
+ osducli/commands/wellbore_ddms/ppfgdataset/session/update.py,sha256=c6w4RtMEtdhSH8vGDKxPnLSG8ttb1Zbu9w99uVNyPRw,1865
125
127
  osducli/commands/wellbore_ddms/ppfgdataset/version/__init__.py,sha256=Dn9hWoJezByqDWG_O8QTJRIBDdXu8W78kqz7INJuoPk,604
126
128
  osducli/commands/wellbore_ddms/ppfgdataset/version/get.py,sha256=blpg0quDF9j7cYRh4QxDwkTZGw5LuMJFrUchr7XKY8E,1683
127
129
  osducli/commands/wellbore_ddms/ppfgdataset/version/list.py,sha256=haP-eWU-dCf_4aAd1gLkCuJgUxi9zXkcGzEKn__UNGY,1539
@@ -139,7 +141,7 @@ osducli/commands/wellbore_ddms/trajectory/session/create.py,sha256=nibxAuFJzG8JJ
139
141
  osducli/commands/wellbore_ddms/trajectory/session/get.py,sha256=X2mdeaS_4Ku6F5WQiYH_obzW7uwqlN7OQxWkyPKCUmc,1673
140
142
  osducli/commands/wellbore_ddms/trajectory/session/list.py,sha256=eNfgqFL5GJGwsq38p6s5WqhCocj-DlcYtw9RqHYIdWY,1550
141
143
  osducli/commands/wellbore_ddms/trajectory/session/send.py,sha256=m3qFYt33kcRHTZRaO_05anJ2jLwPzIeMnYTOELNFQ-A,1911
142
- osducli/commands/wellbore_ddms/trajectory/session/update.py,sha256=V23rw6AGav0wC3qwtRXVroBVx_gIggVgVseYPDz0dc0,1835
144
+ osducli/commands/wellbore_ddms/trajectory/session/update.py,sha256=WQ7ElUdiAzlciMgxGvrs-hP7OaRyUS3aRGIZKpenvVs,1884
143
145
  osducli/commands/wellbore_ddms/trajectory/version/__init__.py,sha256=HeeTk9n2gbiNx9vtojQIh3myNxclrL7u0QOyKDlJKt8,611
144
146
  osducli/commands/wellbore_ddms/trajectory/version/get.py,sha256=qcFSXLw1dsmJfKvgA6p6AeFMvjBG13YTCFxxd4CqVLw,1716
145
147
  osducli/commands/wellbore_ddms/trajectory/version/list.py,sha256=aCgoIgEaaugkfEeD06Fa94guzB4Xq2ENCc3us6odMTY,1565
@@ -159,19 +161,19 @@ osducli/commands/wellbore_ddms/well_log/get.py,sha256=YqecNDwjoM9BFZlWqPPE3aBKaw
159
161
  osducli/commands/wellbore_ddms/well_log/data/__init__.py,sha256=PNSm3eVYoaW_l63R_us5axo_PTvk-6l3oS9L-_vCSPQ,596
160
162
  osducli/commands/wellbore_ddms/well_log/data/add.py,sha256=ucXTS6SkjBM6sX50eOGKCuGf57MyaYjSYYZFpBtmI4Y,1670
161
163
  osducli/commands/wellbore_ddms/well_log/data/get.py,sha256=zM8otdWu-av_bxDRpuNmH6gsPnEJmYaVYHdpXK--soM,1746
162
- osducli/commands/wellbore_ddms/well_log/data/statistics.py,sha256=1jsFwFQqAX5joEjl_fE73Y-LqvY1bG3Lz57-yK7hFfA,1681
164
+ osducli/commands/wellbore_ddms/well_log/data/statistics.py,sha256=MPHSn99zXB-Vk74_Aw3XzkAf9jVuqiLG53elksH9QL0,1682
163
165
  osducli/commands/wellbore_ddms/well_log/session/__init__.py,sha256=qbSYaWFosWTxvFNOmMhfZMhQeenlT36K3UjEEr17fKI,599
164
166
  osducli/commands/wellbore_ddms/well_log/session/create.py,sha256=Fjf4D_dNYDhbGIrlISUJufuN0uvNKhLa-P5J0HZW1GE,1522
165
167
  osducli/commands/wellbore_ddms/well_log/session/get.py,sha256=MJ9JG769baf_Hdn4UoAYiJj1t5EysscLQBM0TxZgdc0,1609
166
168
  osducli/commands/wellbore_ddms/well_log/session/list.py,sha256=RP80F0GMSWQJ8ksYHSslPNIAUuP8ELyKH-HBH0ENW8E,1498
167
169
  osducli/commands/wellbore_ddms/well_log/session/send.py,sha256=ePKo6Vsarzx2PUdlXeY0N8LKAGEad9Ji13GsSwiHxUA,1859
168
- osducli/commands/wellbore_ddms/well_log/session/update.py,sha256=rWgsq_J243AeJf1DdicbBhR0gnINzWGnA9mq3izunvU,1795
170
+ osducli/commands/wellbore_ddms/well_log/session/update.py,sha256=SfeKsqLnszVG6dxyT1t-ieYwV8gbaPblVAoAXTWopiY,1844
169
171
  osducli/commands/wellbore_ddms/well_log/version/__init__.py,sha256=lDJP3a_LDFsZ7Op57WUODKG0SQP_B7KK8AgsbrZ5_2U,599
170
172
  osducli/commands/wellbore_ddms/well_log/version/get.py,sha256=18fLZsg2d5RU_75InuBjlhrCWzMOEBWhILJyX846RE8,1652
171
173
  osducli/commands/wellbore_ddms/well_log/version/list.py,sha256=nGrj1EMnT4S55IsRkuXIa0W4mq7FrLiBlb4659zH0II,1513
172
174
  osducli/commands/wellbore_ddms/well_log/version/data/__init__.py,sha256=2ZVgH3rSWvNyEQTtFmLbvbXr2KND44fgzt_Fjr932Uw,604
173
175
  osducli/commands/wellbore_ddms/well_log/version/data/get.py,sha256=gD7mL20szi7nh5e5QhGRFXk0qvAVPT2Lgk033cyiCxw,1924
174
- osducli/commands/wellbore_ddms/well_log/version/data/statistics.py,sha256=ffVBbiHktvgRl34a3TUdGK6Kb1mgoAQixGNM0LaeAVA,1844
176
+ osducli/commands/wellbore_ddms/well_log/version/data/statistics.py,sha256=VjCNs47qu-B9Z3V6p5SjHFHnSaSKf22dx_bAHQvUYKE,1845
175
177
  osducli/commands/wellbore_ddms/well_log/version/data/update_stats.py,sha256=WK4Q5w1B0gcTAHwSdM9NNYdioNfA8UaDgOC99wCNdzk,1679
176
178
  osducli/commands/wellbore_ddms/wellbore/__init__.py,sha256=0MHZWGAJSDlEDWIczWBPwANmPwumgYip_y8btTDls3M,592
177
179
  osducli/commands/wellbore_ddms/wellbore/add.py,sha256=RACjZB0-1jsEACtR32GQY29QJtRnZ_bMdYoV2Lex3o4,1644
@@ -213,7 +215,7 @@ osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/create.
213
215
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/get.py,sha256=JVpACl7C2F77SMsZRlP_lQMPoq1HmQkrcIgRK6XCGxg,1798
214
216
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/list.py,sha256=zxb908M4tkeItayfTwvS6hI3LBvch61ZCDsPO1zr0TM,1661
215
217
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/send.py,sha256=xk94PW6uKjZrWp1IqzmShRECTR4fvzdiPYCuPLA7G2s,2022
216
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/update.py,sha256=ymW3DUj6tA0CA-4QfNuq4TPeiYAVqet7hW4BXxs2VZY,1932
218
+ osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/update.py,sha256=N-hTJkozxlVkuxsN4p3A5Az_5Dc4kK95iBdwqxHWnyQ,1981
217
219
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/__init__.py,sha256=Vf5Zv_Kgf7LidXA8oRv51sSqqWrGM8T5TcU-OneqgEo,625
218
220
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/get.py,sha256=o--cPnWwm2tSLN6f2ntPj9Hbv_BeMUhYwGTwUN4CduU,1841
219
221
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/list.py,sha256=DBxs-QWXktjJqsbwxGZ3W5uPbWjQ84lF2pxbGE_zFnA,1676
@@ -234,9 +236,9 @@ osducli/util/file.py,sha256=kfh6SLOI7X54gZ0hWF3kQ1npXPylNYgE1d1_w-fFyr0,1821
234
236
  osducli/util/prompt.py,sha256=0i3eNnxOHRQstvsvfiKnN0lIxXu6sEXIcU8txeYRhNs,7492
235
237
  osducli/util/pypi.py,sha256=-DW5CThkKKiOwLp2tg85BmrLKZzkMI9pu8DyWNPZH6E,1192
236
238
  osducli/util/service_info.py,sha256=YsVvoRoeG1osFjql2AgVkGoj1TePuhBZf3CQXl2a9As,2577
237
- osducli-0.0.49.dist-info/licenses/LICENSE.md,sha256=9xnGPjJkOAgd0kH4QLlvOIYKqY1M49gWUQpoUxAU-9Y,12788
238
- osducli-0.0.49.dist-info/METADATA,sha256=MA3MVUW8ZUk_hnqDdL7S9IYYEkjojVRKLI7ZkbN9HRM,6214
239
- osducli-0.0.49.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
240
- osducli-0.0.49.dist-info/entry_points.txt,sha256=gASIcihV0BSJDZOUK-zTzb8RiccZCvKfVZMna9RsEIg,47
241
- osducli-0.0.49.dist-info/top_level.txt,sha256=lqiP5fuyH8lx7c2emYoIVZNxZAPX-bSwnMH789wxUAY,8
242
- osducli-0.0.49.dist-info/RECORD,,
239
+ osducli-0.0.51.dist-info/licenses/LICENSE.md,sha256=9xnGPjJkOAgd0kH4QLlvOIYKqY1M49gWUQpoUxAU-9Y,12788
240
+ osducli-0.0.51.dist-info/METADATA,sha256=QUUwGY12jCAaYkGbOiLNJjS0IniEkQS_sQ_aSe0Z9xM,6326
241
+ osducli-0.0.51.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
242
+ osducli-0.0.51.dist-info/entry_points.txt,sha256=gASIcihV0BSJDZOUK-zTzb8RiccZCvKfVZMna9RsEIg,47
243
+ osducli-0.0.51.dist-info/top_level.txt,sha256=lqiP5fuyH8lx7c2emYoIVZNxZAPX-bSwnMH789wxUAY,8
244
+ osducli-0.0.51.dist-info/RECORD,,