File size: 580 Bytes
46af628
14ff9c4
b62e42f
6169f27
 
 
 
 
46af628
14ff9c4
 
9031d57
 
 
 
dd3f3bf
 
78842d8
c112768
b3d7164
2e7f0bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import streamlit as st
import pandas as pd
from huggingface_hub import Repository
import os 
#HF_TOKEN = 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
#repo = Repository(
 #   local_dir="data", clone_from='ppsingh/annotation_data', use_auth_token=HF_TOKEN
#)

data = pd.read_csv("test.csv")
for line in data:
  st.write(line)
  
title = st.text_input('Movie title', 'Life of Brian')
if st.button('Submit'):
  new_row  = {'Sentences': title}
  data = data.append(new_row, ignore_index=True)
  st.write(data)
  data.to_csv('./test.csv', index= False)

st.write(os.environ.get("HF_TOKEN"))