ns2 0.2.6__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.
Files changed (98) hide show
  1. ns2/__init__.py +0 -0
  2. ns2/core.py +0 -0
  3. ns2/dbus/__init__.py +0 -0
  4. ns2/dbus/dbus.py +13 -0
  5. ns2/lib/__init__.py +0 -0
  6. ns2/lib/accounts.py +130 -0
  7. ns2/lib/commands.py +32 -0
  8. ns2/lib/firewalld.py +167 -0
  9. ns2/lib/introspection/org.fedoraproject.FirewallD1.config.xml +3 -0
  10. ns2/lib/introspection/org.fedoraproject.FirewallD1.xml +763 -0
  11. ns2/lib/introspection/org.freedesktop.NetworkManager.AccessPoint.xml +106 -0
  12. ns2/lib/introspection/org.freedesktop.NetworkManager.AgentManager.xml +43 -0
  13. ns2/lib/introspection/org.freedesktop.NetworkManager.Checkpoint.xml +36 -0
  14. ns2/lib/introspection/org.freedesktop.NetworkManager.Connection.Active.xml +185 -0
  15. ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP4Config.xml +21 -0
  16. ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP6Config.xml +20 -0
  17. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Adsl.xml +21 -0
  18. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bluetooth.xml +36 -0
  19. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bond.xml +40 -0
  20. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bridge.xml +41 -0
  21. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Dummy.xml +20 -0
  22. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Generic.xml +27 -0
  23. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Hsr.xml +51 -0
  24. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.IPTunnel.xml +107 -0
  25. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Infiniband.xml +31 -0
  26. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml +38 -0
  27. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Loopback.xml +8 -0
  28. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Lowpan.xml +27 -0
  29. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macsec.xml +109 -0
  30. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macvlan.xml +39 -0
  31. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Modem.xml +62 -0
  32. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OlpcMesh.xml +34 -0
  33. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsBridge.xml +21 -0
  34. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsInterface.xml +11 -0
  35. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsPort.xml +21 -0
  36. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ppp.xml +11 -0
  37. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Statistics.xml +35 -0
  38. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Team.xml +48 -0
  39. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Tun.xml +65 -0
  40. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Veth.xml +18 -0
  41. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vlan.xml +45 -0
  42. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vrf.xml +18 -0
  43. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vxlan.xml +139 -0
  44. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WiMax.xml +109 -0
  45. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WifiP2P.xml +76 -0
  46. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WireGuard.xml +38 -0
  47. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wired.xml +53 -0
  48. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wireless.xml +131 -0
  49. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wpan.xml +20 -0
  50. ns2/lib/introspection/org.freedesktop.NetworkManager.Device.xml +407 -0
  51. ns2/lib/introspection/org.freedesktop.NetworkManager.DnsManager.xml +40 -0
  52. ns2/lib/introspection/org.freedesktop.NetworkManager.IP4Config.xml +125 -0
  53. ns2/lib/introspection/org.freedesktop.NetworkManager.IP6Config.xml +95 -0
  54. ns2/lib/introspection/org.freedesktop.NetworkManager.PPP.xml +34 -0
  55. ns2/lib/introspection/org.freedesktop.NetworkManager.SecretAgent.xml +94 -0
  56. ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.Connection.xml +224 -0
  57. ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.xml +233 -0
  58. ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Connection.xml +42 -0
  59. ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Plugin.xml +204 -0
  60. ns2/lib/introspection/org.freedesktop.NetworkManager.WiMax.Nsp.xml +35 -0
  61. ns2/lib/introspection/org.freedesktop.NetworkManager.WifiP2PPeer.xml +91 -0
  62. ns2/lib/introspection/org.freedesktop.NetworkManager.xml +598 -0
  63. ns2/lib/lib.py +0 -0
  64. ns2/lib/network_delay.py +92 -0
  65. ns2/lib/networking.py +528 -0
  66. ns2/lib/ntl.py +188 -0
  67. ns2/lib/pam_client.py +37 -0
  68. ns2/lib/ping_data_collector.py +37 -0
  69. ns2/lib/snmp.py +511 -0
  70. ns2/lib/socket.py +132 -0
  71. ns2/lib/socket_client.py +62 -0
  72. ns2/lib/systemd.py +151 -0
  73. ns2/lib/test.py +374 -0
  74. ns2/lib/udp_client.py +227 -0
  75. ns2/lib/udp_server.py +167 -0
  76. ns2/snmp/__init__.py +0 -0
  77. ns2/snmp/ns_dbus_service.py +38 -0
  78. ns2/snmp/pam_interface.py +19 -0
  79. ns2/snmp/snmp_interface.py +66 -0
  80. ns2/ui/__init__.py +0 -0
  81. ns2/ui/assets/NOVUS_LOGO.svg +105 -0
  82. ns2/ui/assets/favicon.png +0 -0
  83. ns2/ui/firewalld_page.py +375 -0
  84. ns2/ui/fpga_page.py +24 -0
  85. ns2/ui/login.py +65 -0
  86. ns2/ui/main.py +200 -0
  87. ns2/ui/networking_page.py +406 -0
  88. ns2/ui/ntp.py +105 -0
  89. ns2/ui/root.py +31 -0
  90. ns2/ui/snmp_page.py +353 -0
  91. ns2/ui/terminal.py +65 -0
  92. ns2/ui/tests_page.py +116 -0
  93. ns2/ui/theme.py +25 -0
  94. ns2/utils.py +5 -0
  95. ns2-0.2.6.dist-info/METADATA +78 -0
  96. ns2-0.2.6.dist-info/RECORD +98 -0
  97. ns2-0.2.6.dist-info/WHEEL +4 -0
  98. ns2-0.2.6.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,98 @@
