Skip to content

Commit eeacac4

Browse files
[python] support describing streamlit apps
1 parent 5653162 commit eeacac4

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.8.15
4+
5+
- Support describing python files using streamlit
6+
37
## 2.8.14
48

59
- Support describing app.R files

python/hal9/describe.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
'shiny': {
99
'files': ['app.R'],
1010
'contents': ['library(shiny)']
11+
},
12+
'streamlit': {
13+
'files': ['app.py', 'main.py'],
14+
'contents': ['import streamlit']
1115
}
1216
}
1317

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hal9"
3-
version = "2.8.14"
3+
version = "2.8.15"
44
description = ""
55
authors = ["Javier Luraschi <javier@hal9.ai>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)