You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -10,13 +9,13 @@ Shiny for Python is the best way to build fast, beautiful web applications in Py
10
9
11
10
To learn more about Shiny see the [Shiny for Python website](https://shiny.posit.co/py/). If you're new to the framework we recommend these resources:
12
11
13
-
-How [Shiny is different](https://posit.co/blog/why-shiny-for-python/) from Dash and Streamlit.
12
+
- How [Shiny is different](https://posit.co/blog/why-shiny-for-python/) from Dash and Streamlit.
14
13
15
-
-How [reactive programming](https://shiny.posit.co/py/docs/reactive-programming.html) can help you build better applications.
14
+
- How [reactive programming](https://shiny.posit.co/py/docs/reactive-programming.html) can help you build better applications.
16
15
17
-
-How to [use modules](https://shiny.posit.co/py/docs/workflow-modules.html) to efficiently develop large applications.
16
+
- How to [use modules](https://shiny.posit.co/py/docs/workflow-modules.html) to efficiently develop large applications.
18
17
19
-
-Hosting applications for free on [shinyapps.io](https://shiny.posit.co/py/docs/deploy.html#deploy-to-shinyapps.io-cloud-hosting), [Hugging Face](https://shiny.posit.co/blog/posts/shiny-on-hugging-face/), or [Shinylive](https://shiny.posit.co/py/docs/shinylive.html).
18
+
- Hosting applications for free on [shinyapps.io](https://shiny.posit.co/py/docs/deploy.html#deploy-to-shinyapps.io-cloud-hosting), [Hugging Face](https://shiny.posit.co/blog/posts/shiny-on-hugging-face/), or [Shinylive](https://shiny.posit.co/py/docs/shinylive.html).
20
19
21
20
## Join the conversation
22
21
@@ -26,38 +25,33 @@ If you have questions about Shiny for Python, or want to help us decide what to
26
25
27
26
To get started with shiny follow the [installation instructions](https://shiny.posit.co/py/docs/install.html) or just install it from pip.
You can create and run your first application with:
42
-
43
-
```
44
-
shiny create .
45
-
shiny run app.py --reload
46
-
```
40
+
You can create and run your first application with `shiny create`, the CLI will ask you which template you would like to use. You can either run the app with the Shiny extension, or call `shiny run app.py --reload --launch-browser`.
47
41
48
42
## Development
49
43
50
44
API documentation for the `main` branch of Shiny: https://posit-dev.github.io/py-shiny/api/
51
45
52
46
If you want to do development on Shiny for Python:
53
47
54
-
```sh
48
+
```sh
55
49
pip install -e ".[dev,test]"
56
50
```
57
51
58
52
Additionally, you can install pre-commit hooks which will automatically reformat and lint the code when you make a commit:
0 commit comments