File size: 330 Bytes
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




repo, repo_df = data_func.pull_read()

def screen_note_main():
    

    st.subheader("Girilen Veriler")
    st.write(repo_df)
        
        
if __name__ == "__main__":
    screen_note_main()