Evanderlaan commited on
Commit
67f9cb6
·
verified ·
1 Parent(s): a4a221d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from datasets import load_dataset
2
+ import streamlit as st
3
+
4
+ # Load your dataset (replace 'your-dataset' with the actual dataset name)
5
+ csv_url = load_dataset('https://huggingface.co/datasets/NENS/wim_data/resolve/main/input_employees/boran.csv')
6
+
7
+ df = pd.read_csv(csv_url)
8
+
9
+ st.write(df)
10
+
11
+
12
+ df.to_csv('https://huggingface.co/datasets/NENS/wim_data/resolve/main/input_employees/boran.csv')