From 57959d83c8c2052a71cbb09ab73ead9da7e2893c Mon Sep 17 00:00:00 2001 From: Russell Jarvis <rjjarvis@asu.edu> Date: Mon, 22 Jun 2020 20:44:25 +1000 Subject: [PATCH] contents --- app.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 9993a70..8bfaa9a 100644 --- a/app.py +++ b/app.py @@ -1,4 +1,11 @@ import streamlit as st +import os + +st.text(os.system('pwd')) +st.text(os.system('ls *')) +st.text(os.system('../ls *')) +st.text(os.system('../../ls *')) + import matplotlib.pyplot as plt import seaborn as sns @@ -89,8 +96,6 @@ if author_name: else: import os - st.text(os.system('pwd')) - st.text(os.system('ls *')) with open('data/_author_specificSayali Phatak.p','rb') as f: contents = pickle.load(f) -- GitLab