mirror of
https://github.com/Justuser3310/jetwork.git
synced 2025-02-08 01:37:38 +00:00
12 lines
225 B
Python
12 lines
225 B
Python
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}"
|
|
f"[{i}]({addr})"
|