Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import json
|
2 |
import gradio as gr
|
|
|
3 |
|
4 |
def update_swagger(swagger_content):
|
5 |
try:
|
@@ -15,14 +16,20 @@ def update_swagger(swagger_content):
|
|
15 |
|
16 |
# Convert back to JSON string
|
17 |
updated_swagger = json.dumps(swagger_data, indent=2)
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
except Exception as e:
|
20 |
-
return f"Error updating swagger.json: {e}"
|
21 |
|
22 |
demo = gr.Interface(
|
23 |
fn=update_swagger,
|
24 |
inputs=gr.Textbox(lines=20, label="Input Swagger JSON"),
|
25 |
-
outputs=gr.Textbox(lines=20, label="Updated Swagger JSON")
|
26 |
)
|
27 |
|
28 |
-
demo.launch()
|
|
|
1 |
import json
|
2 |
import gradio as gr
|
3 |
+
import tempfile
|
4 |
|
5 |
def update_swagger(swagger_content):
|
6 |
try:
|
|
|
16 |
|
17 |
# Convert back to JSON string
|
18 |
updated_swagger = json.dumps(swagger_data, indent=2)
|
19 |
+
|
20 |
+
# Save to a temporary file for download
|
21 |
+
with tempfile.NamedTemporaryFile(delete=False, suffix=".json") as temp_file:
|
22 |
+
temp_file.write(updated_swagger.encode("utf-8"))
|
23 |
+
temp_file_path = temp_file.name
|
24 |
+
|
25 |
+
return updated_swagger, temp_file_path
|
26 |
except Exception as e:
|
27 |
+
return f"Error updating swagger.json: {e}", None
|
28 |
|
29 |
demo = gr.Interface(
|
30 |
fn=update_swagger,
|
31 |
inputs=gr.Textbox(lines=20, label="Input Swagger JSON"),
|
32 |
+
outputs=[gr.Textbox(lines=20, label="Updated Swagger JSON"), gr.File(label="Download Updated JSON")]
|
33 |
)
|
34 |
|
35 |
+
demo.launch()
|