File size: 334 Bytes
c352470
 
 
 
 
 
 
 
1ac840c
c352470
 
 
1ac840c
c352470
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import streamlit as st
import pandas as pd
import data_func
from data_func import DATASET_REPO_URL,DATA_FILENAME,DATA_FILE,HF_TOKEN






def screen_note_main():
    
    repo, repo_df = data_func.pull_read()
    st.subheader("Girilen Veriler")
    st.write(repo_df)
        
        
if __name__ == "__main__":
    screen_note_main()