File tree Expand file tree Collapse file tree 6 files changed +585
-0
lines changed
Expand file tree Collapse file tree 6 files changed +585
-0
lines changed Original file line number Diff line number Diff line change 1+ # Python-generated files
2+ __pycache__ /
3+ * .py [oc ]
4+ build /
5+ dist /
6+ wheels /
7+ * .egg-info
8+
9+ # Virtual environments
10+ .venv
Original file line number Diff line number Diff line change 1+ 3.9
Original file line number Diff line number Diff line change 1+ # Shiny for Python Getting Started
2+
3+ ``` bash
4+ uv init [-p 3.9]
5+ uv add shiny
6+
7+ source .venv/bin/activate
8+
9+ shiny --version
10+
11+ shiny --help
12+
13+ shiny create --help
14+ ```
15+
Original file line number Diff line number Diff line change 1+ def main ():
2+ print ("Hello from shiny-for-python!" )
3+
4+
5+ if __name__ == "__main__" :
6+ main ()
Original file line number Diff line number Diff line change 1+ [project ]
2+ name = " shiny-for-python"
3+ version = " 0.1.0"
4+ description = " Add your description here"
5+ readme = " README.md"
6+ requires-python = " >=3.9"
7+ dependencies = [
8+ " shiny>=1.2.1" ,
9+ ]
You can’t perform that action at this time.
0 commit comments