nekoniii3 commited on
Commit
c66e024
1 Parent(s): 807dc85
Files changed (2) hide show
  1. app.py +17 -0
  2. requirements.txt +1 -0
app.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(file): return file
4
+
5
+ with gr.Blocks() as demo:
6
+
7
+ title = "<h2>OBJファイルビューワー</h2>"
8
+ message = "<h3>左にOBJファイルをアップすると自動的に表示されます。<br>"
9
+ message += "他のファイルを開く場合は一度×ボタンで消去して下さい。</h3>"
10
+ gr.Markdown(title + "<h3>" + message + "</h3>")
11
+
12
+ with gr.Row():
13
+ inputs = gr.File(label="OBJファイル")
14
+ outputs = gr.Model3D(label="3DModel",interactive=False)
15
+ inputs.upload(fn=greet, inputs=inputs, outputs=outputs)
16
+
17
+ demo.launch()
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio