annotation_dev / app.py
ppsingh's picture
Update app.py
d70c8d8
raw
history blame
839 Bytes
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
#)
from pathlib import Path
# assign directory
directory = os.getcwd()
# iterate over files in
# that directory
files = Path(directory).glob('*')
for file in files:
st.write(file)
auth_token = os.environ.get("TOKEN_FROM_SECRET") or True
st.write(auth_token)
data = pd.read_csv("test1.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)
st.write(os.getcwd())
data.to_csv('test.csv', index= False)