osducli 0.0.49__py3-none-any.whl → 0.0.50__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.50
@@ -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.50
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,10 @@ For more information, specify the `-h` flag:
75
75
  Change Log
76
76
  ==========
77
77
 
78
+ 0.0.50
79
+ ------
80
+ - Maintenance release
81
+
78
82
  0.0.49
79
83
  ------
80
84
  - Added commands for Wellbore DDMS API
@@ -1,4 +1,4 @@
1
- osducli/VERSION,sha256=aIQefJKZYKas7s8349sFuyBVTOjJBAJ1jqYsDffdRjE,6
1
+ osducli/VERSION,sha256=ZpjJE3lqnDmHmv4SwQLhYc-x2Nfi3YlnlDJwdkFsP2A,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
@@ -89,7 +89,7 @@ osducli/commands/version/__init__.py,sha256=S8QUNV3WSGTJAWwzvPokDscvBP4m0BAwXV_J
89
89
  osducli/commands/version/version.py,sha256=5Yc2e0IDlFJtbZvGWVSXFHBWtBO48K60KRZmpLGDjg4,4246
90
90
  osducli/commands/wbdutil/__init__.py,sha256=jmG3Hw7UtR63wI2fCYhKgiLJrRXZChEnihA0VksUhb0,595
91
91
  osducli/commands/wbdutil/_const.py,sha256=ImAh9YWr-Tf74FLBznE-bGf9E80LmDIMl-RAaAETeTU,767
92
- osducli/commands/wbdutil/config_file.py,sha256=32iJ9vq2hLjEBDYViURutKFo5LkVc9X3kQPU_pVnBpM,2164
92
+ osducli/commands/wbdutil/config_file.py,sha256=JnfzetW6Gnao48Eag2yCSnN_O6GWpjEBq4Oo_5Hwdo8,2152
93
93
  osducli/commands/wbdutil/download.py,sha256=4RSNe_ldlkd9gMbiHVamG2XdfqctAWyqzYfGgGG0IiQ,1862
94
94
  osducli/commands/wbdutil/search.py,sha256=ULXh6cPmC34x0-FU66t9LsfhgRUH6Og5YQ_dazr33oQ,1531
95
95
  osducli/commands/wbdutil/update.py,sha256=RizosFp3f1VOvvTGDL5QIkm9vdrcrR1PxsHssyKJY7s,1588
@@ -121,7 +121,7 @@ osducli/commands/wellbore_ddms/ppfgdataset/session/create.py,sha256=98Y8y845-jC0
121
121
  osducli/commands/wellbore_ddms/ppfgdataset/session/get.py,sha256=MGo9ep_N-IqEjvUFO4KKRiU2lN3t-r28c67AyJRB9qo,1640
122
122
  osducli/commands/wellbore_ddms/ppfgdataset/session/list.py,sha256=qTIDPovmJARrCPHRfS3zY8FBDm6-jssNGrDE-0B1sPI,1524
123
123
  osducli/commands/wellbore_ddms/ppfgdataset/session/send.py,sha256=LHu4QjB3oTlOvlq8JGnEdwn9LIYHH84H8BPF0ClupSY,1885
124
- osducli/commands/wellbore_ddms/ppfgdataset/session/update.py,sha256=7Pqu6665GyiodElxGmKCDBgcHeitsKBoyYqfsZQ8QaM,1816
124
+ osducli/commands/wellbore_ddms/ppfgdataset/session/update.py,sha256=c6w4RtMEtdhSH8vGDKxPnLSG8ttb1Zbu9w99uVNyPRw,1865
125
125
  osducli/commands/wellbore_ddms/ppfgdataset/version/__init__.py,sha256=Dn9hWoJezByqDWG_O8QTJRIBDdXu8W78kqz7INJuoPk,604
126
126
  osducli/commands/wellbore_ddms/ppfgdataset/version/get.py,sha256=blpg0quDF9j7cYRh4QxDwkTZGw5LuMJFrUchr7XKY8E,1683
127
127
  osducli/commands/wellbore_ddms/ppfgdataset/version/list.py,sha256=haP-eWU-dCf_4aAd1gLkCuJgUxi9zXkcGzEKn__UNGY,1539
@@ -139,7 +139,7 @@ osducli/commands/wellbore_ddms/trajectory/session/create.py,sha256=nibxAuFJzG8JJ
139
139
  osducli/commands/wellbore_ddms/trajectory/session/get.py,sha256=X2mdeaS_4Ku6F5WQiYH_obzW7uwqlN7OQxWkyPKCUmc,1673
140
140
  osducli/commands/wellbore_ddms/trajectory/session/list.py,sha256=eNfgqFL5GJGwsq38p6s5WqhCocj-DlcYtw9RqHYIdWY,1550
141
141
  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
142
+ osducli/commands/wellbore_ddms/trajectory/session/update.py,sha256=WQ7ElUdiAzlciMgxGvrs-hP7OaRyUS3aRGIZKpenvVs,1884
143
143
  osducli/commands/wellbore_ddms/trajectory/version/__init__.py,sha256=HeeTk9n2gbiNx9vtojQIh3myNxclrL7u0QOyKDlJKt8,611
144
144
  osducli/commands/wellbore_ddms/trajectory/version/get.py,sha256=qcFSXLw1dsmJfKvgA6p6AeFMvjBG13YTCFxxd4CqVLw,1716
145
145
  osducli/commands/wellbore_ddms/trajectory/version/list.py,sha256=aCgoIgEaaugkfEeD06Fa94guzB4Xq2ENCc3us6odMTY,1565
