{"id":16295528,"url":"https://github.com/santoshshinde2012/streamlit-app","last_synced_at":"2026-04-17T01:32:16.239Z","repository":{"id":251081758,"uuid":"836339164","full_name":"santoshshinde2012/streamlit-app","owner":"santoshshinde2012","description":"Streamlit Demo App","archived":false,"fork":false,"pushed_at":"2024-08-03T18:54:21.000Z","size":484,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-30T07:56:11.974Z","etag":null,"topics":["data-science","python","react","streamlit"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/santoshshinde2012.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-07-31T16:29:30.000Z","updated_at":"2024-08-03T18:54:23.000Z","dependencies_parsed_at":"2025-05-31T13:08:24.543Z","dependency_job_id":"c49b6bf4-988a-421c-8afd-de4187a6a4c4","html_url":"https://github.com/santoshshinde2012/streamlit-app","commit_stats":null,"previous_names":["santoshshinde2012/streamlit-app"],"tags_count":0,"template":true,"template_full_name":"streamlit/app-starter-kit","purl":"pkg:github/santoshshinde2012/streamlit-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santoshshinde2012%2Fstreamlit-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santoshshinde2012%2Fstreamlit-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santoshshinde2012%2Fstreamlit-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santoshshinde2012%2Fstreamlit-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/santoshshinde2012","download_url":"https://codeload.github.com/santoshshinde2012/streamlit-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santoshshinde2012%2Fstreamlit-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31911478,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-science","python","react","streamlit"],"created_at":"2024-10-10T20:19:01.853Z","updated_at":"2026-04-17T01:32:16.215Z","avatar_url":"https://github.com/santoshshinde2012.png","language":"CSS","funding_links":["https://www.buymeacoffee.com/santoshshin"],"categories":[],"sub_categories":[],"readme":"# 📦 Streamlit App\n\nStreamlit is a powerful tool for creating interactive web applications using Python. However, there are times when the built-in components may not meet your specific needs. In such cases, you can create custom components using modern front-end technologies like Vite, React, and TypeScript. This guide will walk you through the process of setting up a custom component for your Streamlit app, enabling a seamless integration of sophisticated front-end features with the simplicity of Python.\n\n## How to run locally\n\n1. Make sure to install required python packages\n   \n```\npip install -r requirements.txt\n```\n\n2. Make sure to install all required npm packages in frontend project\n\n```\ncd streamlit-app/rbutton/frontend\n\nnpm install\n```\n\n3. If you want to run application dev mode update `.env` file\n\n```\nDEV_MODE=true\n\n// this path is for your running frontend application\nFRONTEND_HOST=http://localhost:5173\n```\n\n4. If you want to run production build\n\n```\ncd streamlit-app/rbutton/frontend\n\nnpm run build\n```\n\n## Demo App\n\n[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://app-app-jxe6thwxf43qfvabwmrrlk.streamlit.app/)\n\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://app-app-jxe6thwxf43qfvabwmrrlk.streamlit.app/\"\u003e\n     \u003cimg src=\"wiki/demo.gif\" alt=\"demp\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## Project Structure\n\n````\nstreamlit-app/\n├── streamlit_app.py\n├── .env\n├── requirements.txt\n├── rbutton/\n│   ├── __init__.py\n│   ├── frontend/\n│   │   ├── dist/\n│   │   │   ├── index.html\n│   │   │   ├── assets\n│   │   │   │   ├── index.js\n│   │   │   │   └── index.css\n│   │   ├── src/\n│   │   │   ├── App.tsx\n│   │   │   ├── assets\n│   │   │   │   └── ...\n│   │   │   ├── components\n│   │   │   │   └── ...\n│   │   │   └── ...\n│   │   ├── package.json\n│   │   └── vite.config.ts\n````\n\n\n## Further Reading\n\n- [30 Days of Streamlit](https://30days.streamlit.app/)\n- [How to build your own Streamlit component](https://blog.streamlit.io/how-to-build-your-own-streamlit-component/)\n- [Understanding Streamlit's client-server architecture](https://docs.streamlit.io/develop/concepts/architecture/architecture)\n- [Wiki](https://github.com/streamlit/streamlit/wiki)\n\n\n\n### Connect with me on\n\u003cdiv id=\"badges\"\u003e\n  \u003ca href=\"https://twitter.com/shindesan2012\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/shindesan2012-black?style=for-the-badge\u0026logo=twitter\u0026logoColor=white\" alt=\"Twitter Badge\"/\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://www.linkedin.com/in/shindesantosh/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/shindesantosh-blue?style=for-the-badge\u0026logo=linkedin\u0026logoColor=white\" alt=\"LinkedIn Badge\"/\u003e\n  \u003c/a\u003e\n   \u003ca href=\"https://blog.santoshshinde.com/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Blog-black?style=for-the-badge\u0026logo=medium\u0026logoColor=white\" alt=\"Medium Badge\"/\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://www.buymeacoffee.com/santoshshin\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://cdn.buymeacoffee.com/buttons/default-black.png\" alt=\"Buy Me A Coffee\" height=\"28\" width=\"100\"\u003e\n    \u003c/a\u003e\n\u003c/div\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsantoshshinde2012%2Fstreamlit-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsantoshshinde2012%2Fstreamlit-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsantoshshinde2012%2Fstreamlit-app/lists"}