langdonholmes commited on
Commit
5eb2119
1 Parent(s): 295478c

Update README

Browse files
Files changed (2) hide show
  1. README.md +13 -1
  2. app.py +1 -1
README.md CHANGED
@@ -10,4 +10,16 @@ pinned: false
10
  license: apache-2.0
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  license: apache-2.0
11
  ---
12
 
13
+ For development, try working with pipenv:
14
+
15
+ 1. Clone the repository
16
+ `git clone https://huggingface.co/spaces/langdonholmes/piilo`
17
+
18
+ 2. Install dependencies from Pipfile
19
+ `pip install --user pipenv`
20
+
21
+ 3. Run streamlit app
22
+ `streamlit run .\app.py`
23
+
24
+ TODO:
25
+ Create a command line version using Typer in this same repository.
app.py CHANGED
@@ -139,7 +139,7 @@ analyzer_load_state.empty()
139
 
140
  st_text = st.text_area(
141
  label="Type in some text",
142
- value="Learning Reflection\n\nJohn Williams and Samantha Morales\n\nIn this course I learned many things. As Liedtke (2004) said, \"Students grow when they learn\" (Erickson et al. 1998).\n\nBy John H. Williams -- (714) 328-9989 -- [email protected]",
143
  height=200,
144
  )
145
 
 
139
 
140
  st_text = st.text_area(
141
  label="Type in some text",
142
+ value="Learning Reflection\n\nWritten by John Williams and Samantha Morales\n\nIn this course I learned many things. As Liedtke (2004) said, \"Students grow when they learn\" (Erickson et al. 1998).\n\nBy John H. Williams -- (714) 328-9989 -- [email protected]",
143
  height=200,
144
  )
145