o-862-268-o commited on
Commit
7097639
·
verified ·
1 Parent(s): e37dd4b
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -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
+