{"id":13794830,"url":"https://github.com/mitosch/textual-select","last_synced_at":"2026-01-16T13:45:38.807Z","repository":{"id":65056590,"uuid":"578951739","full_name":"mitosch/textual-select","owner":"mitosch","description":"A simple drop-down (select) for textual with an optional search functionality","archived":false,"fork":false,"pushed_at":"2023-06-12T13:23:37.000Z","size":167,"stargazers_count":43,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-25T03:10:44.021Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/mitosch.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2022-12-16T09:32:29.000Z","updated_at":"2025-04-18T10:28:58.000Z","dependencies_parsed_at":"2024-08-03T23:04:16.610Z","dependency_job_id":null,"html_url":"https://github.com/mitosch/textual-select","commit_stats":{"total_commits":26,"total_committers":1,"mean_commits":26.0,"dds":0.0,"last_synced_commit":"8afe9ef43701be46b87e299332e12f39d052dbd3"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/mitosch/textual-select","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitosch%2Ftextual-select","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitosch%2Ftextual-select/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitosch%2Ftextual-select/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitosch%2Ftextual-select/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mitosch","download_url":"https://codeload.github.com/mitosch/textual-select/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitosch%2Ftextual-select/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: 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":[],"created_at":"2024-08-03T23:00:48.644Z","updated_at":"2026-01-16T13:45:38.767Z","avatar_url":"https://github.com/mitosch.png","language":"Python","readme":"# Textual: Select\n\nIMPORTANT: Since version 0.24.0 Textual implemented a native dropdown. I strongly\nrecommend to use the native version. This repository will slowly die. More information\nat the [Blog Post about Select control](https://textual.textualize.io/blog/2023/05/08/textual-0240-adds-a-select-control/).\n\nA simple select widget (aka dropdown) for [textual](https://github.com/Textualize/textual) with an optional search field.\n\n![select_focus](https://user-images.githubusercontent.com/922559/209305346-6b8971b1-7a3a-4424-bdf8-c439b9d74e28.png)\n\n![select_open](https://user-images.githubusercontent.com/922559/209305349-84f39432-b1e4-405e-8854-a8d7a33230ae.png)\n\n![select_search](https://user-images.githubusercontent.com/922559/209305352-9ad2e7c1-9dc6-435f-b1bd-8dba5f5b2642.png)\n\n\n## Usage\n\n```python\nfrom textual_select import Select\n\ndropdown_data = [\n    {\"value\": 0, \"text\": \"Pick-Up\"},\n    {\"value\": 1, \"text\": \"SUV\"},\n    {\"value\": 2, \"text\": \"Hatchback\"},\n    {\"value\": 3, \"text\": \"Crossover\"},\n    {\"value\": 4, \"text\": \"Convertible\"},\n    {\"value\": 5, \"text\": \"Sedan\"},\n    {\"value\": 6, \"text\": \"Sports Car\"},\n    {\"value\": 7, \"text\": \"Coupe\"},\n    {\"value\": 8, \"text\": \"Minivan\"}\n]\n\nSelect(\n    placeholder=\"please select\",\n    items=dropdown_data,\n    list_mount=\"#main_container\"\n)\n```\n\n## Installation\n\n```bash\npip install textual-select\n```\n\nRequires textual 0.11.0 or later.\n\n## Limitations\n\nThis textual widget is in early stage and has some limitations:\n\n* It needs a specific mount point (`list_mount`) where the dropdown list\n  shall appear. This is needed because the container widget with the select\n  itself could be too small. Maybe in future versions this will no longer\n  needed.\n* It can only open below, not above: Make sure to reserve space below the\n  dropdown.\n* The dropdown list has a fixed height of 5 entries. This will be configurable\n  in future versions.\n\n## Similar Widgets\n\n* If you are looking for an autocomplete, please refer to\n  [textual-autocomplete](https://github.com/darrenburns/textual-autocomplete)\n  by Darren Burns.\n","funding_links":[],"categories":["Community"],"sub_categories":["Third Party Applications"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmitosch%2Ftextual-select","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmitosch%2Ftextual-select","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmitosch%2Ftextual-select/lists"}