catocli 3.0.1__py3-none-any.whl → 3.0.3__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 catocli might be problematic. Click here for more details.

catocli/__init__.py CHANGED
@@ -1,2 +1,2 @@
1
- __version__ = "3.0.1"
1
+ __version__ = "3.0.3"
2
2
  __cato_host__ = "https://api.catonetworks.com/api/v1/graphql2"
@@ -49,7 +49,31 @@ def generate_template(args):
49
49
  try:
50
50
  # Get the directory of this script to locate templates
51
51
  script_dir = os.path.dirname(os.path.abspath(__file__))
52
- templates_dir = os.path.join(script_dir, '..', '..', '..', '..', 'templates')
52
+
53
+ # Try multiple possible template directory locations
54
+ # 1. Development mode: go up 4 directories
55
+ # 2. Installed package: templates should be in the package root
56
+ possible_template_dirs = [
57
+ os.path.join(script_dir, '..', '..', '..', '..', 'templates'), # Development
58
+ os.path.join(os.path.dirname(script_dir.split('catocli')[0]), 'catocli', 'templates'), # Installed package
59
+ ]
60
+
61
+ templates_dir = None
62
+ for potential_dir in possible_template_dirs:
63
+ normalized_dir = os.path.normpath(potential_dir)
64
+ if os.path.exists(normalized_dir):
65
+ templates_dir = normalized_dir
66
+ break
67
+
68
+ if templates_dir is None:
69
+ # Fallback: look for templates directory in catocli package
70
+ import catocli
71
+ catocli_root = os.path.dirname(os.path.abspath(catocli.__file__))
72
+ fallback_templates_dir = os.path.join(catocli_root, 'templates')
73
+ if os.path.exists(fallback_templates_dir):
74
+ templates_dir = fallback_templates_dir
75
+ else:
76
+ raise Exception(f"Templates directory not found. Searched locations: {possible_template_dirs} and {fallback_templates_dir}")
53
77
 
54
78
  # Get the template format from export_format argument (defaults to json)
55
79
  template_format = getattr(args, 'export_format', 'json')
