Spaces:
Running
Running
Robert Castagna
commited on
Commit
·
9cee292
1
Parent(s):
42a93db
dark theme
Browse files- .gitignore +0 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
secrets.json
|
2 |
-
config.json
|
3 |
edgar-crawler/
|
4 |
.venv/
|
|
|
1 |
secrets.json
|
|
|
2 |
edgar-crawler/
|
3 |
.venv/
|
app.py
CHANGED
@@ -36,7 +36,7 @@ df = pd.DataFrame(rows, columns=column_names)
|
|
36 |
|
37 |
# setup pygwalker configuration: https://github.com/Kanaries/pygwalker, https://docs.kanaries.net/pygwalker/use-pygwalker-with-streamlit.en
|
38 |
#pyg_html = pyg.to_html(df, dark="dark")
|
39 |
-
pyg_html = pyg.walk(df, return_html=True)
|
40 |
|
41 |
components.html(pyg_html, height=1000, scrolling=True)
|
42 |
|
|
|
36 |
|
37 |
# setup pygwalker configuration: https://github.com/Kanaries/pygwalker, https://docs.kanaries.net/pygwalker/use-pygwalker-with-streamlit.en
|
38 |
#pyg_html = pyg.to_html(df, dark="dark")
|
39 |
+
pyg_html = pyg.walk(df, dark = 'dark', return_html=True)
|
40 |
|
41 |
components.html(pyg_html, height=1000, scrolling=True)
|
42 |
|