다른 명령
데브카페에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2024년 10월 15일 (화) 00:29 Devcafe 토론 기여님이 Streamlit real time 문서를 만들었습니다 (새 문서: ==streamlit real time chart == <source lang=python> import streamlit as st import pandas as pd import cx_Oracle import altair as alt import time import json # Function to load the database configuration from a JSON file def load_db_config(file_path): with open(file_path, 'r') as f: config = json.load(f) return config # Load the database configuration from the JSON file db_config = load_db_config('db_config.json') # Setup Oracle connection using cx_Oracle dsn_...)