{"id":35412822,"url":"https://github.com/notypecheck/aiotaskqueue","last_synced_at":"2026-02-24T15:01:49.820Z","repository":{"id":280595192,"uuid":"878162491","full_name":"notypecheck/aiotaskqueue","owner":"notypecheck","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-17T07:45:02.000Z","size":794,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-04T13:26:36.312Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://notypecheck.github.io/aiotaskqueue","language":"Python","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/notypecheck.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-24T21:48:01.000Z","updated_at":"2025-11-17T07:44:46.000Z","dependencies_parsed_at":"2025-05-17T03:06:02.326Z","dependency_job_id":"5563cb29-92d9-4519-8561-53887bf5abf1","html_url":"https://github.com/notypecheck/aiotaskqueue","commit_stats":null,"previous_names":["thirvondukr/aiotaskqueue","notypecheck/aiotaskqueue"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/notypecheck/aiotaskqueue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Faiotaskqueue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Faiotaskqueue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Faiotaskqueue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Faiotaskqueue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/notypecheck","download_url":"https://codeload.github.com/notypecheck/aiotaskqueue/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Faiotaskqueue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29786978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T10:45:18.109Z","status":"ssl_error","status_checked_at":"2026-02-24T10:45:09.911Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2026-01-02T14:56:04.134Z","updated_at":"2026-02-24T15:01:49.816Z","avatar_url":"https://github.com/notypecheck.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Aiotaskqueue is a type-safe and fast distributed queue alternative to celery, rq and arq.\n\n## Example Usage\n\n```python\nimport asyncio\n\nfrom redis.asyncio import Redis\n\nfrom aiotaskqueue import Configuration, Publisher, TaskRouter\nfrom aiotaskqueue.broker.redis import RedisBroker, RedisBrokerConfig\nfrom aiotaskqueue.serialization.msgspec import MsgSpecSerializer\nfrom aiotaskqueue.serialization.pydantic import PydanticSerializer\n\nrouter = TaskRouter()\n\n\n@router.task(name=\"task-name\")\nasync def task(a: int, b: str) -\u003e None:\n    print(a, b)\n\n\nasync def main() -\u003e None:\n    configuration = Configuration(\n        serialization_backends=[PydanticSerializer()],\n        default_serialization_backend=MsgSpecSerializer(),\n    )\n\n    redis = Redis(host=\"127.0.0.1\")\n    broker = RedisBroker(\n        redis=redis,\n        consumer_name=\"aiotaskqueue\",\n        broker_config=RedisBrokerConfig(xread_count=100),\n    )\n    publisher = Publisher(broker=broker, config=configuration)\n    async with redis, broker:\n        await publisher.enqueue(task(a=42, b=\"string\"))\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotypecheck%2Faiotaskqueue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnotypecheck%2Faiotaskqueue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotypecheck%2Faiotaskqueue/lists"}