Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
o-862-268-o
/
licentia
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
o-862-268-o
commited on
Jun 24, 2024
Commit
7097639
·
verified
·
1 Parent(s):
e37dd4b
_
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,9 @@
1
+
from huggingface_hub import HfFileSystem
2
+
import gradio as gr
3
+
fs = HfFileSystem()
4
+
5
+
with open('/spaces/o-862-268-o/licentia/datum__licentia','rb') as f:
6
+
data = f.read()
7
+
8
+
gr.Text(data)
9
+