{"id":16649433,"url":"https://github.com/eandersson/amqpstorm-pool","last_synced_at":"2026-05-25T10:31:50.394Z","repository":{"id":78450612,"uuid":"274871984","full_name":"eandersson/amqpstorm-pool","owner":"eandersson","description":"AMQPStorm connection pooling based on pika-pooling.","archived":false,"fork":false,"pushed_at":"2021-03-18T01:50:09.000Z","size":15,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T21:53:14.114Z","etag":null,"topics":["amqp","amqp-client","amqp0-9-1","amqpstorm","pooling","python","python2","python3","rabbitmq","rabbitmq-client"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eandersson.png","metadata":{"files":{"readme":"README.rst","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":"2020-06-25T09:02:58.000Z","updated_at":"2023-02-16T15:16:39.000Z","dependencies_parsed_at":"2023-02-28T10:15:41.091Z","dependency_job_id":null,"html_url":"https://github.com/eandersson/amqpstorm-pool","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/eandersson/amqpstorm-pool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eandersson%2Famqpstorm-pool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eandersson%2Famqpstorm-pool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eandersson%2Famqpstorm-pool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eandersson%2Famqpstorm-pool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eandersson","download_url":"https://codeload.github.com/eandersson/amqpstorm-pool/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eandersson%2Famqpstorm-pool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33471517,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-25T06:32:55.349Z","status":"ssl_error","status_checked_at":"2026-05-25T06:32:35.322Z","response_time":57,"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":["amqp","amqp-client","amqp0-9-1","amqpstorm","pooling","python","python2","python3","rabbitmq","rabbitmq-client"],"created_at":"2024-10-12T09:09:52.430Z","updated_at":"2026-05-25T10:31:50.370Z","avatar_url":"https://github.com/eandersson.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"AMQPStorm-Pool\n==============\n`AMQPStorm \u003chttps://github.com/eandersson/amqpstorm\u003e`_ connection pooling based on `pika-pool \u003chttps://github.com/bninja/pika-pool\u003e`_.\n\n|Version| |Travis| |Coverage|\n\nusage\n-----\n\nGet it:\n\n.. code:: bash\n\n    pip install amqpstorm-pool\n\nand use it:\n\n.. code:: python\n\n    import json\n\n    import amqpstorm\n    import amqpstorm_pool\n\n    uri = 'amqp://guest:guest@localhost:5672/%2F?heartbeat=60'\n    pool = amqpstorm_pool.QueuedPool(\n        create=lambda: amqpstorm.UriConnection(uri),\n        max_size=10,\n        max_overflow=10,\n        timeout=10,\n        recycle=3600,\n        stale=45,\n    )\n\n    with pool.acquire() as cxn:\n        cxn.channel.queue.declare('fruits')\n        cxn.channel.basic.publish(\n            body=json.dumps({\n                'type': 'banana',\n                'description': 'they are yellow'\n            }),\n            exchange='',\n            routing_key='fruits',\n            properties={\n                'content_type': 'text/plain',\n                'headers': {'key': 'value'}\n            }\n        )\n\n.. |Version| image:: https://badge.fury.io/py/AMQPStorm-Pool.svg\n  :target: https://badge.fury.io/py/AMQPStorm-Pool\n\n.. |Travis| image:: https://travis-ci.org/eandersson/amqpstorm-pool.svg\n  :target: https://travis-ci.org/eandersson/amqpstorm-pool\n\n.. |Coverage| image:: https://codecov.io/gh/eandersson/amqpstorm-pool/branch/master/graph/badge.svg\n  :target: https://codecov.io/gh/eandersson/amqpstorm-pool\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feandersson%2Famqpstorm-pool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feandersson%2Famqpstorm-pool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feandersson%2Famqpstorm-pool/lists"}