@@ -0,0 +1,20 @@
1
+ lan_interface_id,lan_interface_name,lan_interface_dest_type,lag_min_links,is_native_range,lan_interface_index,network_range_id,network_range_name,subnet,vlan,mdns_reflector,gateway,range_type,translated_subnet,internet_only,local_ip,dhcp_type,dhcp_ip_range,dhcp_relay_group_id,dhcp_relay_group_name,dhcp_microsegmentation
2
+ ,,,,,INT_5,UzU5MjQ4Mw==,Example Routed 202,10.20.2.0/24,,,10.20.1.2,Routed,172.20.1.0/24,,,ACCOUNT_DEFAULT,,,,FALSE
3
+ ,,,,,INT_5,UzU5MjQ3Ng==,Example Routed 203,10.20.3.0/24,,,10.20.1.3,Routed,,TRUE,,ACCOUNT_DEFAULT,,,,FALSE
4
+ ,,,,,INT_5,UzU5MjQ4Mg==,Example Direct 204,10.20.4.0/24,,TRUE,,Direct,172.20.3.0/24,,10.20.4.1,DHCP_RANGE,10.20.4.100-10.20.4.200,,,FALSE
5
+ ,,,,,INT_5,UzU5MjQ4MA==,Example VLAN 205,10.20.5.0/24,205,,,VLAN,,,10.20.5.1,DHCP_DISABLED,,,,FALSE
6
+ ,,,,,INT_5,UzU5MjQ4MQ==,Example VLAN 206,10.20.6.0/24,206,,,VLAN,172.20.5.0/24,,10.20.6.1,ACCOUNT_DEFAULT,,,,FALSE
7
+ ,,,,,INT_5,UzU5MjQ3OQ==,Example VLAN 207,10.20.7.0/24,207,,,VLAN,172.20.6.0/24,,10.20.7.1,DHCP_RELAY,,,dhcp_relay1,FALSE
8
+ ,,,,,INT_5,UzU5MjQ3OA==,Example VLAN 208,10.20.8.0/24,208,,,VLAN,,,10.20.8.1,DHCP_RELAY,,3625,,FALSE
9
+ ,,,,,INT_5,UzU5MjQ3Nw==,Example VLAN 209,10.20.9.0/24,209,,,VLAN,172.20.8.0/24,,10.20.9.1,DHCP_RANGE,10.20.9.100-10.20.9.200,,,TRUE
10
+ ,Example LAG Member 6,LAN_LAG_MEMBER,,,INT_6,,,,,,,,,,,,,,,FALSE
11
+ ,Example LAG Member 7,LAN_LAG_MEMBER,,,INT_7,,,,,,,,,,,,,,,FALSE
12
+ 188112,Example LAN 8,LAN,,TRUE,INT_8,TjIzNjY4MjQ=,Native Range 8,10.30.1.0/24,301,FALSE,,VLAN,,,10.30.1.1,DHCP_DISABLED,,,,FALSE
13
+ ,,,,,INT_8,UzU5MjQ3Mg==,Example Routed 302,10.30.2.0/24,,,10.30.1.2,Routed,172.30.2.0/24,,,ACCOUNT_DEFAULT,,,,FALSE
14
+ ,,,,,INT_8,UzU5MjQ2OA==,Example Routed 303,10.30.3.0/24,,,10.30.1.3,Routed,,TRUE,,ACCOUNT_DEFAULT,,,,FALSE
15
+ ,,,,,INT_8,UzU5MjQ3Mw==,Example Direct 304,10.30.4.0/24,,TRUE,,Direct,172.30.4.0/24,,10.30.4.1,DHCP_RANGE,10.30.4.100-10.30.4.200,,,FALSE
16
+ ,,,,,INT_8,UzU5MjQ3NQ==,Example VLAN 305,10.30.5.0/24,305,,,VLAN,,,10.30.5.1,DHCP_DISABLED,,,,FALSE
17
+ ,,,,,INT_8,UzU5MjQ3MQ==,Example VLAN 306,10.30.6.0/24,306,,,VLAN,172.30.6.0/24,,10.30.6.1,ACCOUNT_DEFAULT,,,,FALSE
18
+ ,,,,,INT_8,UzU5MjQ3NA==,Example VLAN 307,10.30.7.0/24,307,,,VLAN,172.30.7.0/24,,10.30.7.1,DHCP_RELAY,,,dhcp_relay1,FALSE
19
+ ,,,,,INT_8,UzU5MjQ2OQ==,Example VLAN 308,10.30.8.0/24,308,,,VLAN,,,10.30.8.1,DHCP_RELAY,,3625,,FALSE
20
+ ,,,,,INT_8,UzU5MjQ3MA==,Example VLAN 309,10.30.9.0/24,309,,,VLAN,172.30.9.0/24,,10.30.9.1,DHCP_RANGE,10.30.9.100-10.30.9.200,,,TRUE
@@ -0,0 +1,4 @@
1
+ site_id,site_name,wan_interface_id,wan_interface_index,wan_interface_name,wan_upstream_bw,wan_downstream_bw,wan_role,wan_precedence,site_description,native_range_subnet,native_range_name,native_range_id,native_range_vlan,native_range_mdns_reflector,native_range_gateway,native_range_type,native_range_translated_subnet,native_range_interface_id,native_range_interface_index,native_range_interface_name,native_range_interface_dest_type,native_range_interface_lag_min_links,native_range_dhcp_type,native_range_dhcp_ip_range,native_range_dhcp_relay_group_id,native_range_dhcp_relay_group_name,native_range_dhcp_microsegmentation,native_range_local_ip,site_type,connection_type,site_location_address,site_location_city,site_location_country_code,site_location_state_code,site_location_timezone
2
+ 152415,Test,155685:INT_1,INT_1,WAN 1,25,25,wan_1,ACTIVE,,10.20.1.0/24,Native Range,TjIzNDc3MDA=,,FALSE,,Direct,,184593,INT_5,My LAN LAG MASTER,LAN_LAG_MASTER,2,DHCP_DISABLED,,,,FALSE,10.20.1.1,BRANCH,SOCKET_X1600,No address provided,Wyoming,US,US-MN,America/Chicago
3
+ ,Test,155685:INT_2,INT_2,WAN 2,25,25,wan_2,ACTIVE,,,,,,,,,,,,,,,,,,,,,,,,,,,
4
+ ,Test,155685:INT_3,INT_3,WAN 3,25,25,wan_3,ACTIVE,,,,,,,,,,,,,,,,,,,,,,,,,,,
@@ -0,0 +1,429 @@
1
+ {
2
+ "sites": [
3
+ {
4
+ "wan_interfaces": [
5
+ {
6
+ "id": "155685:INT_2",
7
+ "index": "INT_2",
8
+ "name": "WAN 2",
9
+ "upstream_bandwidth": 25,
10
+ "downstream_bandwidth": 25,
11
+ "dest_type": "CATO",
12
+ "role": "wan_2",
13
+ "precedence": "ACTIVE"
14
+ },
15
+ {
16
+ "id": "155685:INT_1",
17
+ "index": "INT_1",
18
+ "name": "WAN 1",
19
+ "upstream_bandwidth": 25,
20
+ "downstream_bandwidth": 25,
21
+ "dest_type": "CATO",
22
+ "role": "wan_1",
23
+ "precedence": "ACTIVE"
24
+ },
25
+ {
26
+ "id": "155685:INT_3",
27
+ "index": "INT_3",
28
+ "name": "WAN 3",
29
+ "upstream_bandwidth": 25,
30
+ "downstream_bandwidth": 25,
31
+ "dest_type": "CATO",
32
+ "role": "wan_3",
33
+ "precedence": "ACTIVE"
34
+ }
35
+ ],
36
+ "lan_interfaces": [
37
+ {
38
+ "network_ranges": [],
39
+ "id": null,
40
+ "name": "Example LAG Member 7",
41
+ "index": "INT_7",
42
+ "dest_type": "LAN_LAG_MEMBER"
43
+ },
44
+ {
45
+ "network_ranges": [],
46
+ "id": null,
47
+ "name": "Example LAG Member 6",
48
+ "index": "INT_6",
49
+ "dest_type": "LAN_LAG_MEMBER"
50
+ },
51
+ {
52
+ "network_ranges": [
53
+ {
54
+ "id": "UzU5MjQ3Mg==",
55
+ "name": "Example Direct 304",
56
+ "subnet": "10.30.4.0/24",
57
+ "vlan": null,
58
+ "mdns_reflector": false,
59
+ "gateway": null,
60
+ "range_type": "Direct",
61
+ "translated_subnet": null,
62
+ "internet_only": null,
63
+ "local_ip": "10.30.4.1",
64
+ "dhcp_settings": {
65
+ "dhcp_type": "DHCP_RANGE",
66
+ "ip_range": "10.30.4.100-10.30.4.200",
67
+ "relay_group_id": null,
68
+ "relay_group_name": null,
69
+ "dhcp_microsegmentation": false
70
+ }
71
+ },
72
+ {
73
+ "id": "UzU5MjQ2OA==",
74
+ "name": "Example Routed 302",
75
+ "subnet": "10.30.2.0/24",
76
+ "vlan": null,
77
+ "mdns_reflector": false,
78
+ "gateway": null,
79
+ "range_type": "Direct",
80
+ "translated_subnet": null,
81
+ "internet_only": null,
82
+ "local_ip": "10.30.2.1",
83
+ "dhcp_settings": {
84
+ "dhcp_type": "ACCOUNT_DEFAULT",
85
+ "ip_range": null,
86
+ "relay_group_id": null,
87
+ "relay_group_name": null,
88
+ "dhcp_microsegmentation": false
89
+ }
90
+ },
91
+ {
92
+ "id": "UzU5MjQ3Mw==",
93
+ "name": "Example Routed 303",
94
+ "subnet": "10.30.3.0/24",
95
+ "vlan": null,
96
+ "mdns_reflector": false,
97
+ "gateway": null,
98
+ "range_type": "Direct",
99
+ "translated_subnet": null,
100
+ "internet_only": null,
101
+ "local_ip": "10.30.3.1",
102
+ "dhcp_settings": {
103
+ "dhcp_type": "ACCOUNT_DEFAULT",
104
+ "ip_range": null,
105
+ "relay_group_id": null,
106
+ "relay_group_name": null,
107
+ "dhcp_microsegmentation": false
108
+ }
109
+ },
110
+ {
111
+ "id": "UzU5MjQ3NQ==",
112
+ "name": "Example VLAN 305",
113
+ "subnet": "10.30.5.0/24",
114
+ "vlan": 305,
115
+ "mdns_reflector": false,
116
+ "gateway": null,
117
+ "range_type": "VLAN",
118
+ "translated_subnet": null,
119
+ "internet_only": null,
120
+ "local_ip": "10.30.5.1",
121
+ "dhcp_settings": {
122
+ "dhcp_type": "DHCP_DISABLED",
123
+ "ip_range": null,
124
+ "relay_group_id": null,
125
+ "relay_group_name": null,
126
+ "dhcp_microsegmentation": false
127
+ }
128
+ },
129
+ {
130
+ "id": "UzU5MjQ3MQ==",
131
+ "name": "Example VLAN 306",
132
+ "subnet": "10.30.6.0/24",
133
+ "vlan": 306,
134
+ "mdns_reflector": false,
135
+ "gateway": null,
136
+ "range_type": "VLAN",
137
+ "translated_subnet": null,
138
+ "internet_only": null,
139
+ "local_ip": "10.30.6.1",
140
+ "dhcp_settings": {
141
+ "dhcp_type": "ACCOUNT_DEFAULT",
142
+ "ip_range": null,
143
+ "relay_group_id": null,
144
+ "relay_group_name": null,
145
+ "dhcp_microsegmentation": false
146
+ }
147
+ },
148
+ {
149
+ "id": "UzU5MjQ3NA==",
150
+ "name": "Example VLAN 307",
151
+ "subnet": "10.30.7.0/24",
152
+ "vlan": 307,
153
+ "mdns_reflector": false,
154
+ "gateway": null,
155
+ "range_type": "VLAN",
156
+ "translated_subnet": null,
157
+ "internet_only": null,
158
+ "local_ip": "10.30.7.1",
159
+ "dhcp_settings": {
160
+ "dhcp_type": "DHCP_RELAY",
161
+ "ip_range": null,
162
+ "relay_group_id": null,
163
+ "relay_group_name": "dhcp_relay1",
164
+ "dhcp_microsegmentation": false
165
+ }
166
+ },
167
+ {
168
+ "id": "UzU5MjQ2OQ==",
169
+ "name": "Example VLAN 308",
170
+ "subnet": "10.30.8.0/24",
171
+ "vlan": 308,
172
+ "mdns_reflector": false,
173
+ "gateway": null,
174
+ "range_type": "VLAN",
175
+ "translated_subnet": null,
176
+ "internet_only": null,
177
+ "local_ip": "10.30.8.1",
178
+ "dhcp_settings": {
179
+ "dhcp_type": "DHCP_RELAY",
180
+ "ip_range": null,
181
+ "relay_group_id": "3625",
182
+ "relay_group_name": null,
183
+ "dhcp_microsegmentation": false
184
+ }
185
+ },
186
+ {
187
+ "id": "UzU5MjQ3MA==",
188
+ "name": "Example VLAN 309",
189
+ "subnet": "10.30.9.0/24",
190
+ "vlan": 309,
191
+ "mdns_reflector": false,
192
+ "gateway": null,
193
+ "range_type": "VLAN",
194
+ "translated_subnet": null,
195
+ "internet_only": null,
196
+ "local_ip": "10.30.9.1",
197
+ "dhcp_settings": {
198
+ "dhcp_type": "DHCP_RANGE",
199
+ "ip_range": "10.30.9.100-10.30.9.200",
200
+ "relay_group_id": null,
201
+ "relay_group_name": null,
202
+ "dhcp_microsegmentation": true
203
+ }
204
+ },
205
+ {
206
+ "id": "TjIzNjY4MjQ=",
207
+ "name": "Native Range",
208
+ "subnet": "10.30.1.0/24",
209
+ "vlan": null,
210
+ "mdns_reflector": false,
211
+ "gateway": null,
212
+ "range_type": "Direct",
213
+ "translated_subnet": null,
214
+ "internet_only": null,
215
+ "local_ip": "10.30.1.1",
216
+ "dhcp_settings": {
217
+ "dhcp_type": "DHCP_DISABLED",
218
+ "ip_range": null,
219
+ "relay_group_id": null,
220
+ "relay_group_name": null,
221
+ "dhcp_microsegmentation": false
222
+ },
223
+ "native_range": true
224
+ }
225
+ ],
226
+ "id": "188112",
227
+ "name": "Example LAN 8",
228
+ "index": "INT_8",
229
+ "dest_type": "LAN"
230
+ },
231
+ {
232
+ "network_ranges": [
233
+ {
234
+ "id": "UzU5MjQ4Mw==",
235
+ "name": "Example Direct 204",
236
+ "subnet": "10.20.4.0/24",
237
+ "vlan": null,
238
+ "mdns_reflector": true,
239
+ "gateway": null,
240
+ "range_type": "Direct",
241
+ "translated_subnet": null,
242
+ "internet_only": null,
243
+ "local_ip": "10.20.4.1",
244
+ "dhcp_settings": {
245
+ "dhcp_type": "DHCP_RANGE",
246
+ "ip_range": "10.20.4.100-10.20.4.200",
247
+ "relay_group_id": null,
248
+ "relay_group_name": null,
249
+ "dhcp_microsegmentation": false
250
+ }
251
+ },
252
+ {
253
+ "id": "UzU5MjQ3Ng==",
254
+ "name": "Example Routed 202",
255
+ "subnet": "10.20.2.0/24",
256
+ "vlan": null,
257
+ "mdns_reflector": false,
258
+ "gateway": null,
259
+ "range_type": "Direct",
260
+ "translated_subnet": null,
261
+ "internet_only": null,
262
+ "local_ip": "10.20.2.1",
263
+ "dhcp_settings": {
264
+ "dhcp_type": "ACCOUNT_DEFAULT",
265
+ "ip_range": null,
266
+ "relay_group_id": null,
267
+ "relay_group_name": null,
268
+ "dhcp_microsegmentation": false
269
+ }
270
+ },
271
+ {
272
+ "id": "UzU5MjQ4Mg==",
273
+ "name": "Example Routed 203",
274
+ "subnet": "10.20.3.0/24",
275
+ "vlan": null,
276
+ "mdns_reflector": false,
277
+ "gateway": null,
278
+ "range_type": "Direct",
279
+ "translated_subnet": null,
280
+ "internet_only": null,
281
+ "local_ip": "10.20.3.1",
282
+ "dhcp_settings": {
283
+ "dhcp_type": "ACCOUNT_DEFAULT",
284
+ "ip_range": null,
285
+ "relay_group_id": null,
286
+ "relay_group_name": null,
287
+ "dhcp_microsegmentation": false
288
+ }
289
+ },
290
+ {
291
+ "id": "UzU5MjQ4MA==",
292
+ "name": "Example VLAN 205",
293
+ "subnet": "10.20.5.0/24",
294
+ "vlan": 205,
295
+ "mdns_reflector": false,
296
+ "gateway": null,
297
+ "range_type": "VLAN",
298
+ "translated_subnet": null,
299
+ "internet_only": null,
300
+ "local_ip": "10.20.5.1",
301
+ "dhcp_settings": {
302
+ "dhcp_type": "DHCP_DISABLED",
303
+ "ip_range": null,
304
+ "relay_group_id": null,
305
+ "relay_group_name": null,
306
+ "dhcp_microsegmentation": false
307
+ }
308
+ },
309
+ {
310
+ "id": "UzU5MjQ4MQ==",
311
+ "name": "Example VLAN 206",
312
+ "subnet": "10.20.6.0/24",
313
+ "vlan": 206,
314
+ "mdns_reflector": false,
315
+ "gateway": null,
316
+ "range_type": "VLAN",
317
+ "translated_subnet": null,
318
+ "internet_only": null,
319
+ "local_ip": "10.20.6.1",
320
+ "dhcp_settings": {
321
+ "dhcp_type": "ACCOUNT_DEFAULT",
322
+ "ip_range": null,
323
+ "relay_group_id": null,
324
+ "relay_group_name": null,
325
+ "dhcp_microsegmentation": false
326
+ }
327
+ },
328
+ {
329
+ "id": "UzU5MjQ3OQ==",
330
+ "name": "Example VLAN 207",
331
+ "subnet": "10.20.7.0/24",
332
+ "vlan": 207,
333
+ "mdns_reflector": false,
334
+ "gateway": null,
335
+ "range_type": "VLAN",
336
+ "translated_subnet": null,
337
+ "internet_only": null,
338
+ "local_ip": "10.20.7.1",
339
+ "dhcp_settings": {
340
+ "dhcp_type": "DHCP_RELAY",
341
+ "ip_range": null,
342
+ "relay_group_id": null,
343
+ "relay_group_name": "dhcp_relay1",
344
+ "dhcp_microsegmentation": false
345
+ }
346
+ },
347
+ {
348
+ "id": "UzU5MjQ3OA==",
349
+ "name": "Example VLAN 208",
350
+ "subnet": "10.20.8.0/24",
351
+ "vlan": 208,
352
+ "mdns_reflector": false,
353
+ "gateway": null,
354
+ "range_type": "VLAN",
355
+ "translated_subnet": null,
356
+ "internet_only": null,
357
+ "local_ip": "10.20.8.1",
358
+ "dhcp_settings": {
359
+ "dhcp_type": "DHCP_RELAY",
360
+ "ip_range": null,
361
+ "relay_group_id": "3625",
362
+ "relay_group_name": null,
363
+ "dhcp_microsegmentation": false
364
+ }
365
+ },
366
+ {
367
+ "id": "UzU5MjQ3Nw==",
368
+ "name": "Example VLAN 209",
369
+ "subnet": "10.20.9.0/24",
370
+ "vlan": 209,
371
+ "mdns_reflector": false,
372
+ "gateway": null,
373
+ "range_type": "VLAN",
374
+ "translated_subnet": null,
375
+ "internet_only": null,
376
+ "local_ip": "10.20.9.1",
377
+ "dhcp_settings": {
378
+ "dhcp_type": "DHCP_RANGE",
379
+ "ip_range": "10.20.9.100-10.20.9.200",
380
+ "relay_group_id": null,
381
+ "relay_group_name": null,
382
+ "dhcp_microsegmentation": true
383
+ }
384
+ }
385
+ ],
386
+ "default_lan": true
387
+ }
388
+ ],
389
+ "native_range": {
390
+ "interface_id": "188111",
391
+ "interface_name": "My LAN LAG MASTER",
392
+ "subnet": "10.20.1.0/24",
393
+ "index": "INT_5",
394
+ "dest_type": "LAN_LAG_MASTER",
395
+ "lag_min_links": "2",
396
+ "range_name": "Native Range",
397
+ "range_id": "TjIzNjY4MjA=",
398
+ "vlan": null,
399
+ "mdns_reflector": false,
400
+ "gateway": null,
401
+ "range_type": "Direct",
402
+ "translated_subnet": null,
403
+ "internet_only": null,
404
+ "local_ip": "10.20.1.1",
405
+ "dhcp_settings": {
406
+ "dhcp_type": "DHCP_DISABLED",
407
+ "ip_range": null,
408
+ "relay_group_id": null,
409
+ "relay_group_name": null,
410
+ "dhcp_microsegmentation": false
411
+ }
412
+ },
413
+ "id": "155685",
414
+ "name": "Test",
415
+ "description": "",
416
+ "connection_type": "SOCKET_X1600",
417
+ "type": "BRANCH",
418
+ "site_location": {
419
+ "stateName": "Minnesota",
420
+ "countryCode": "US",
421
+ "countryName": "United States",
422
+ "address": "No address provided",
423
+ "city": "Wyoming",
424
+ "stateCode": "US-MN",
425
+ "timezone": "America/Chicago"
426
+ }
427
+ }
428
+ ]
429
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: catocli
3
- Version: 3.0.1
3
+ Version: 3.0.3
4
4
  Summary: Cato Networks cli wrapper for the GraphQL API.
5
5
  Home-page: https://github.com/Cato-Networks/cato-cli
6
6
  Author: Cato Networks
@@ -1,4 +1,4 @@
1
- catocli/__init__.py,sha256=ggP6bSf8rSvqJC-7CtGguzNcK1OCyPUI7aBVQezDjNw,84
1
+ catocli/__init__.py,sha256=RNP_nwjK9KlEF4ey3V5QEaRWfQEyCObaKa8DOco6z_Y,84
2
2
  catocli/__main__.py,sha256=6Z0ns_k_kUcz1Qtrn1u7UyUnqB-3e85jM_nppOwFsv4,217
3
3
  catocli/clisettings.json,sha256=s0NENqEgRtSzX8eJGASfOygI6cueF6mcPWSxj_oWMV4,964
4
4
  catocli/Utils/clidriver.py,sha256=lzVs1nYAiStwQjNxioxktwaKmfOF69Mmp5-9aWwsNOY,15972
@@ -16,7 +16,7 @@ catocli/parsers/custom/eventsFeedEnhanced.py,sha256=t5vPVWBSl57CO6a3UVRyx4292YaX
16
16
  catocli/parsers/custom/export_rules/__init__.py,sha256=vst8auriTCLwy5AT2_ySM2puq3PIg920ZWa5yy03K_8,1813
17
17
  catocli/parsers/custom/export_rules/export_rules.py,sha256=gXig4NC29yC5nW48ri-j0FEnaTz_kxKiuLF5y-5fZ_4,15646
18
18
  catocli/parsers/custom/export_sites/__init__.py,sha256=WAiaVzSGG8tsfWjl-FcUY2JyhfjE1sA265rtIsbmeVI,2427
19
- catocli/parsers/custom/export_sites/export_sites.py,sha256=abHr_jBJLWl2keP-pPqqmIQCI8xvK--2iPxSqB6Fhic,80964
19
+ catocli/parsers/custom/export_sites/export_sites.py,sha256=CTGe-xXvs6cLThiyuQUyFKz2bLUkwscM2eMytKFg-Bo,82160
20
20
  catocli/parsers/custom/import_rules_to_tf/__init__.py,sha256=jFCFceFv8zDW7nGLZOXkFE6NXAMPYRwKQwTbhSawYdM,3908
21
21
  catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py,sha256=WlyTDxUtWchu9CDs73ILHDfNXCAh7jFARBEKk5WWhwM,18714
22
22
  catocli/parsers/custom/import_sites_to_tf/__init__.py,sha256=1ayoaaKIxWf5JBN62CO9F7-yaP9MqizTBCedqCyEc4k,4339
@@ -395,7 +395,10 @@ catocli/parsers/query_xdr_stories/README.md,sha256=rRW1pTmVMr9-j21-_MWNlozTTQnhi
395
395
  catocli/parsers/query_xdr_story/README.md,sha256=Fl2HutndHVobrj73Wh5NlTLq56tvVN3W0iib6BuO-b0,925
396
396
  catocli/parsers/raw/README.md,sha256=qvDLcg7U12yqacIQStOPtkqTsTLltJ06SSVmbqvlZhY,739
397
397
  catocli/parsers/raw/__init__.py,sha256=fiSzQzNSG3vje-eEXuOcdhuL8pyavkufocOJumjdFXs,1356
398
- catocli-3.0.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
398
+ catocli/templates/Test_network_ranges.csv,sha256=_E5uE_nGI6k8LqMj_w_j2BmrBa1sL0SMOcYxtrnfjfE,2459
399
+ catocli/templates/socket_sites.csv,sha256=S5qY7whbydinMwomoAlDghoiFO_xqUKRwNG1xvzl8BI,1212
400
+ catocli/templates/socket_sites.json,sha256=X3NShci5-q3TpVSsaj62u4jFCvQAhxQ7knC-Lui_gOg,19535
401
+ catocli-3.0.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
399
402
  graphql_client/__init__.py,sha256=2nxD4YsWoOnALXi5cXbmtIN_i0NL_eyDTQRTxs52mkI,315
400
403
  graphql_client/api_client.py,sha256=2Rc1Zo1xH9Jnk1AO68kLSofTShkZwSVF-WkVtczfIc4,5786
401
404
  graphql_client/api_client_types.py,sha256=dM3zl6FA5SSp6nR6KmLfTL1BKaXX9uPMCZAm4v_FiUs,11569
@@ -743,8 +746,8 @@ vendor/urllib3/util/timeout.py,sha256=4eT1FVeZZU7h7mYD1Jq2OXNe4fxekdNvhoWUkZusRp
743
746
  vendor/urllib3/util/url.py,sha256=wHORhp80RAXyTlAIkTqLFzSrkU7J34ZDxX-tN65MBZk,15213
744
747
  vendor/urllib3/util/util.py,sha256=j3lbZK1jPyiwD34T8IgJzdWEZVT-4E-0vYIJi9UjeNA,1146
745
748
  vendor/urllib3/util/wait.py,sha256=_ph8IrUR3sqPqi0OopQgJUlH4wzkGeM5CiyA7XGGtmI,4423
746
- catocli-3.0.1.dist-info/METADATA,sha256=vtZrZQc_EQnc-eAvOxhRjhRvCEPMKVjR2FZRhsuTbYk,1286
747
- catocli-3.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
748
- catocli-3.0.1.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
749
- catocli-3.0.1.dist-info/top_level.txt,sha256=F4qSgcjcW5wR9EFrO8Ud06F7ZQGFr04a9qALNQDyVxU,52
750
- catocli-3.0.1.dist-info/RECORD,,
749
+ catocli-3.0.3.dist-info/METADATA,sha256=nqjJYUZ3DdL_xv9PM7AkyTCBMsAVKeZy-ISeew-G6Ss,1286
750
+ catocli-3.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
751
+ catocli-3.0.3.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
752
+ catocli-3.0.3.dist-info/top_level.txt,sha256=F4qSgcjcW5wR9EFrO8Ud06F7ZQGFr04a9qALNQDyVxU,52
753
+ catocli-3.0.3.dist-info/RECORD,,