{"id":13320447,"url":"https://github.com/antonlydell/streamlit-passwordless-app","last_synced_at":"2026-04-20T04:37:43.835Z","repository":{"id":238142896,"uuid":"794593860","full_name":"antonlydell/streamlit-passwordless-app","owner":"antonlydell","description":"The streamlit-passwordless showcase app.","archived":false,"fork":false,"pushed_at":"2025-01-19T10:11:06.000Z","size":73,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T02:18:30.975Z","etag":null,"topics":["passkeys","streamlit","streamlit-component"],"latest_commit_sha":null,"homepage":"https://passwordless.streamlit.app/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/antonlydell.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-05-01T14:43:31.000Z","updated_at":"2025-02-19T07:01:09.000Z","dependencies_parsed_at":"2024-05-04T15:51:58.559Z","dependency_job_id":"51d82374-c410-4d7f-b1f7-4dd19c00773d","html_url":"https://github.com/antonlydell/streamlit-passwordless-app","commit_stats":null,"previous_names":["antonlydell/streamlit-passwordless-app"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/antonlydell/streamlit-passwordless-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonlydell%2Fstreamlit-passwordless-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonlydell%2Fstreamlit-passwordless-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonlydell%2Fstreamlit-passwordless-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonlydell%2Fstreamlit-passwordless-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antonlydell","download_url":"https://codeload.github.com/antonlydell/streamlit-passwordless-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonlydell%2Fstreamlit-passwordless-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32032880,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["passkeys","streamlit","streamlit-component"],"created_at":"2024-07-29T18:36:08.809Z","updated_at":"2026-04-20T04:37:43.805Z","avatar_url":"https://github.com/antonlydell.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"streamlit-passwordless-app\n==========================\n\n|Streamlit|\n\n\nA Streamlit application to showcase the `streamlit-passwordless`_ library.\n\n.. _streamlit-passwordless: https://github.com/antonlydell/streamlit-passwordless\n\n\nInstallation\n------------\n\nInstall the project to run it locally:\n\n.. code-block:: bash\n\n   ~ $ mkdir stp_app \u0026\u0026 cd stp_app\n   ~/stp_app $ git clone https://github.com/antonlydell/streamlit-passwordless-app.git .\n   ~/stp_app $ python -m venv .venv\n   ~/stp_app $ source .venv/bin/activate\n   ~/stp_app (.venv) $ python -m pip install -r requirements.txt\n\nOn Windows you should replace with ``source .venv/bin/activate`` with ``./.venv/bin/Activate.ps1``.\nCreate an account with `Bitwarden Passwordless.dev`_ if you do not already have one and then\ncreate a local (``~/stp_app/.streamlit/secrets.toml``) or global (``~/.streamlit/secrets.toml``)\n`Streamlit secrets`_ file. Paste the contents below into the file:\n\n.. _Bitwarden Passwordless.dev: https://admin.passwordless.dev/Account/Login\n.. _Streamlit secrets: https://docs.streamlit.io/develop/api-reference/connections/secrets.toml\n\n.. code-block:: toml\n\n   [streamlit-passwordless]\n   STP_BWP_PUBLIC_KEY = '\u003cPUBLIC_KEY\u003e'\n   STP_BWP_PRIVATE_KEY = '\u003cPRIVATE_KEY\u003e'\n   STP_DB_URL = '\u003cDB_URL\u003e'\n\n\n``\u003cPUBLIC_KEY\u003e`` and ``\u003cPRIVATE_KEY\u003e`` should be replaced by the public key and private key\nof your Bitwarden Passwordless.dev account respectively. The *private key* is called *secret key*\nin Bitwarden Passwordless.dev. Replace ``\u003cDB_URL\u003e`` with the `SQLAlchemy database URL`_ of the\nstreamlit-passwordless user database. Specifying ``STP_DB_URL`` is optional and if not specified\na SQLite database (*streamlit_passwordless.db*) located in the current working directory is used.\n\n.. _SQLAlchemy database URL : https://docs.sqlalchemy.org/en/20/core/engines.html#database-urls\n\n\nRun the app with the command:\n\n.. code-block:: bash\n\n   ~/stp_app (.venv) $ python -m streamlit run main.py\n\n   You can now view your Streamlit app in your browser.\n\n   Local URL: http://localhost:8501\n\n\nOpen the url in your favorite web browser if it does not open automatically.\n\n\nLicense\n-------\n\nstreamlit-passwordless-app is distributed under the `MIT-license`_.\n\n.. _MIT-license: https://opensource.org/licenses/mit-license.php\n\n\n.. |Streamlit| image:: https://static.streamlit.io/badges/streamlit_badge_black_white.svg\n   :alt: Streamlit Passwordless on Streamlit Community Cloud\n   :scale: 100%\n   :target: https://passwordless.streamlit.app\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonlydell%2Fstreamlit-passwordless-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantonlydell%2Fstreamlit-passwordless-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonlydell%2Fstreamlit-passwordless-app/lists"}