Spaces:
Sleeping
Sleeping
Ahmad Hammoudeh
commited on
Commit
·
a829326
1
Parent(s):
53dfc36
Update App.py
Browse files
App.py
CHANGED
|
@@ -1,14 +1,5 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def greet(name):
|
| 4 |
-
return "Hello " + name + "!!"
|
| 5 |
-
|
| 6 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 7 |
-
iface.launch()
|
| 8 |
-
|
| 9 |
-
'''
|
| 10 |
-
import gradio as gr
|
| 11 |
-
|
| 12 |
import os
|
| 13 |
|
| 14 |
os.system('!pip install pycryptodome -q')
|
|
@@ -62,5 +53,4 @@ with gr.Blocks() as demo:
|
|
| 62 |
result_button_decrypt.click(Decrypt_users_txt, inputs = input_text, outputs = output_text)
|
| 63 |
|
| 64 |
|
| 65 |
-
demo.queue(default_enabled = True).launch(debug = True)
|
| 66 |
-
'''
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
import os
|
| 4 |
|
| 5 |
os.system('!pip install pycryptodome -q')
|
|
|
|
| 53 |
result_button_decrypt.click(Decrypt_users_txt, inputs = input_text, outputs = output_text)
|
| 54 |
|
| 55 |
|
| 56 |
+
demo.queue(default_enabled = True).launch(debug = True)
|
|
|