shiny


Nameshiny JSON
Version 0.9.0 PyPI version JSON
download
home_pagehttps://github.com/posit-dev/py-shiny
SummaryA web development framework for Python.
upload_time2024-04-16 15:24:51
maintainerNone
docs_urlNone
authorWinston Chang
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Shiny for Python

[![PyPI Latest Release](https://img.shields.io/pypi/v/shiny.svg)](https://pypi.org/project/shiny/)
[![Build status](https://img.shields.io/github/actions/workflow/status/posit-dev/py-shiny/pytest.yaml?branch=main)](https://img.shields.io/github/actions/workflow/status/posit-dev/py-shiny/pytest.yaml?branch=main)
[![Conda Latest Release](https://anaconda.org/conda-forge/shiny/badges/version.svg)](https://anaconda.org/conda-forge/shiny)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/shiny)](https://pypi.org/project/shiny/)
[![License](https://img.shields.io/github/license/posit-dev/py-shiny)](https://github.com/posit-dev/py-shiny/blob/main/LICENSE)

Shiny for Python is the best way to build fast, beautiful web applications in Python. You can build quickly with Shiny and create simple interactive visualizations and prototype applications in an afternoon. But unlike other frameworks targeted at data scientists, Shiny does not limit your app's growth. Shiny remains extensible enough to power large, mission-critical applications.

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:

- How [Shiny is different](https://posit.co/blog/why-shiny-for-python/) from Dash and Streamlit.

- How [reactive programming](https://shiny.posit.co/py/docs/reactive-programming.html) can help you build better applications.

- How to [use modules](https://shiny.posit.co/py/docs/workflow-modules.html) to efficiently develop large applications.

- 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).

## Join the conversation

If you have questions about Shiny for Python, or want to help us decide what to work on next, [join us on Discord](https://discord.gg/yMGCamUMnS).

## Getting started

To get started with shiny follow the [installation instructions](https://shiny.posit.co/py/docs/install.html) or just install it from pip.

```sh
pip install shiny
```

To install the latest development version:

```sh
# First install htmltools, then shiny
pip install https://github.com/posit-dev/py-htmltools/tarball/main
pip install https://github.com/posit-dev/py-shiny/tarball/main
```

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`.

## Development

* Shinylive built from the `main` branch: https://posit-dev.github.io/py-shiny/shinylive/py/examples/
* API documentation for the `main` branch:
    * https://posit-dev.github.io/py-shiny/docs/api/express/
    * https://posit-dev.github.io/py-shiny/docs/api/core/

If you want to do development on Shiny for Python:

```sh
pip install -e ".[dev,test]"
```

Additionally, you can install pre-commit hooks which will automatically reformat and lint the code when you make a commit:

```sh
pre-commit install

# To disable:
# pre-commit uninstall
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/posit-dev/py-shiny",
    "name": "shiny",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Winston Chang",
    "author_email": "winston@posit.co",
    "download_url": "https://files.pythonhosted.org/packages/76/da/99755041e436ae7385018afcce0275ff35367ab9e70a49f6877ace203647/shiny-0.9.0.tar.gz",
    "platform": "any",
    "description": "# Shiny for Python\n\n[![PyPI Latest Release](https://img.shields.io/pypi/v/shiny.svg)](https://pypi.org/project/shiny/)\n[![Build status](https://img.shields.io/github/actions/workflow/status/posit-dev/py-shiny/pytest.yaml?branch=main)](https://img.shields.io/github/actions/workflow/status/posit-dev/py-shiny/pytest.yaml?branch=main)\n[![Conda Latest Release](https://anaconda.org/conda-forge/shiny/badges/version.svg)](https://anaconda.org/conda-forge/shiny)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/shiny)](https://pypi.org/project/shiny/)\n[![License](https://img.shields.io/github/license/posit-dev/py-shiny)](https://github.com/posit-dev/py-shiny/blob/main/LICENSE)\n\nShiny for Python is the best way to build fast, beautiful web applications in Python. You can build quickly with Shiny and create simple interactive visualizations and prototype applications in an afternoon. But unlike other frameworks targeted at data scientists, Shiny does not limit your app's growth. Shiny remains extensible enough to power large, mission-critical applications.\n\nTo 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:\n\n- How [Shiny is different](https://posit.co/blog/why-shiny-for-python/) from Dash and Streamlit.\n\n- How [reactive programming](https://shiny.posit.co/py/docs/reactive-programming.html) can help you build better applications.\n\n- How to [use modules](https://shiny.posit.co/py/docs/workflow-modules.html) to efficiently develop large applications.\n\n- 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).\n\n## Join the conversation\n\nIf you have questions about Shiny for Python, or want to help us decide what to work on next, [join us on Discord](https://discord.gg/yMGCamUMnS).\n\n## Getting started\n\nTo get started with shiny follow the [installation instructions](https://shiny.posit.co/py/docs/install.html) or just install it from pip.\n\n```sh\npip install shiny\n```\n\nTo install the latest development version:\n\n```sh\n# First install htmltools, then shiny\npip install https://github.com/posit-dev/py-htmltools/tarball/main\npip install https://github.com/posit-dev/py-shiny/tarball/main\n```\n\nYou 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`.\n\n## Development\n\n* Shinylive built from the `main` branch: https://posit-dev.github.io/py-shiny/shinylive/py/examples/\n* API documentation for the `main` branch:\n    * https://posit-dev.github.io/py-shiny/docs/api/express/\n    * https://posit-dev.github.io/py-shiny/docs/api/core/\n\nIf you want to do development on Shiny for Python:\n\n```sh\npip install -e \".[dev,test]\"\n```\n\nAdditionally, you can install pre-commit hooks which will automatically reformat and lint the code when you make a commit:\n\n```sh\npre-commit install\n\n# To disable:\n# pre-commit uninstall\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A web development framework for Python.",
    "version": "0.9.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/posit-dev/py-shiny/issues",
        "Documentation": "https://shiny.posit.co/py/",
        "Homepage": "https://github.com/posit-dev/py-shiny",
        "Source Code": "https://github.com/posit-dev/py-shiny"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4a2d00c752eb6c7cd192e06d8614d4a0880caa516a8724a507743229cc99c6a",
                "md5": "9e1bef66d44809ca7446a3cde6d96ba9",
                "sha256": "2977f595fb6dfe7734678060b6b844ac1fe2701318502d403a89c6250f9847cc"
            },
            "downloads": -1,
            "filename": "shiny-0.9.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9e1bef66d44809ca7446a3cde6d96ba9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 3678964,
            "upload_time": "2024-04-16T15:24:49",
            "upload_time_iso_8601": "2024-04-16T15:24:49.756399Z",
            "url": "https://files.pythonhosted.org/packages/e4/a2/d00c752eb6c7cd192e06d8614d4a0880caa516a8724a507743229cc99c6a/shiny-0.9.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76da99755041e436ae7385018afcce0275ff35367ab9e70a49f6877ace203647",
                "md5": "ec5fe1d81042d43c001cd265f314634e",
                "sha256": "add19daeb6d5a43f4f60fbc89affed05f4f4b19ffc7ee252001288aa1724ccf9"
            },
            "downloads": -1,
            "filename": "shiny-0.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ec5fe1d81042d43c001cd265f314634e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3618587,
            "upload_time": "2024-04-16T15:24:51",
            "upload_time_iso_8601": "2024-04-16T15:24:51.688849Z",
            "url": "https://files.pythonhosted.org/packages/76/da/99755041e436ae7385018afcce0275ff35367ab9e70a49f6877ace203647/shiny-0.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-16 15:24:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "posit-dev",
    "github_project": "py-shiny",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "shiny"
}
        
Elapsed time: 0.33566s