mirror of https://github.com/Justuser3310/jetwork/
parent
12b70d4325
commit
e278115092
@ -0,0 +1,11 @@
|
||||
import streamlit as st
|
||||
|
||||
st.title('jetwork')
|
||||
|
||||
# Получаем все сайты
|
||||
from os import walk
|
||||
sites = next(walk('cached/'), (None, None, []))[1]
|
||||
|
||||
for i in sites:
|
||||
addr = f"http://127.0.0.1:8000/{i}/index.html"
|
||||
f"[{i}]({addr})"
|
Loading…
Reference in new issue