{"id":16544830,"url":"https://github.com/aliev/aiostd","last_synced_at":"2025-10-07T02:12:29.667Z","repository":{"id":245004418,"uuid":"816689972","full_name":"aliev/aiostd","owner":"aliev","description":"A simple library for asynchronous communication with standard I/O","archived":false,"fork":false,"pushed_at":"2025-09-06T18:44:10.000Z","size":19,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-06T20:36:39.390Z","etag":null,"topics":["asyncio","python","stdin","stdout"],"latest_commit_sha":null,"homepage":"","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/aliev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-18T08:12:41.000Z","updated_at":"2024-12-30T22:29:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"8e17ded9-27e5-498d-b90d-fa8a380f705c","html_url":"https://github.com/aliev/aiostd","commit_stats":null,"previous_names":["aliev/aiostd"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/aliev/aiostd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliev%2Faiostd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliev%2Faiostd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliev%2Faiostd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliev%2Faiostd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aliev","download_url":"https://codeload.github.com/aliev/aiostd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliev%2Faiostd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278708004,"owners_count":26031932,"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-10-07T02:00:06.786Z","response_time":59,"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":["asyncio","python","stdin","stdout"],"created_at":"2024-10-11T19:04:49.038Z","updated_at":"2025-10-07T02:12:29.638Z","avatar_url":"https://github.com/aliev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aiostd\n\nA simple library for asynchronous communication with standard I/O\n\nThe library employs asyncio's I/O multiplexing, which enables efficient I/O operations by monitoring multiple file descriptors simultaneously without the overhead of creating separate threads.\n\n## Installation\n\n```\npip install -U aiostd\n```\n\n## Usage\n\n```python\nfrom aiostd import open_io_stream\nimport sys\n\nasync def main():\n    reader, writer = await open_io_stream(sys.stdin, sys.stdout)\n\n    async for line in reader:\n        writer.write(line)\n        await writer.drain()\n\nasyncio.run(main())\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faliev%2Faiostd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faliev%2Faiostd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faliev%2Faiostd/lists"}