Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
<style>
|
3 |
body, html {
|
4 |
margin: 0;
|
@@ -107,3 +107,16 @@ document.body.addEventListener('click', () => {
|
|
107 |
<a target="_blank" href="https://github.com/klevron/threejs-toys">github/threejs-toys</a>
|
108 |
</div>
|
109 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html="""
|
2 |
<style>
|
3 |
body, html {
|
4 |
margin: 0;
|
|
|
107 |
<a target="_blank" href="https://github.com/klevron/threejs-toys">github/threejs-toys</a>
|
108 |
</div>
|
109 |
</div>
|
110 |
+
"""
|
111 |
+
|
112 |
+
import gradio as gr
|
113 |
+
import requests
|
114 |
+
import io
|
115 |
+
import random
|
116 |
+
import os
|
117 |
+
import time
|
118 |
+
from PIL import Image
|
119 |
+
from deep_translator import GoogleTranslator
|
120 |
+
import json
|
121 |
+
|
122 |
+
g.html(html)
|