python+streamlit+sqlite+弹窗的实例。

完全自已查资料写的,年龄大了,记性差了,都放在网上吧!喜欢的随手点个赞,谢谢!

import streamlit as st

import sqlite3

from sqlite3 import Connection

from contextlib import closing

URI_SQLITE_DB = "dbrag.db"


 

def main():

    st.title("混沌知识库")

    conn = get_connection(URI_SQLITE_DB)

    init_db_workarea(conn)

    init_db_worklist(conn)

    build_sidebar(conn)

#查询数据库中的表名

def get_tables():

    with get_connection() as conn:

        return [table for table in conn.execute(

            "SELECT name FROM sqlite_master WHERE type='table'"

        ).fetchall()]

#执行sql操作

def insert_workarea(conn: Connection,workareaname):

    conn.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值