# Israeli Queue
A fast Python (Cython) implementation of an Israeli Queue.
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/bharel/cisraeliqueue/release.yml)](https://github.com/bharel/cisraeliqueue/actions)
[![Read the Docs](https://img.shields.io/readthedocs/cisraeliqueue)](https://cisraeliqueue.readthedocs.io/en/latest/)
[![PyPI](https://img.shields.io/pypi/v/cisraeliqueue)](https://pypi.org/project/cisraeliqueue/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cisraeliqueue)](https://pypi.org/project/cisraeliqueue/)
<!-- [![codecov](https://codecov.io/gh/bharel/cisraeliqueue/branch/master/graph/badge.svg?token=BJBL909NH3)](https://codecov.io/gh/bharel/cisraeliqueue) -->
## Table of Contents
1. [Overview](#overview)
2. [What is an Israeli Queue?](#what-is-an-israeli-queue)
- [Why is this useful?](#why-is-this-useful)
3. [Installation](#installation)
4. [Classes](#classes)
- [`IsraeliQueue`](#israeliqueue)
- [`AsyncIsraeliQueue`](#asyncisraeliqueue)
5. [Documentation](#documentation)
6. [Complexity](#complexity)
7. [Synchronous Example](#synchronous-example)
8. [Asynchronous Example](#asynchronous-example)
9. [License](#license)
## Overview
This project implements a queue system where each item is associated with a "group." The queue processes items in groups, ensuring that items belonging to the same group are dequeued together. This implementation provides both a synchronous version (`IsraeliQueue`) and an asynchronous version (`AsyncIsraeliQueue`) using `asyncio`.
## What is an Israeli Queue?
An Israeli Queue is a type of a priority queue where tasks are grouped together in the same priority. Adding new tasks to the queue will cause them to skip the line and group together. The tasks will then be taken out in-order, group by group.
### Why is this useful?
IsraeliQueues enjoy many benefits from processing grouped tasks in batches. For example, imagine a bot or an API that requires logging in to a remote repository in order to bring files:
```python
def login(repo_name: str):
return Session("repo_name") # Expensive operation
def download_file(session: Session, filename: str):
return Session.download(filename)
def logout(session: Session):
session.logout
```
Now, we have a thread or an asyncio task that adds files to download to the queue:
```python
from israeliqueue import IsraeliQueue
queue = IsraeliQueue()
queue.put("cpython", "build.bat")
queue.put("black", "pyproject.toml")
queue.put("black", "bar") # Same repo as the second item
queue.put("cpython", "index.html") # Same repository as the first item
```
An ordinary queue will cause our bot to login and logout four times, processing each item individually.
The IsraeliQueue groups the repositories together, saving setup costs and allowing to download them all in the same request:
```python
while True:
group, items = queue.get_group()
session = login(group)
for item in items:
download_file(session, item)
logout(session)
```
If the downloading process accepts multiple files at once, it's even more efficient:
```python
session.download_files(*items)
```
Other uses may include batching together AWS queries, batching numpy calculations, and plenty more!
## Installation
To install the package, simply `pip install cisraeliqueue`.
You can use the classes in your project as follows:
```python
from israeliqueue import IsraeliQueue, AsyncIsraeliQueue
```
## Classes
### `IsraeliQueue`
This is the synchronous implementation of the Israeli Queue. It provides group-based task processing and supports both blocking and non-blocking queue operations. The class is thread-safe and can be used in multithreaded environments.
### `AsyncIsraeliQueue`
This is the asynchronous version of the Israeli Queue, built using Python's `asyncio` framework. It provides non-blocking, asynchronous methods for queue operations and is suitable for applications requiring high concurrency and asynchronous task management.
---
## Documentation
Full documentation exists on our [RTD page](https://cisraeliqueue.readthedocs.io/en/latest/).
---
## Complexity
- **put / put_nowait**: O(1) - Insertion at the end of the queue.
- **get / get_nowait**: O(1) - Dequeueing from the front of the queue.
- **get_group / get_group_nowait**: O(group) - Dequeueing all items from the same group.
- **task_done**: O(1) - Simple bookkeeping to track completed tasks.
- **join**: O(1) - Blocks until all tasks are done
---
## Synchronous Example
```python
from israeliqueue import IsraeliQueue
# Initialize the queue
queue = IsraeliQueue(maxsize=10)
# Add items to the queue
queue.put('group1', 'task1')
queue.put('group1', 'task2')
queue.put('group2', 'task3')
# Get items from the queue
group, task = queue.get()
print(f"Processing {task} from {group}")
# Get all items from the same group
group, tasks = queue.get_group()
print(f"Processing all tasks from {group}: {tasks}")
# Mark the task as done
queue.task_done()
# Wait for all tasks to complete
queue.join()
```
## Asynchronous Example
```python
import asyncio
from israeliqueue import AsyncIsraeliQueue
async def main():
# Initialize the queue
queue = AsyncIsraeliQueue(maxsize=10)
# Add items to the queue
await queue.put('group1', 'task1')
await queue.put('group1', 'task2')
await queue.put('group2', 'task3')
# Get items from the queue
group, task = await queue.get()
print(f"Processing {task} from {group}")
# Get all items from the same group
group, tasks = await queue.get_group()
print(f"Processing all tasks from {group}: {tasks}")
# Mark the task as done
queue.task_done()
# Wait for all tasks to complete
await queue.join()
# Run the async example
asyncio.run(main())
```
---
## License
This project is licensed under the MIT License.
Raw data
{
"_id": null,
"home_page": null,
"name": "cisraeliqueue",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.12",
"maintainer_email": null,
"keywords": "israeli queue, queue, priority queue",
"author": null,
"author_email": "Bar Harel <bzvi7919@gmail.com>",
"download_url": null,
"platform": null,
"description": "# Israeli Queue\n\nA fast Python (Cython) implementation of an Israeli Queue.\n\n[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/bharel/cisraeliqueue/release.yml)](https://github.com/bharel/cisraeliqueue/actions)\n[![Read the Docs](https://img.shields.io/readthedocs/cisraeliqueue)](https://cisraeliqueue.readthedocs.io/en/latest/)\n[![PyPI](https://img.shields.io/pypi/v/cisraeliqueue)](https://pypi.org/project/cisraeliqueue/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cisraeliqueue)](https://pypi.org/project/cisraeliqueue/)\n<!-- [![codecov](https://codecov.io/gh/bharel/cisraeliqueue/branch/master/graph/badge.svg?token=BJBL909NH3)](https://codecov.io/gh/bharel/cisraeliqueue) -->\n\n## Table of Contents\n1. [Overview](#overview)\n2. [What is an Israeli Queue?](#what-is-an-israeli-queue)\n - [Why is this useful?](#why-is-this-useful)\n3. [Installation](#installation)\n4. [Classes](#classes)\n - [`IsraeliQueue`](#israeliqueue)\n - [`AsyncIsraeliQueue`](#asyncisraeliqueue)\n5. [Documentation](#documentation)\n6. [Complexity](#complexity)\n7. [Synchronous Example](#synchronous-example)\n8. [Asynchronous Example](#asynchronous-example)\n9. [License](#license)\n\n## Overview\nThis project implements a queue system where each item is associated with a \"group.\" The queue processes items in groups, ensuring that items belonging to the same group are dequeued together. This implementation provides both a synchronous version (`IsraeliQueue`) and an asynchronous version (`AsyncIsraeliQueue`) using `asyncio`.\n\n## What is an Israeli Queue?\nAn Israeli Queue is a type of a priority queue where tasks are grouped together in the same priority. Adding new tasks to the queue will cause them to skip the line and group together. The tasks will then be taken out in-order, group by group.\n\n### Why is this useful?\n\nIsraeliQueues enjoy many benefits from processing grouped tasks in batches. For example, imagine a bot or an API that requires logging in to a remote repository in order to bring files:\n\n```python\ndef login(repo_name: str):\n return Session(\"repo_name\") # Expensive operation\n\ndef download_file(session: Session, filename: str):\n return Session.download(filename)\n\ndef logout(session: Session):\n session.logout\n```\nNow, we have a thread or an asyncio task that adds files to download to the queue:\n\n```python\nfrom israeliqueue import IsraeliQueue\nqueue = IsraeliQueue()\nqueue.put(\"cpython\", \"build.bat\")\nqueue.put(\"black\", \"pyproject.toml\")\nqueue.put(\"black\", \"bar\") # Same repo as the second item\nqueue.put(\"cpython\", \"index.html\") # Same repository as the first item\n```\n\nAn ordinary queue will cause our bot to login and logout four times, processing each item individually.\nThe IsraeliQueue groups the repositories together, saving setup costs and allowing to download them all in the same request:\n```python\nwhile True:\n group, items = queue.get_group()\n session = login(group)\n for item in items:\n download_file(session, item)\n logout(session)\n```\n\nIf the downloading process accepts multiple files at once, it's even more efficient:\n\n```python\nsession.download_files(*items)\n```\n\nOther uses may include batching together AWS queries, batching numpy calculations, and plenty more!\n\n\n## Installation\nTo install the package, simply `pip install cisraeliqueue`.\n\nYou can use the classes in your project as follows:\n\n```python\nfrom israeliqueue import IsraeliQueue, AsyncIsraeliQueue\n```\n\n## Classes\n\n### `IsraeliQueue`\nThis is the synchronous implementation of the Israeli Queue. It provides group-based task processing and supports both blocking and non-blocking queue operations. The class is thread-safe and can be used in multithreaded environments.\n\n### `AsyncIsraeliQueue`\nThis is the asynchronous version of the Israeli Queue, built using Python's `asyncio` framework. It provides non-blocking, asynchronous methods for queue operations and is suitable for applications requiring high concurrency and asynchronous task management.\n\n---\n\n## Documentation\nFull documentation exists on our [RTD page](https://cisraeliqueue.readthedocs.io/en/latest/).\n\n---\n\n## Complexity\n\n- **put / put_nowait**: O(1) - Insertion at the end of the queue.\n- **get / get_nowait**: O(1) - Dequeueing from the front of the queue.\n- **get_group / get_group_nowait**: O(group) - Dequeueing all items from the same group.\n- **task_done**: O(1) - Simple bookkeeping to track completed tasks.\n- **join**: O(1) - Blocks until all tasks are done\n\n---\n\n## Synchronous Example\n\n```python\nfrom israeliqueue import IsraeliQueue\n\n# Initialize the queue\nqueue = IsraeliQueue(maxsize=10)\n\n# Add items to the queue\nqueue.put('group1', 'task1')\nqueue.put('group1', 'task2')\nqueue.put('group2', 'task3')\n\n# Get items from the queue\ngroup, task = queue.get()\nprint(f\"Processing {task} from {group}\")\n\n# Get all items from the same group\ngroup, tasks = queue.get_group()\nprint(f\"Processing all tasks from {group}: {tasks}\")\n\n# Mark the task as done\nqueue.task_done()\n\n# Wait for all tasks to complete\nqueue.join()\n```\n\n## Asynchronous Example\n\n```python\nimport asyncio\nfrom israeliqueue import AsyncIsraeliQueue\n\nasync def main():\n # Initialize the queue\n queue = AsyncIsraeliQueue(maxsize=10)\n\n # Add items to the queue\n await queue.put('group1', 'task1')\n await queue.put('group1', 'task2')\n await queue.put('group2', 'task3')\n\n # Get items from the queue\n group, task = await queue.get()\n print(f\"Processing {task} from {group}\")\n\n # Get all items from the same group\n group, tasks = await queue.get_group()\n print(f\"Processing all tasks from {group}: {tasks}\")\n\n # Mark the task as done\n queue.task_done()\n\n # Wait for all tasks to complete\n await queue.join()\n\n# Run the async example\nasyncio.run(main())\n```\n\n---\n\n## License\nThis project is licensed under the MIT License.\n",
"bugtrack_url": null,
"license": null,
"summary": "A fast implementation of an Israeli Queue",
"version": "0.0.1a2",
"project_urls": {
"Changelog": "https://github.com/bharel/cisraeliqueue/blob/master/changelog.md",
"Documentation": "https://cisraeliqueue.readthedocs.io/en/latest/",
"Homepage": "https://github.com/bharel/cisraeliqueue",
"Source": "https://github.com/bharel/cisraeliqueue"
},
"split_keywords": [
"israeli queue",
" queue",
" priority queue"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "df82988f7164db9e44cc6a3d0530042a8a22b36b2659bcde3c383f9bec92e198",
"md5": "23899064af4a5d459aa890252523fe82",
"sha256": "0d0f8260d88f3abf3fb447f74038d208990541566e038c60998afb7cae628051"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "23899064af4a5d459aa890252523fe82",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 95013,
"upload_time": "2024-09-30T05:24:43",
"upload_time_iso_8601": "2024-09-30T05:24:43.010373Z",
"url": "https://files.pythonhosted.org/packages/df/82/988f7164db9e44cc6a3d0530042a8a22b36b2659bcde3c383f9bec92e198/cisraeliqueue-0.0.1a2-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dba73e1dc4a9d66e430b61a294f29e52cc4f7b03b423f143223bcf1bb963848d",
"md5": "e9117c70f207dea50ee3b5fb54fede52",
"sha256": "9cb3ceb43e54504b521f87a58ee39cd8e15cb10ef1d9f1c84391f71aa25f3963"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e9117c70f207dea50ee3b5fb54fede52",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 90510,
"upload_time": "2024-09-30T05:24:44",
"upload_time_iso_8601": "2024-09-30T05:24:44.677650Z",
"url": "https://files.pythonhosted.org/packages/db/a7/3e1dc4a9d66e430b61a294f29e52cc4f7b03b423f143223bcf1bb963848d/cisraeliqueue-0.0.1a2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ae96b7ddc5cd264445363baf08426866803951abf8a8629caeda4d5ad35bbbf",
"md5": "2d9966286ac9fe4493e463087dd2d918",
"sha256": "e6ea8efea87ae28a8281a689bbf78e353750208cb18840ef3512f825a3baf933"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2d9966286ac9fe4493e463087dd2d918",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 506438,
"upload_time": "2024-09-30T05:24:46",
"upload_time_iso_8601": "2024-09-30T05:24:46.249611Z",
"url": "https://files.pythonhosted.org/packages/2a/e9/6b7ddc5cd264445363baf08426866803951abf8a8629caeda4d5ad35bbbf/cisraeliqueue-0.0.1a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c99af8c66a9d1ddd739ddcacc109c7393ec8656642e4f249a79433824e32fe79",
"md5": "0b535f2907edb263d6cb888e9923d57a",
"sha256": "30bdc2e4faa1b697d6c699fc7a87d971fa80f60a95cd6c12d60a3b19221d922b"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0b535f2907edb263d6cb888e9923d57a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 478171,
"upload_time": "2024-09-30T05:24:48",
"upload_time_iso_8601": "2024-09-30T05:24:48.261227Z",
"url": "https://files.pythonhosted.org/packages/c9/9a/f8c66a9d1ddd739ddcacc109c7393ec8656642e4f249a79433824e32fe79/cisraeliqueue-0.0.1a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ffe61bf618951af755d1bed88bbf6e929d0307bfe336971c32a7fd01f37a9df7",
"md5": "2812b31c8d812bec73d3c044076680a2",
"sha256": "8831e83969cd1ac7daa1ca44e788cb4925ff9e091ba2d56b847c0c75c7bf98ee"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2812b31c8d812bec73d3c044076680a2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 491274,
"upload_time": "2024-09-30T05:24:49",
"upload_time_iso_8601": "2024-09-30T05:24:49.562630Z",
"url": "https://files.pythonhosted.org/packages/ff/e6/1bf618951af755d1bed88bbf6e929d0307bfe336971c32a7fd01f37a9df7/cisraeliqueue-0.0.1a2-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2992dff8c4d951ef02ea0a66f9b06128d2213958929ed33af2378e49a8e9bdd1",
"md5": "b638cca84964817ddde31948c5a297fb",
"sha256": "df781fee212090bf6c3e69a540a985ac4f1eff12cd3ebcc1363cedc59aacd043"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b638cca84964817ddde31948c5a297fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 507782,
"upload_time": "2024-09-30T05:24:51",
"upload_time_iso_8601": "2024-09-30T05:24:51.362705Z",
"url": "https://files.pythonhosted.org/packages/29/92/dff8c4d951ef02ea0a66f9b06128d2213958929ed33af2378e49a8e9bdd1/cisraeliqueue-0.0.1a2-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94104b35622de0a58c95f123a3f655ace94a1403d3acd1d5e278bd18331e6490",
"md5": "7a7a66dd028921a011d5a81f66fbfeb4",
"sha256": "88e99f8ba3d502a164a97071a123821841235991b118c1ee3bd065ae78ae972c"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "7a7a66dd028921a011d5a81f66fbfeb4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 70749,
"upload_time": "2024-09-30T05:24:53",
"upload_time_iso_8601": "2024-09-30T05:24:53.138466Z",
"url": "https://files.pythonhosted.org/packages/94/10/4b35622de0a58c95f123a3f655ace94a1403d3acd1d5e278bd18331e6490/cisraeliqueue-0.0.1a2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d27fa11d29b2ba4c1e21c8d0498c51ac9d299541fbc7a20f1cb342cb997a4f9",
"md5": "41c28131d7fc7ee408f67ebb1b713a80",
"sha256": "c2689ed47e94efb9c302ce85b9d450a6b926d9785f277ab93e8c536ca8ea83ea"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "41c28131d7fc7ee408f67ebb1b713a80",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.12",
"size": 80426,
"upload_time": "2024-09-30T05:24:54",
"upload_time_iso_8601": "2024-09-30T05:24:54.246162Z",
"url": "https://files.pythonhosted.org/packages/8d/27/fa11d29b2ba4c1e21c8d0498c51ac9d299541fbc7a20f1cb342cb997a4f9/cisraeliqueue-0.0.1a2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19b179f0b493e65b8d7e362a9f8131dea1636ee20c7ce3fae01f82decb2b2881",
"md5": "7ee3f3a67cbcc8453ab64575d55963cb",
"sha256": "1c50bd5c8509231cc590dc795ae55fbcf5244e3b9263e62f97114dda5ee1f438"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "7ee3f3a67cbcc8453ab64575d55963cb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 93749,
"upload_time": "2024-09-30T05:24:55",
"upload_time_iso_8601": "2024-09-30T05:24:55.284136Z",
"url": "https://files.pythonhosted.org/packages/19/b1/79f0b493e65b8d7e362a9f8131dea1636ee20c7ce3fae01f82decb2b2881/cisraeliqueue-0.0.1a2-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddff9bff0f3ddb3a410b1153a660a30f6aa503d76327f493159823bc95dadaa5",
"md5": "c82e6d351202976c381729761643307e",
"sha256": "3fa37b0fccc08ffbd6fc9198123c6f7825b9004a158f358cd328df7804919238"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c82e6d351202976c381729761643307e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 89831,
"upload_time": "2024-09-30T05:24:56",
"upload_time_iso_8601": "2024-09-30T05:24:56.719833Z",
"url": "https://files.pythonhosted.org/packages/dd/ff/9bff0f3ddb3a410b1153a660a30f6aa503d76327f493159823bc95dadaa5/cisraeliqueue-0.0.1a2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44c6896912db41812dbc89144008f6a911a9d3704f65c20e80db9e8a8f022e59",
"md5": "33d68cf34fb44be599363f474f5a4f62",
"sha256": "9e6aab06c79058347c0482f723ea6ac7a45d6c8ec91a6c525720b209cf4d9e0f"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "33d68cf34fb44be599363f474f5a4f62",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 504860,
"upload_time": "2024-09-30T05:24:58",
"upload_time_iso_8601": "2024-09-30T05:24:58.569945Z",
"url": "https://files.pythonhosted.org/packages/44/c6/896912db41812dbc89144008f6a911a9d3704f65c20e80db9e8a8f022e59/cisraeliqueue-0.0.1a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ce28d93a4f553777a9a6f659b1e485cc37ae5d0a0734641e0e682383f5747d2",
"md5": "1789eb3bca1e9036e360584df0426a9a",
"sha256": "f359720be3460193dcc93067bb396c10b0c6e0baf186024399bbb775d7eec8d4"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1789eb3bca1e9036e360584df0426a9a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 479548,
"upload_time": "2024-09-30T05:25:00",
"upload_time_iso_8601": "2024-09-30T05:25:00.056711Z",
"url": "https://files.pythonhosted.org/packages/7c/e2/8d93a4f553777a9a6f659b1e485cc37ae5d0a0734641e0e682383f5747d2/cisraeliqueue-0.0.1a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f75a8b7558f8d7432f8104d18d4fa8e7594bca76e156226d5e377dc30465133",
"md5": "0f77081f7b4fb74615945b98c3f433aa",
"sha256": "7555e5e6639e9bae5cdabb28a1bfca845f774d72e540780df1290b07f3f28da9"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0f77081f7b4fb74615945b98c3f433aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 491920,
"upload_time": "2024-09-30T05:25:01",
"upload_time_iso_8601": "2024-09-30T05:25:01.869604Z",
"url": "https://files.pythonhosted.org/packages/4f/75/a8b7558f8d7432f8104d18d4fa8e7594bca76e156226d5e377dc30465133/cisraeliqueue-0.0.1a2-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be6914d1ddb709ec8dc0b2ca1203828454fa3f569c167ef5e5a5f7930661b02f",
"md5": "2e1820a788203cd0b3d2268d285f656b",
"sha256": "d0b0107a05b49692360214cf4ce7360cf3d3912b3ba1a826fab801424a18e63c"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2e1820a788203cd0b3d2268d285f656b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 512981,
"upload_time": "2024-09-30T05:25:03",
"upload_time_iso_8601": "2024-09-30T05:25:03.414438Z",
"url": "https://files.pythonhosted.org/packages/be/69/14d1ddb709ec8dc0b2ca1203828454fa3f569c167ef5e5a5f7930661b02f/cisraeliqueue-0.0.1a2-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41a92d218de1b86c4dddaf60506c97d155d0495fd14f8b3e7dce2de2c9eb78f3",
"md5": "9dde199157884b41820754480f0cd20e",
"sha256": "0cc11fd86d8f2d92cea0ac3c8371d6442bde8f3b3f02209d764a02d59ee38410"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "9dde199157884b41820754480f0cd20e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 70665,
"upload_time": "2024-09-30T05:25:05",
"upload_time_iso_8601": "2024-09-30T05:25:05.297183Z",
"url": "https://files.pythonhosted.org/packages/41/a9/2d218de1b86c4dddaf60506c97d155d0495fd14f8b3e7dce2de2c9eb78f3/cisraeliqueue-0.0.1a2-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "837a99afd1b92c40f5b84487b4d8d926930e1a7acec193060735d5a5ac3d4a97",
"md5": "c03ff554cc60b03c7e5cd7f99862b0d6",
"sha256": "9efc3dd4ddb2e3f57a60f282bbef4513d25eaf0a7c063f40765e02a54cc923eb"
},
"downloads": -1,
"filename": "cisraeliqueue-0.0.1a2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "c03ff554cc60b03c7e5cd7f99862b0d6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.12",
"size": 80064,
"upload_time": "2024-09-30T05:25:06",
"upload_time_iso_8601": "2024-09-30T05:25:06.279803Z",
"url": "https://files.pythonhosted.org/packages/83/7a/99afd1b92c40f5b84487b4d8d926930e1a7acec193060735d5a5ac3d4a97/cisraeliqueue-0.0.1a2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-30 05:24:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "bharel",
"github_project": "cisraeliqueue",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "cisraeliqueue"
}