{"id":15015429,"url":"https://github.com/asyncgui/asynckivy-ext-queue","last_synced_at":"2025-07-22T02:31:16.639Z","repository":{"id":203496827,"uuid":"709780686","full_name":"asyncgui/asynckivy-ext-queue","owner":"asyncgui","description":"Queue (fifo, lifo, priority)","archived":true,"fork":false,"pushed_at":"2024-12-18T03:48:03.000Z","size":482,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-07T01:20:30.469Z","etag":null,"topics":["asynckivy","kivy"],"latest_commit_sha":null,"homepage":"https://asyncgui.github.io/asynckivy-ext-queue/","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/asyncgui.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":"2023-10-25T11:41:58.000Z","updated_at":"2024-12-18T03:48:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"4623126b-de63-4650-ab1b-660a2e67bfdc","html_url":"https://github.com/asyncgui/asynckivy-ext-queue","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"7dcc079565882f00a9b918e703b42f2af3ffb15a"},"previous_names":["asyncgui/asynckivy-ext-queue"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/asyncgui/asynckivy-ext-queue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asyncgui%2Fasynckivy-ext-queue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asyncgui%2Fasynckivy-ext-queue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asyncgui%2Fasynckivy-ext-queue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asyncgui%2Fasynckivy-ext-queue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asyncgui","download_url":"https://codeload.github.com/asyncgui/asynckivy-ext-queue/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asyncgui%2Fasynckivy-ext-queue/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266412206,"owners_count":23924468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["asynckivy","kivy"],"created_at":"2024-09-24T19:47:27.464Z","updated_at":"2025-07-22T02:31:16.627Z","avatar_url":"https://github.com/asyncgui.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Warning\n\nThis library has been archived in favor of [asyncgui_ext.synctools](https://github.com/asyncgui/asyncgui-ext-synctools).\n\n# Queue\n\nExtension for `asynckivy` programs.\n\n```python\nfrom kivy.app import App\nimport asynckivy as ak\nfrom asynckivy_ext.queue import Queue\n\n\nasync def producer(q):\n    for c in \"ABC\":\n        await q.put(c)\n        print('produced', c)\n    q.half_close()\n\n\nasync def consumer(q):\n    async for c in q:\n        print('consumed', c)\n\n\nq = Queue(capacity=1)\nak.start(producer(q))\nak.start(consumer(q))\nApp().run()\n```\n\n```text\nproduced A\nconsumed A\nproduced B\nconsumed B\nproduced C\nconsumed C\n```\n\n## Installation\n\nIt's recommended to pin the minor version, because if it changed, it means some *important* breaking changes occurred.\n\n```text\npoetry add asynckivy-ext-queue@~0.2\npip install \"asynckivy-ext-queue\u003e=0.2,\u003c0.3\"\n```\n\n## Tested on\n\n- CPython 3.9 + Kivy 2.2.1\n- CPython 3.10 + Kivy 2.2.1\n- CPython 3.11 + Kivy 2.2.1\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasyncgui%2Fasynckivy-ext-queue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasyncgui%2Fasynckivy-ext-queue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasyncgui%2Fasynckivy-ext-queue/lists"}