1
+ ns2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ ns2/core.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ ns2/dbus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ ns2/dbus/dbus.py,sha256=TLMDN1iZFxaCDRjtHNlSNq1rcPKWBK6S8ee5feGATj4,250
5
+ ns2/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ ns2/lib/accounts.py,sha256=Jn-nKci3Ovsk3FouAIj9OCBriStmHpbPasmTNft3fIA,3647
7
+ ns2/lib/commands.py,sha256=aBYImoomB_Xoju9A6I9JBPKTzWyPDMtE-hEh7bpgHnQ,818
8
+ ns2/lib/firewalld.py,sha256=pma4BqO3BQmkHkZdvQy5_uK7S4e55wN6nP9rI8khMuM,6268
9
+ ns2/lib/introspection/org.fedoraproject.FirewallD1.config.xml,sha256=WnR6Rnk4y6KLP-fNDOBPKgcr7ROnsHuSLeaWetC4MyM,151
10
+ ns2/lib/introspection/org.fedoraproject.FirewallD1.xml,sha256=QD5lvIaWee1zbaHqcIYHsGWsKwBIIdPsl0-Pd0gYopI,32861
11
+ ns2/lib/introspection/org.freedesktop.NetworkManager.AccessPoint.xml,sha256=VscHcA2rURIG8TntpIqMAO8qsHY_nfjpg3kwH8mC71Y,2747
12
+ ns2/lib/introspection/org.freedesktop.NetworkManager.AgentManager.xml,sha256=HgIfPAVkWNdb__gcnB-JOEQAH7mxMyHt937j6cbIkgM,1785
13
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Checkpoint.xml,sha256=SbqPqXUAAIcCZQdeflrxPrguRS11Zqgp5zTI7Ld4Cvo,907
14
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Connection.Active.xml,sha256=3_wY5ZI_BK9H5WcegquKhfweUPEUKVOfneXFg-q2ARU,5989
15
+ ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP4Config.xml,sha256=vsKBBc7qcvPF1vnsAm3StW0f9nG9NCMbZihhCV85t3k,549
16
+ ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP6Config.xml,sha256=vSXHwXvZ40XdFQYVtXfBov8gJ34Rk5w2bM5zVqzS8g0,548
17
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Adsl.xml,sha256=NmrniFhibBx8GdLNK4RDt-5dS2uOGY88GOUtmMeCxXo,542
18
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bluetooth.xml,sha256=stXwnf60JcBMRrJbCeU2cBLkJywL12magTnZPVODRl4,937
19
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bond.xml,sha256=JJzLxn1E3_EXdk7ZmCchPgoCD3e6m0jN9Ij98ZL-KFw,1135
20
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bridge.xml,sha256=VUkItbkUPanHl5RbFYWy3J7tM496sjQPqiNHeKGNc3M,1140
21
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Dummy.xml,sha256=p8-gfyFspp7nQmc8ENieq0DjXpMTJZlSDIn_EG43DKw,535
22
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Generic.xml,sha256=YwO8OWhofOA3Pu_ZVpd_8KcksIuqF3fON2zcRr6uSkI,723
23
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Hsr.xml,sha256=frueZ5R_-LNuLsPO5d2XTeDVgtlN0aqrSkpplTa3xX8,1022
24
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.IPTunnel.xml,sha256=EQFwfJZmss5lnaHbIpfJ25mBOBjjLgH7FhwDF4OgjeA,2345
25
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Infiniband.xml,sha256=cVdZNcreYzX7jJE4RKyxH7vmG6PYpL7dpej1vUB8xg8,899
26
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml,sha256=vDtOtleHEk911CQf1I0b1WUmmWFzVlM4rlvBoDqDNJ8,837
27
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Loopback.xml,sha256=TsBjTElNW8nj-7eKIyT9FromNivvhSYryiYLgQtAKMg,242
28
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Lowpan.xml,sha256=kXRntKDeH8oDXlK0mmTy0obH2c_aR6kmqW8ZyxPzQX8,683
29
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macsec.xml,sha256=CWzlvDvgCgt7KMCeCJqTbbMARptPigwzp0jI4RKR1P8,2351
30
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macvlan.xml,sha256=Gps-WMSVIHE-CfCiHe_eLfbA2Fr4uZBkTGCZkfzUN4M,840
31
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Modem.xml,sha256=-DjwNWh3AaJip_ykyny9depmfz-_2xZ54Ho5RNrxYmI,1793
32
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OlpcMesh.xml,sha256=PiIkgQhFJMcLav6Rvh8q_CZQtwPkSXuOvjqnRRcsozU,840
33
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsBridge.xml,sha256=y0eOdvuDfSBPvyI1MpDGa54gvsbsAYDuAfGL5dmBcsA,533
34
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsInterface.xml,sha256=PaYivCMKo-vr3IRZeG10d_q6Rhc5C0pbWXggdOfR8uk,270
35
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsPort.xml,sha256=0cnX5K1Z0vgsNyejhTxL7wL1p5JkxmK254AbJH_hI8k,527
36
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ppp.xml,sha256=i3XxBwq8HM_GDTQ7O0dmO0WVcg4NBYzZeT6hhZesVhM,243
37
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Statistics.xml,sha256=K4_B8dtW-PupGw285AbXVGXKn8adTvWzWT6dQo6v6gc,908
38
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Team.xml,sha256=qSgfEH20EYOECx4PS6zMI1wvKVEXgf7WC23EgvpW9Jo,1290
39
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Tun.xml,sha256=HkN2T1plM-PRaj-yuNqEb3zicfSvcHOUacNXra0kFKk,1607
40
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Veth.xml,sha256=Prz_IX5UMnwvqpyflHVvBTlRVj2ALEqVEefgQBfEkbg,388
41
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vlan.xml,sha256=Vsee8FKV4eyx3fhyPUgc-ehvMy56ZFCGHA_LpjMBCM4,1169
42
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vrf.xml,sha256=nd5uZdhRAcwJWgB82GWUkvqa1uhMA-2pqaYDcFrR8GY,367
43
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vxlan.xml,sha256=9PY31fdKrcAPQ0gPTizfdBrvH0qaV76l8emlD2hSJ2Y,3291
44
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WiMax.xml,sha256=9nSWSWO4u5RnAQak0TGhI-3f1NJSjHdaDNgq8uknRAo,3009
45
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WifiP2P.xml,sha256=124GnknORs6oNTc4s657x_-S6Sp44kmkn8GkethI25w,2012
46
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WireGuard.xml,sha256=hkeGZd2wuZN1iCs33VQQrQI_t8ijTkSV70CoRaSX9Sw,937
47
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wired.xml,sha256=2a1XqKQjFGJ1mV8hGurPjm6WFsZjN-HN6BcbhBYZ1-4,1447
48
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wireless.xml,sha256=r9EsKJEOgCkmc0ihpVb5f7jh6-KnK9Z_z_YT7Egj6Uw,3909
49
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wpan.xml,sha256=zLwh516QiX84N6wNSUGR3kIh_4OucZaBJq_UG-9F6QY,568
50
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Device.xml,sha256=ZSXctroDVRA_D1yHalz8S4QKI4cBJQ8o5z-UrWH0iMk,15262
51
+ ns2/lib/introspection/org.freedesktop.NetworkManager.DnsManager.xml,sha256=YX5UOgJGF406KBjeSvETAaRIjyppVudQcr8DSEh8WYk,1178
52
+ ns2/lib/introspection/org.freedesktop.NetworkManager.IP4Config.xml,sha256=yqfIwO0cRyvuIFDoyg8aNLZ1xQwpwNEDnI_MqgRnZho,3353
53
+ ns2/lib/introspection/org.freedesktop.NetworkManager.IP6Config.xml,sha256=-7TzLvcXB6xXeFKsTuH0i4P2SlZ0q2TJCR4t8k6mDGY,2400
54
+ ns2/lib/introspection/org.freedesktop.NetworkManager.PPP.xml,sha256=nIQ6IfKTNBKibk-SG4UWfa3v4q9_54PTZPkAs2l28Z8,873
55
+ ns2/lib/introspection/org.freedesktop.NetworkManager.SecretAgent.xml,sha256=W2ItXIvbaCdqXNyOQVngGATtiuUPygZJvO_hqsxbnKI,6149
56
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.Connection.xml,sha256=yB5XILJ9E31usYpsgjmRTiPf9YP1oaps182q0m4k92E,8802
57
+ ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.xml,sha256=YxSPQVYVdoxe9_LpfaIRspgzEbtS2I5m6PIZIq-JGJo,9352
58
+ ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Connection.xml,sha256=iojMFzT3sFb9g4TAZ9zkLWwvcHFdkwQCk-1PV0qLV40,1266
59
+ ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Plugin.xml,sha256=T2u8YuF_gjIih8bU8kw3uq8t244Fpz_YoNkB71KKugA,6716
60
+ ns2/lib/introspection/org.freedesktop.NetworkManager.WiMax.Nsp.xml,sha256=aKCk6UC543VP2GZT-XSf2vymxbulcz9l2ikBV_tcnNI,866
61
+ ns2/lib/introspection/org.freedesktop.NetworkManager.WifiP2PPeer.xml,sha256=MUv-e7VenJIxe9vdifybtJG0BzeK2IQe34uwfMNZciY,2110
62
+ ns2/lib/introspection/org.freedesktop.NetworkManager.xml,sha256=0yOgjosMbIJ-4ggxx3vaRcZf32Oni2BUo5mNkYn2QsQ,26336
63
+ ns2/lib/lib.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ ns2/lib/network_delay.py,sha256=fE6imfbK9z-9cmkq9pKkreqUibISNMLAfvhC6U2A0mQ,2104
65
+ ns2/lib/networking.py,sha256=ydCsZS31qWJda5aOW_q6Bj4PfA0cC8XK-0tDl-MLqRg,20402
66
+ ns2/lib/ntl.py,sha256=M3tBsJPnUcLswgX-BzlfCU_A7fLJCadkQVAZ2BW3IRg,5796
67
+ ns2/lib/pam_client.py,sha256=OTj_En8LyTn2xKnyjZs8LgN_Sj52Pq1btZ5TK0f4i14,1333
68
+ ns2/lib/ping_data_collector.py,sha256=GsV9tYlwMr7gzlMGX-k-Ysl2J60jVObPK6LqNifG7-0,801
69
+ ns2/lib/snmp.py,sha256=Fi8mD6sSM0jCPfOvY9eQhnrQ0tHG5F-1BN1GcAagxpQ,16331
70
+ ns2/lib/socket.py,sha256=48Wvxk5_AHKyHf8LEfiuUEGoRmv4gpz5XMDMphcsh08,3805
71
+ ns2/lib/socket_client.py,sha256=tia6SkdWEML7KoQJi-PEixGubCmbbyTRU3KpAT-Pk3o,1080
72
+ ns2/lib/systemd.py,sha256=2amceD8_Jm8infMkfy7orWonTZST-PJzFPDCLIeh4is,5023
73
+ ns2/lib/test.py,sha256=fVI26XjZbJdXA9UpkDP9wj3Sh2EhcHgSdwmGWzgMZCg,12114
74
+ ns2/lib/udp_client.py,sha256=SVLGFv8zoQKpAq7PVIXlsKKZc0tDRsNONKRaI6_G4wE,8165
75
+ ns2/lib/udp_server.py,sha256=SVSXDDKcJXwKfVt6wSi-OVHuhqvHPLDEhi6oe1yrvoQ,4130
76
+ ns2/snmp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ ns2/snmp/ns_dbus_service.py,sha256=HBdwTbD8BOGrth1RLm3iTkhpbiD9CLUl5O4-T1dfKZA,1090
78
+ ns2/snmp/pam_interface.py,sha256=30rfgehHs5W0LfjP5n_1MwcTDumfuSOBRilMO-0HIAo,500
79
+ ns2/snmp/snmp_interface.py,sha256=mKHVtb6plafu6AE0FZKeagjKVknfCXrqquP049LoCxg,2111
80
+ ns2/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ ns2/ui/assets/NOVUS_LOGO.svg,sha256=hWH30XO6n8oyygCKM8CMiBrh7GZ9b_mYP4NYNPm7Gso,17657
82
+ ns2/ui/assets/favicon.png,sha256=XLTBIuHHZKMbiomAb7OkSM6_1OKtIosnQ54YS756Z7Y,930
83
+ ns2/ui/firewalld_page.py,sha256=eyajETltf-MXVOgAhCiXVY2SvPTz5dHDxPXNZ3S3-l4,15425
84
+ ns2/ui/fpga_page.py,sha256=YL4E7KJ3NMERN0znQJi5hDSdY5cisAUrflVC6VDF04o,844
85
+ ns2/ui/login.py,sha256=vxp8_SB0bY8iGchLtlVEg8UBVRQKRE8ehH-U7MsWB54,2014
86
+ ns2/ui/main.py,sha256=DeS90WoFCQ-1n3RmHwv3415-MqITkAP_yb9kTk1ioug,5727
87
+ ns2/ui/networking_page.py,sha256=gO94EYy0kvOiFn0FXULRLIzkj2qP4j4LYTk-_WPOK74,15814
88
+ ns2/ui/ntp.py,sha256=dctme2aUy58InLe_qpico5XTeotvu5lGqYWUEgRwaIA,2842
89
+ ns2/ui/root.py,sha256=AOSGLR7W5dgc7vLr-Id7d58aP_oc8SSAaxsr4_KTuvw,621
90
+ ns2/ui/snmp_page.py,sha256=--M4Ee6ZEl-hUYXLOFSi9Fk2etjAEADUlRFgpO5qOsU,16057
91
+ ns2/ui/terminal.py,sha256=O5KN88ALoesJYFC-35iNWlE_PRP3f9MLRcez2R0np60,1929
92
+ ns2/ui/tests_page.py,sha256=5nUYA74ej09BzB11ZzKB50J7qUYDqYI7TtmIIAbTWJE,3529
93
+ ns2/ui/theme.py,sha256=fYA-sazLCdbOmwu4XsSQJhWpF9N7ynOrJAh-sRlrp8E,474
94
+ ns2/utils.py,sha256=MN74FaWEfMjeqehhACZwUs6wwcl7gkQ0H0z2kFZ9ixI,235
95
+ ns2-0.2.6.dist-info/METADATA,sha256=zj17uxevKFhoNFgGPXP-ZcyuFSDaOCf5qCns8-sSy_o,2125
96
+ ns2-0.2.6.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
97
+ ns2-0.2.6.dist-info/entry_points.txt,sha256=bUl6bswtqMP9fYxDM_KP-PENQPkV8uun1tDCEnGNa8E,38
98
+ ns2-0.2.6.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.3.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ ns=ns.ui.main:main
3
+