@@ -159,19 +159,19 @@ osducli/commands/wellbore_ddms/well_log/get.py,sha256=YqecNDwjoM9BFZlWqPPE3aBKaw
159
159
  osducli/commands/wellbore_ddms/well_log/data/__init__.py,sha256=PNSm3eVYoaW_l63R_us5axo_PTvk-6l3oS9L-_vCSPQ,596
160
160
  osducli/commands/wellbore_ddms/well_log/data/add.py,sha256=ucXTS6SkjBM6sX50eOGKCuGf57MyaYjSYYZFpBtmI4Y,1670
161
161
  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
162
+ osducli/commands/wellbore_ddms/well_log/data/statistics.py,sha256=MPHSn99zXB-Vk74_Aw3XzkAf9jVuqiLG53elksH9QL0,1682
163
163
  osducli/commands/wellbore_ddms/well_log/session/__init__.py,sha256=qbSYaWFosWTxvFNOmMhfZMhQeenlT36K3UjEEr17fKI,599
164
164
  osducli/commands/wellbore_ddms/well_log/session/create.py,sha256=Fjf4D_dNYDhbGIrlISUJufuN0uvNKhLa-P5J0HZW1GE,1522
165
165
  osducli/commands/wellbore_ddms/well_log/session/get.py,sha256=MJ9JG769baf_Hdn4UoAYiJj1t5EysscLQBM0TxZgdc0,1609
166
166
  osducli/commands/wellbore_ddms/well_log/session/list.py,sha256=RP80F0GMSWQJ8ksYHSslPNIAUuP8ELyKH-HBH0ENW8E,1498
167
167
  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
168
+ osducli/commands/wellbore_ddms/well_log/session/update.py,sha256=SfeKsqLnszVG6dxyT1t-ieYwV8gbaPblVAoAXTWopiY,1844
169
169
  osducli/commands/wellbore_ddms/well_log/version/__init__.py,sha256=lDJP3a_LDFsZ7Op57WUODKG0SQP_B7KK8AgsbrZ5_2U,599
170
170
  osducli/commands/wellbore_ddms/well_log/version/get.py,sha256=18fLZsg2d5RU_75InuBjlhrCWzMOEBWhILJyX846RE8,1652
171
171
  osducli/commands/wellbore_ddms/well_log/version/list.py,sha256=nGrj1EMnT4S55IsRkuXIa0W4mq7FrLiBlb4659zH0II,1513
172
172
  osducli/commands/wellbore_ddms/well_log/version/data/__init__.py,sha256=2ZVgH3rSWvNyEQTtFmLbvbXr2KND44fgzt_Fjr932Uw,604
173
173
  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
174
+ osducli/commands/wellbore_ddms/well_log/version/data/statistics.py,sha256=VjCNs47qu-B9Z3V6p5SjHFHnSaSKf22dx_bAHQvUYKE,1845
175
175
  osducli/commands/wellbore_ddms/well_log/version/data/update_stats.py,sha256=WK4Q5w1B0gcTAHwSdM9NNYdioNfA8UaDgOC99wCNdzk,1679
176
176
  osducli/commands/wellbore_ddms/wellbore/__init__.py,sha256=0MHZWGAJSDlEDWIczWBPwANmPwumgYip_y8btTDls3M,592
177
177
  osducli/commands/wellbore_ddms/wellbore/add.py,sha256=RACjZB0-1jsEACtR32GQY29QJtRnZ_bMdYoV2Lex3o4,1644
@@ -213,7 +213,7 @@ osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/create.
213
213
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/get.py,sha256=JVpACl7C2F77SMsZRlP_lQMPoq1HmQkrcIgRK6XCGxg,1798
214
214
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/list.py,sha256=zxb908M4tkeItayfTwvS6hI3LBvch61ZCDsPO1zr0TM,1661
215
215
  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
216
+ osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/update.py,sha256=N-hTJkozxlVkuxsN4p3A5Az_5Dc4kK95iBdwqxHWnyQ,1981
217
217
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/__init__.py,sha256=Vf5Zv_Kgf7LidXA8oRv51sSqqWrGM8T5TcU-OneqgEo,625
218
218
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/get.py,sha256=o--cPnWwm2tSLN6f2ntPj9Hbv_BeMUhYwGTwUN4CduU,1841
219
219
  osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/list.py,sha256=DBxs-QWXktjJqsbwxGZ3W5uPbWjQ84lF2pxbGE_zFnA,1676
@@ -234,9 +234,9 @@ osducli/util/file.py,sha256=kfh6SLOI7X54gZ0hWF3kQ1npXPylNYgE1d1_w-fFyr0,1821
234
234
  osducli/util/prompt.py,sha256=0i3eNnxOHRQstvsvfiKnN0lIxXu6sEXIcU8txeYRhNs,7492
235
235
  osducli/util/pypi.py,sha256=-DW5CThkKKiOwLp2tg85BmrLKZzkMI9pu8DyWNPZH6E,1192
236
236
  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,,
237
+ osducli-0.0.50.dist-info/licenses/LICENSE.md,sha256=9xnGPjJkOAgd0kH4QLlvOIYKqY1M49gWUQpoUxAU-9Y,12788
238
+ osducli-0.0.50.dist-info/METADATA,sha256=dZXA1t4OQiGFavpnmqNh6GqJcszqJHTNz9K8oWpEB98,6251
239
+ osducli-0.0.50.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
240
+ osducli-0.0.50.dist-info/entry_points.txt,sha256=gASIcihV0BSJDZOUK-zTzb8RiccZCvKfVZMna9RsEIg,47
241
+ osducli-0.0.50.dist-info/top_level.txt,sha256=lqiP5fuyH8lx7c2emYoIVZNxZAPX-bSwnMH789wxUAY,8
242
+ osducli-0.0.50.dist-info/RECORD,,