Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,6 @@ import gradio as gr
|
|
| 2 |
from tab.tab1_qkd import get_tab1_qkd
|
| 3 |
from tab.tab2_encryption import get_tab2_encryption
|
| 4 |
from tab.tab3_decryption import get_tab3_decryption
|
| 5 |
-
from tab.tab4_intrusion_detection import get_tab4_intrusion_detection
|
| 6 |
from tab.tab5_randomness_visualizer import get_tab5_randomness
|
| 7 |
from tab.tab6_noise_simulation import get_tab6_noise_simulation
|
| 8 |
|
|
@@ -18,7 +17,6 @@ def create_interface():
|
|
| 18 |
get_tab1_qkd(qkd_key_state)
|
| 19 |
get_tab2_encryption(qkd_key_state)
|
| 20 |
get_tab3_decryption(qkd_key_state)
|
| 21 |
-
get_tab4_intrusion_detection()
|
| 22 |
get_tab5_randomness()
|
| 23 |
get_tab6_noise_simulation()
|
| 24 |
|
|
|
|
| 2 |
from tab.tab1_qkd import get_tab1_qkd
|
| 3 |
from tab.tab2_encryption import get_tab2_encryption
|
| 4 |
from tab.tab3_decryption import get_tab3_decryption
|
|
|
|
| 5 |
from tab.tab5_randomness_visualizer import get_tab5_randomness
|
| 6 |
from tab.tab6_noise_simulation import get_tab6_noise_simulation
|
| 7 |
|
|
|
|
| 17 |
get_tab1_qkd(qkd_key_state)
|
| 18 |
get_tab2_encryption(qkd_key_state)
|
| 19 |
get_tab3_decryption(qkd_key_state)
|
|
|
|
| 20 |
get_tab5_randomness()
|
| 21 |
get_tab6_noise_simulation()
|
| 22 |
|