ipfabric_netbox 4.3.2b9__py3-none-any.whl → 4.3.2b11__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 ipfabric_netbox might be problematic. Click here for more details.
- ipfabric_netbox/__init__.py +1 -1
- ipfabric_netbox/api/serializers.py +112 -7
- ipfabric_netbox/api/urls.py +6 -0
- ipfabric_netbox/api/views.py +23 -0
- ipfabric_netbox/choices.py +74 -40
- ipfabric_netbox/data/endpoint.json +52 -0
- ipfabric_netbox/data/filters.json +51 -0
- ipfabric_netbox/data/transform_map.json +190 -176
- ipfabric_netbox/exceptions.py +7 -5
- ipfabric_netbox/filtersets.py +310 -41
- ipfabric_netbox/forms.py +330 -80
- ipfabric_netbox/graphql/__init__.py +6 -0
- ipfabric_netbox/graphql/enums.py +5 -5
- ipfabric_netbox/graphql/filters.py +56 -4
- ipfabric_netbox/graphql/schema.py +28 -0
- ipfabric_netbox/graphql/types.py +61 -1
- ipfabric_netbox/jobs.py +12 -1
- ipfabric_netbox/migrations/0022_prepare_for_filters.py +182 -0
- ipfabric_netbox/migrations/0023_populate_filters_data.py +303 -0
- ipfabric_netbox/migrations/0024_finish_filters.py +29 -0
- ipfabric_netbox/migrations/0025_add_vss_chassis_endpoint.py +166 -0
- ipfabric_netbox/models.py +432 -17
- ipfabric_netbox/navigation.py +98 -24
- ipfabric_netbox/tables.py +194 -9
- ipfabric_netbox/templates/ipfabric_netbox/htmx_list.html +5 -0
- ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions.html +59 -0
- ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions_content.html +39 -0
- ipfabric_netbox/templates/ipfabric_netbox/inc/endpoint_filters_with_selector.html +54 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricendpoint.html +39 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilter.html +51 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression.html +39 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression_edit.html +150 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html +1 -1
- ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html +16 -2
- ipfabric_netbox/templatetags/ipfabric_netbox_helpers.py +68 -0
- ipfabric_netbox/tests/api/test_api.py +333 -13
- ipfabric_netbox/tests/test_filtersets.py +2592 -0
- ipfabric_netbox/tests/test_forms.py +1349 -74
- ipfabric_netbox/tests/test_models.py +242 -34
- ipfabric_netbox/tests/test_views.py +2031 -26
- ipfabric_netbox/urls.py +35 -0
- ipfabric_netbox/utilities/endpoint.py +83 -0
- ipfabric_netbox/utilities/filters.py +88 -0
- ipfabric_netbox/utilities/ipfutils.py +393 -377
- ipfabric_netbox/utilities/logging.py +7 -7
- ipfabric_netbox/utilities/transform_map.py +144 -5
- ipfabric_netbox/views.py +719 -5
- {ipfabric_netbox-4.3.2b9.dist-info → ipfabric_netbox-4.3.2b11.dist-info}/METADATA +2 -2
- {ipfabric_netbox-4.3.2b9.dist-info → ipfabric_netbox-4.3.2b11.dist-info}/RECORD +50 -33
- {ipfabric_netbox-4.3.2b9.dist-info → ipfabric_netbox-4.3.2b11.dist-info}/WHEEL +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ipfabric_netbox
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.2b11
|
|
4
4
|
Summary: NetBox plugin to sync IP Fabric data into NetBox
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: netbox,ipfabric,plugin,sync
|
|
@@ -25,7 +25,7 @@ Requires-Dist: ipfabric (>=7.0.0,<7.1.0) ; extra == "ipfabric_7_0" and extra !=
|
|
|
25
25
|
Requires-Dist: ipfabric (>=7.2.0,<7.3.0) ; extra != "ipfabric_7_0" and extra == "ipfabric_7_2" and extra != "ipfabric_7_3" and extra != "ipfabric_7_5"
|
|
26
26
|
Requires-Dist: ipfabric (>=7.3.0,<7.4.0) ; extra != "ipfabric_7_0" and extra != "ipfabric_7_2" and extra == "ipfabric_7_3" and extra != "ipfabric_7_5"
|
|
27
27
|
Requires-Dist: ipfabric (>=7.5.0,<7.6.0) ; extra != "ipfabric_7_0" and extra != "ipfabric_7_2" and extra != "ipfabric_7_3" and extra == "ipfabric_7_5"
|
|
28
|
-
Requires-Dist: netboxlabs-netbox-branching (
|
|
28
|
+
Requires-Dist: netboxlabs-netbox-branching (>=0.7.0)
|
|
29
29
|
Requires-Dist: netutils
|
|
30
30
|
Project-URL: Bug Tracker, https://gitlab.com/ip-fabric/integrations/ipfabric-netbox-sync/-/issues
|
|
31
31
|
Project-URL: Homepage, https://gitlab.com/ip-fabric/integrations/ipfabric-netbox-sync
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
ipfabric_netbox/__init__.py,sha256=
|
|
1
|
+
ipfabric_netbox/__init__.py,sha256=lDrIrLF4ix-PLnQyO699jn8lKFzXJX7zGFn-oSXlRNY,675
|
|
2
2
|
ipfabric_netbox/api/__init__.py,sha256=XRclTGWVR0ZhAAwgYul5Wm_loug5_hUjEumbLQEwKYM,47
|
|
3
|
-
ipfabric_netbox/api/serializers.py,sha256=
|
|
4
|
-
ipfabric_netbox/api/urls.py,sha256=
|
|
5
|
-
ipfabric_netbox/api/views.py,sha256=
|
|
6
|
-
ipfabric_netbox/choices.py,sha256=
|
|
7
|
-
ipfabric_netbox/data/
|
|
8
|
-
ipfabric_netbox/
|
|
9
|
-
ipfabric_netbox/
|
|
10
|
-
ipfabric_netbox/
|
|
11
|
-
ipfabric_netbox/
|
|
12
|
-
ipfabric_netbox/
|
|
13
|
-
ipfabric_netbox/graphql/
|
|
14
|
-
ipfabric_netbox/graphql/
|
|
15
|
-
ipfabric_netbox/graphql/
|
|
16
|
-
ipfabric_netbox/
|
|
3
|
+
ipfabric_netbox/api/serializers.py,sha256=0eC79r-IprR39R5hdMGq-wrvsNctw13Ff-mb_zGq7P4,9415
|
|
4
|
+
ipfabric_netbox/api/urls.py,sha256=bOEh6Um7wh-CqafWVKttuo4pwWgWCK3MGO44EI90evA,1604
|
|
5
|
+
ipfabric_netbox/api/views.py,sha256=CKLM3-AwFBWHca-rlVNz06pQRiZ5PzimPhknULnpm-g,7777
|
|
6
|
+
ipfabric_netbox/choices.py,sha256=ACyKBI83ZkREukilbnBKGN-uyj6WHc_hJk4G9uP2Da0,6865
|
|
7
|
+
ipfabric_netbox/data/endpoint.json,sha256=2Ztdqz6mcFnJaodwSFfdQ04znF_853OaZZc8FqqiSG4,1220
|
|
8
|
+
ipfabric_netbox/data/filters.json,sha256=kRu2QdFFclMZA2OUyuINQtnvXU6k9YhX80LE9ej5j4w,1764
|
|
9
|
+
ipfabric_netbox/data/transform_map.json,sha256=MV4CpeWYPYSWX93VzMzTyEh8qkjtIPzhTYrXfPDWN4s,23358
|
|
10
|
+
ipfabric_netbox/exceptions.py,sha256=HXsfuSXBBwxh5nhVvKcrmvVihKK8uaNGfCCmNuOufho,1791
|
|
11
|
+
ipfabric_netbox/filtersets.py,sha256=XwalWZccwspqntUO0W3sZMo1lAAUT2SBwIi0MUPEFqs,16253
|
|
12
|
+
ipfabric_netbox/forms.py,sha256=5QZyG169nv9QuPJkvWOaKj9T5sUokl3ixC50AhIM20I,58977
|
|
13
|
+
ipfabric_netbox/graphql/__init__.py,sha256=iQkyaQCMoSfLIr3N2Pemg1wnoEdfQ2NXDueyiEvJlKE,973
|
|
14
|
+
ipfabric_netbox/graphql/enums.py,sha256=HT9e1cmvH-uRCUz6IBzHnwJAA9Zm-vtGGfLRoQRdtPk,1513
|
|
15
|
+
ipfabric_netbox/graphql/filters.py,sha256=iW7fh4-mM0OEBGNdzfwG4phbcqXW9yTJA1XUKLeKJ48,15073
|
|
16
|
+
ipfabric_netbox/graphql/schema.py,sha256=eqK64sAfwqQhzCkGw1T1aIUs-xgc0bmxxThigJB_ZWw,4145
|
|
17
|
+
ipfabric_netbox/graphql/types.py,sha256=8Sf_H86HQosDyh1uoAwl5Z1IwFGLeVTGdkgV7qr9dDQ,7484
|
|
18
|
+
ipfabric_netbox/jobs.py,sha256=s584VJlNRXAJGxlnEeQFaLhDYoENaR_WNK2-V4gasHk,5674
|
|
17
19
|
ipfabric_netbox/migrations/0001_initial.py,sha256=VphxkWL6QzWq2tcrdXlog718xQtiEGizKwS830z_fOs,13824
|
|
18
20
|
ipfabric_netbox/migrations/0001_initial_squashed_0013_switch_to_branching_plugin.py,sha256=OvofuA8ImeJmjrbtCrZPcRxAUWx2Ww4DUXLBZYsy6qE,21381
|
|
19
21
|
ipfabric_netbox/migrations/0002_ipfabricsnapshot_status.py,sha256=xQpouHjOutyj6riN2B592njzSvz_icpkUbo5W7nWLYw,431
|
|
@@ -36,14 +38,22 @@ ipfabric_netbox/migrations/0018_remove_type_field.py,sha256=ffxW6IS3BLCbvM5M9DbD
|
|
|
36
38
|
ipfabric_netbox/migrations/0019_alter_ipfabrictransformmap_options_and_more.py,sha256=ieDVedt9KpJBicAiC3kdZXzHeos12N0L9EdRXKmIVgY,501
|
|
37
39
|
ipfabric_netbox/migrations/0020_clean_scheduled_jobs.py,sha256=zjCVKnCWTKYYkpVRwHjqRIRR2j6ALSKXYMfraRjNu7Y,2652
|
|
38
40
|
ipfabric_netbox/migrations/0021_update_transform_maps.py,sha256=W9GSgMQNmEdxnRI1c13at3XG1F_hyo9oZWsTZ0TLN9c,5464
|
|
41
|
+
ipfabric_netbox/migrations/0022_prepare_for_filters.py,sha256=HXXRQZz4xY036YN4ck10UcgTPflRzs35UGYUkwn-9V8,6931
|
|
42
|
+
ipfabric_netbox/migrations/0023_populate_filters_data.py,sha256=nbHkyWIruuEvPzN4w0KlrRJQl1sRRgW-joG9OpqXe58,12137
|
|
43
|
+
ipfabric_netbox/migrations/0024_finish_filters.py,sha256=YVR1DBTqaOXNthG_V5QSWCpDV0S3Jh3WoCJ0RPVhVBI,972
|
|
44
|
+
ipfabric_netbox/migrations/0025_add_vss_chassis_endpoint.py,sha256=5wnl87opaVJezb1SmGRYnL8qhHI8gcVtl_DDghPK_U8,6265
|
|
39
45
|
ipfabric_netbox/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
ipfabric_netbox/models.py,sha256=
|
|
41
|
-
ipfabric_netbox/navigation.py,sha256=
|
|
46
|
+
ipfabric_netbox/models.py,sha256=vtS5PM6kvQ2kq1CsyOdmwhFvC2P4lmtlf-g3mWwXP2E,54852
|
|
47
|
+
ipfabric_netbox/navigation.py,sha256=8FfpYFW1fC7BzFSTZ-XBCxu5IVMKDvArhr8Zav-0Ud4,4688
|
|
42
48
|
ipfabric_netbox/signals.py,sha256=y3x2jKT8yTjOfC4B3h4YZPRsYQkBal4cFdHJFkbPoS8,1411
|
|
43
|
-
ipfabric_netbox/tables.py,sha256=
|
|
49
|
+
ipfabric_netbox/tables.py,sha256=dhsusCRTXspfNWJYN0hE83r39kQIZcgG5cwT_1qMGHA,14898
|
|
44
50
|
ipfabric_netbox/template_content.py,sha256=lxZ02BFVihbSgjXCETGsWmhdElQUUO3uUGd0WfhlRmw,1120
|
|
51
|
+
ipfabric_netbox/templates/ipfabric_netbox/htmx_list.html,sha256=9wrJqGsOPlGz1doeXxau5fOPhAPNq3idvYhgXfCE_I4,121
|
|
45
52
|
ipfabric_netbox/templates/ipfabric_netbox/inc/clone_form.html,sha256=f6O5ugjQg7u37QWxUpKvE38jNslwb3rCMghlAUqjWBk,1127
|
|
53
|
+
ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions.html,sha256=CrvhkKP_-MUMhiSYjh4iHezcUGN_PQIBhSkjtupwITQ,2553
|
|
54
|
+
ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions_content.html,sha256=1auDqh5Uc_fCcxh8-uipyTJS4F1Wrjn286B6pVMGzQs,1802
|
|
46
55
|
ipfabric_netbox/templates/ipfabric_netbox/inc/diff.html,sha256=tuXJdQnesdIF0pUoKoho_8fQTGSIwdoEWhieHu6ikVM,3439
|
|
56
|
+
ipfabric_netbox/templates/ipfabric_netbox/inc/endpoint_filters_with_selector.html,sha256=WahorNrzgxJ85FP0TBEg745N9rA35FN0ysHed9t_SJw,2080
|
|
47
57
|
ipfabric_netbox/templates/ipfabric_netbox/inc/json.html,sha256=Z1zxFjy4PaAin3g_1EXy1KSlJyqSxWCD096wbRulQaE,635
|
|
48
58
|
ipfabric_netbox/templates/ipfabric_netbox/inc/logs_pending.html,sha256=lZXUFWQCQtu6RMe_OQQmjLMjJEnZ71EHPrhvSTE_-R4,353
|
|
49
59
|
ipfabric_netbox/templates/ipfabric_netbox/inc/merge_form.html,sha256=hey2JVm3IDZUqdpujzPUJYB7xZ4nxQ0pxl5wwRQIxOY,836
|
|
@@ -53,11 +63,15 @@ ipfabric_netbox/templates/ipfabric_netbox/inc/snapshotdata.html,sha256=1ItOCPjjp
|
|
|
53
63
|
ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_field_map.html,sha256=MSpU2mQnrGg_jA1-eqQgaSK9DXCeo3w6j33tV_GFNJ4,535
|
|
54
64
|
ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_relationship_map.html,sha256=tmIV0gDhfVxBse4xDeE5atMi4KEMkvxB_WRx94gu44U,539
|
|
55
65
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabric_table.html,sha256=HsxENF0KaaGT8w0_K6251LVH0W_mg60W8ktApxAG59U,1689
|
|
66
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricendpoint.html,sha256=bsXr4XdYjgNR8H4lcodi7ULKolrtyJ-ul9qd4l7pdBc,1150
|
|
67
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilter.html,sha256=9awoW_YXO2caPg1D7p5IGcLwBkUiAbICJcSuL8nfHH4,1533
|
|
68
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression.html,sha256=bdKszipF3NEJwTafKAwrvpkSv1NNrChaBW-rxcG2VGU,1163
|
|
69
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression_edit.html,sha256=iZKX-hRAewYqr2HdIuKWItuZgI8r5PRpye1kbH4Zgpc,5627
|
|
56
70
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabricingestion.html,sha256=4cUP5KxCEtH4j5RFT68-7UJUCnJcOCxA0iBzrxwua4I,4760
|
|
57
71
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsnapshot.html,sha256=JzvLqu0lIutCn_2f0alNVOAFbv2P6sqoZ1nYtVL9O8Y,3694
|
|
58
72
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsource.html,sha256=I9K7Eob-jjNAy6lryq2QKpp-5JyR1DEJSPF3D6JKR_w,4063
|
|
59
|
-
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html,sha256=
|
|
60
|
-
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html,sha256=
|
|
73
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html,sha256=deG7sRm1ndqHv2_pR71fxsZsBORQ1zkTjZ8q5MUvgWc,4882
|
|
74
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html,sha256=WOGJkEl_relZlfXwi9AfR4qk1L83N5ARtaesb29adMI,2166
|
|
61
75
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_list.html,sha256=kRb6NsLxurojh4Afb_oJbIMlgMprsVuhvRiuk8hB7OM,482
|
|
62
76
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_restore.html,sha256=os11SIwApFAiA1j0ObaOqG_KDHuieMiwyv9gPpZ9exI,2594
|
|
63
77
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmapgroup.html,sha256=X5jsRsK1WCqYpf-iQuHKChbg_hTTcrMpg48K5BU2S_0,1033
|
|
@@ -70,19 +84,22 @@ ipfabric_netbox/templates/ipfabric_netbox/partials/object_tabs.html,sha256=3xbGy
|
|
|
70
84
|
ipfabric_netbox/templates/ipfabric_netbox/partials/sync_last_ingestion.html,sha256=3v6tC88xE5cic9l9lQw7Msawoq-AW2oo2odd-osGv50,179
|
|
71
85
|
ipfabric_netbox/templates/static/ipfabric_netbox/css/rack.css,sha256=z1H-RmmsqF2pGdhn5J64TMFiccy62xZUHHlCRd8fJrQ,118
|
|
72
86
|
ipfabric_netbox/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
ipfabric_netbox/templatetags/ipfabric_netbox_helpers.py,sha256=
|
|
87
|
+
ipfabric_netbox/templatetags/ipfabric_netbox_helpers.py,sha256=7-UCcDEVDf9CnwD5LsXsVAIRBWXhMHYuuHtqZZkX8tk,2771
|
|
74
88
|
ipfabric_netbox/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
89
|
ipfabric_netbox/tests/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
-
ipfabric_netbox/tests/api/test_api.py,sha256=
|
|
77
|
-
ipfabric_netbox/tests/
|
|
78
|
-
ipfabric_netbox/tests/
|
|
79
|
-
ipfabric_netbox/tests/
|
|
80
|
-
ipfabric_netbox/
|
|
90
|
+
ipfabric_netbox/tests/api/test_api.py,sha256=3CKH3gkI-QDLKhrjVduHU6Qp2OJUg7y4ZRIwqm_yEf4,46492
|
|
91
|
+
ipfabric_netbox/tests/test_filtersets.py,sha256=95g1yq3oFjWLbmtWSbm3rAy-yncY5Hf9WfBkDp2ZT_4,103497
|
|
92
|
+
ipfabric_netbox/tests/test_forms.py,sha256=UvUQjGBVA3TdRMRw9ohyLVf2Wn3HCw760iFLAAUsHwo,109834
|
|
93
|
+
ipfabric_netbox/tests/test_models.py,sha256=EdXlIohASB2HSddx8rsZBgIeD6j31P5Zew1hJ8REB08,24840
|
|
94
|
+
ipfabric_netbox/tests/test_views.py,sha256=yOsRaoCxHiPHePwMNaBeW32rNeZDFr2tUdCopJqhlfs,167191
|
|
95
|
+
ipfabric_netbox/urls.py,sha256=6XAONbl0tKv2Vz4BfamAzLXpzmwdADMrXmuqPEQnvqE,3747
|
|
81
96
|
ipfabric_netbox/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
ipfabric_netbox/utilities/
|
|
83
|
-
ipfabric_netbox/utilities/
|
|
84
|
-
ipfabric_netbox/utilities/
|
|
85
|
-
ipfabric_netbox/
|
|
86
|
-
ipfabric_netbox
|
|
87
|
-
ipfabric_netbox
|
|
88
|
-
ipfabric_netbox-4.3.
|
|
97
|
+
ipfabric_netbox/utilities/endpoint.py,sha256=A_t_A8Qb5112gM1x28S78S8R_6Cdu3sAsi9C3SG6iPg,2779
|
|
98
|
+
ipfabric_netbox/utilities/filters.py,sha256=Lq5b_DDm0OVcfyp56br5hhnnhqT8_ZyNfSUApEG1U2k,2971
|
|
99
|
+
ipfabric_netbox/utilities/ipfutils.py,sha256=Uwbbt-z4vFdeP9GmhSw1hF5jM1csm3kPcGeflBhMU5w,47954
|
|
100
|
+
ipfabric_netbox/utilities/logging.py,sha256=v80dyd58mm40Nj5L6Ew4AtnLC9lTuU6TyBJq42w4Jrc,3494
|
|
101
|
+
ipfabric_netbox/utilities/transform_map.py,sha256=XLS1aF4cowYl8F3D1YgTQZSXKkPbS5J5MPJUg-VVr9A,14654
|
|
102
|
+
ipfabric_netbox/views.py,sha256=7IJLqf6MdK4LhjMGtbYVd_YmOTCUp8BwMFPU7WUre-o,71211
|
|
103
|
+
ipfabric_netbox-4.3.2b11.dist-info/METADATA,sha256=KFj1nJRubFJGdYTguU1nfcnO5y98vmX_9Y9CxH9oe-8,4782
|
|
104
|
+
ipfabric_netbox-4.3.2b11.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
|
|
105
|
+
ipfabric_netbox-4.3.2b11.dist-info/RECORD,,
|