streamlit-with-ssl


Namestreamlit-with-ssl JSON
Version 1.15.2.1 PyPI version JSON
download
home_pagehttps://streamlit.io
SummaryThe fastest way to build data apps in Python (better with SSL)
upload_time2022-12-14 17:57:48
maintainer
docs_urlNone
authorSnowflake Inc
requires_python>=3.7, !=3.9.7
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to Streamlit :wave:

**The fastest way to build and share data apps.**

Streamlit lets you turn data scripts into shareable web apps in minutes, not weeks. It’s all Python, open-source, and free! And once you’ve created an app you can use our [Community Cloud platform](https://streamlit.io/cloud) to deploy, manage, and share your app!

![Example of live coding an app in Streamlit|635x380](https://raw.githubusercontent.com/streamlit/docs/main/public/images/Streamlit_overview.gif)

## Installation

```bash
pip install streamlit
streamlit hello
```

Streamlit can also be installed in a virtual environment on [Windows](https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment#on-windows), [Mac](https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment#on-mac--linux), and [Linux](https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment#on-mac--linux).

## A little example

Streamlit makes it incredibly easy to build interactive apps:

```python
import streamlit as st

x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
```

<img src="https://raw.githubusercontent.com/streamlit/docs/main/public/images/simple_example.png"/>

## A bigger example

Streamlit's simple and focused API lets you build incredibly rich and powerful tools.  [This demo project](https://github.com/streamlit/demo-self-driving) lets you browse the entire [Udacity self-driving-car dataset](https://github.com/udacity/self-driving-car) and run inference in real-time using the [YOLO object detection net](https://pjreddie.com/darknet/yolo).

![Final App Animation](https://raw.githubusercontent.com/streamlit/docs/main/public/images/complex_app_example.gif)

The complete demo is implemented in less than 300 lines of Python. In fact, the app contains [only 23 Streamlit calls](https://github.com/streamlit/demo-self-driving/blob/master/streamlit_app.py) which illustrates all the major building blocks of Streamlit. You can try it right now at [share.streamlit.io/streamlit/demo-self-driving](https://share.streamlit.io/streamlit/demo-self-driving).

## The Streamlit GitHub badge

Streamlit's GitHub badge helps others find and play with your Streamlit app.

[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/streamlit/demo-face-gan)

Once you deploy your app, you can embed this badge right into your GitHub readme.md as follows:

```markdown
[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/yourGitHubName/yourRepo/yourApp/)
```

## More Information

- Our [launch post](https://towardsdatascience.com/coding-ml-tools-like-you-code-ml-models-ddba3357eace?source=friends_link&sk=f7774c54571148b33cde3ba6c6310086) explaining why we created Streamlit
- Our [Community Cloud platform announcement](https://blog.streamlit.io/introducing-streamlit-cloud)
- Our amazing [community](https://discuss.streamlit.io/) where Streamlit users share apps, ask questions, and help each other out
- Streamlit [documentation](https://docs.streamlit.io/) and [blog](https://blog.streamlit.io) for the latest Streamlit info
- More [demo projects](https://github.com/streamlit/) to inspire you
- And if you would like to contribute, see [instructions here](https://github.com/streamlit/streamlit/wiki/Contributing)

## Community Cloud

With [Community Cloud](https://streamlit.io/cloud) you can deploy, manage, and share your apps with the world, directly from Streamlit — all for free. Sign-up [here](https://share.streamlit.io/signup).

## License

Streamlit is completely free and open-source and licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://streamlit.io",
    "name": "streamlit-with-ssl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7, !=3.9.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Snowflake Inc",
    "author_email": "hello@streamlit.io",
    "download_url": "https://files.pythonhosted.org/packages/d3/27/aa988117e0b0a4d036fdc2c0652c085213c8400984e73b0265152db9d4bd/streamlit-with-ssl-1.15.2.1.tar.gz",
    "platform": null,
    "description": "# Welcome to Streamlit :wave:\n\n**The fastest way to build and share data apps.**\n\nStreamlit lets you turn data scripts into shareable web apps in minutes, not weeks. It\u2019s all Python, open-source, and free! And once you\u2019ve created an app you can use our\u00a0[Community Cloud platform](https://streamlit.io/cloud)\u00a0to deploy, manage, and share your app!\n\n![Example of live coding an app in Streamlit|635x380](https://raw.githubusercontent.com/streamlit/docs/main/public/images/Streamlit_overview.gif)\n\n## Installation\n\n```bash\npip install streamlit\nstreamlit hello\n```\n\nStreamlit can also be installed in a virtual environment on [Windows](https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment#on-windows), [Mac](https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment#on-mac--linux), and [Linux](https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment#on-mac--linux).\n\n## A little example\n\nStreamlit makes it incredibly easy to build interactive apps:\n\n```python\nimport streamlit as st\n\nx = st.slider('Select a value')\nst.write(x, 'squared is', x * x)\n```\n\n<img src=\"https://raw.githubusercontent.com/streamlit/docs/main/public/images/simple_example.png\"/>\n\n## A bigger example\n\nStreamlit's simple and focused API lets you build incredibly rich and powerful tools.\u00a0 [This demo project](https://github.com/streamlit/demo-self-driving) lets you browse the entire [Udacity self-driving-car dataset](https://github.com/udacity/self-driving-car) and run inference in real-time using the [YOLO object detection net](https://pjreddie.com/darknet/yolo).\n\n![Final App Animation](https://raw.githubusercontent.com/streamlit/docs/main/public/images/complex_app_example.gif)\n\nThe complete demo is implemented in less than 300 lines of Python. In fact, the app contains [only 23 Streamlit calls](https://github.com/streamlit/demo-self-driving/blob/master/streamlit_app.py) which illustrates all the major building blocks of Streamlit. You can try it right now at [share.streamlit.io/streamlit/demo-self-driving](https://share.streamlit.io/streamlit/demo-self-driving).\n\n## The Streamlit GitHub badge\n\nStreamlit's GitHub badge helps others find and play with your Streamlit app.\n\n[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/streamlit/demo-face-gan)\n\nOnce you deploy your app, you can embed this badge right into your GitHub readme.md as follows:\n\n```markdown\n[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/yourGitHubName/yourRepo/yourApp/)\n```\n\n## More Information\n\n- Our [launch post](https://towardsdatascience.com/coding-ml-tools-like-you-code-ml-models-ddba3357eace?source=friends_link&sk=f7774c54571148b33cde3ba6c6310086) explaining why we created Streamlit\n- Our [Community Cloud platform announcement](https://blog.streamlit.io/introducing-streamlit-cloud)\n- Our amazing [community](https://discuss.streamlit.io/) where Streamlit users share apps, ask questions, and help each other out\n- Streamlit [documentation](https://docs.streamlit.io/) and [blog](https://blog.streamlit.io) for the latest Streamlit info\n- More [demo projects](https://github.com/streamlit/) to inspire you\n- And if you would like to contribute, see [instructions here](https://github.com/streamlit/streamlit/wiki/Contributing)\n\n## Community Cloud\n\nWith [Community Cloud](https://streamlit.io/cloud) you can deploy, manage, and share your apps with the world, directly from Streamlit \u2014 all for free. Sign-up [here](https://share.streamlit.io/signup).\n\n## License\n\nStreamlit is completely free and open-source and licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license.\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "The fastest way to build data apps in Python (better with SSL)",
    "version": "1.15.2.1",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "8919801fc1a573c4721be158e645475d",
                "sha256": "98ec8679c3c4c765831fd43504c20244c8d80af64345d67cc93af13005299f11"
            },
            "downloads": -1,
            "filename": "streamlit_with_ssl-1.15.2.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8919801fc1a573c4721be158e645475d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7, !=3.9.7",
            "size": 9247675,
            "upload_time": "2022-12-14T17:57:38",
            "upload_time_iso_8601": "2022-12-14T17:57:38.334744Z",
            "url": "https://files.pythonhosted.org/packages/23/96/15da65d8451a8c6c3ebcb15dacc47347b55fe7b917a3deafa6ae5c1c916a/streamlit_with_ssl-1.15.2.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f9c8fc3fff5f8216444920101bca4d0c",
                "sha256": "07c6b56f399ec4ad16491ed824f61ecad9ea65bbe81b885eec81472fd5ad77a2"
            },
            "downloads": -1,
            "filename": "streamlit-with-ssl-1.15.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f9c8fc3fff5f8216444920101bca4d0c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, !=3.9.7",
            "size": 8957165,
            "upload_time": "2022-12-14T17:57:48",
            "upload_time_iso_8601": "2022-12-14T17:57:48.157018Z",
            "url": "https://files.pythonhosted.org/packages/d3/27/aa988117e0b0a4d036fdc2c0652c085213c8400984e73b0265152db9d4bd/streamlit-with-ssl-1.15.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-14 17:57:48",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "streamlit-with-ssl"
}
        
Elapsed time: 0.01972s