{ "info": { "author": "Doist Developers", "author_email": "dev@doist.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10" ], "description": "\n# SQS Workers\n\nAn opinionated queue processor for Amazon SQS.\n\n## Usage\n\nInstall the package with\n\n```bash\npip install sqs-workers\n```\n\nConfigure your boto3 library to provide access requisites for your installation with [something like this](https://boto3.readthedocs.io/en/latest/guide/quickstart.html#configuration):\n\n```bash\naws configure\n```\n\nDon't forget to set your preferred AWS region.\n\nThen you will start managing two systems (most likely, from the same codebase): one of them adds messages to the queue, and another one executes them.\n\n```python\nfrom sqs_workers import SQSEnv, create_standard_queue\n\n# This environment will use AWS requisites from ~/.aws/ directory\nsqs = SQSEnv()\n\n# Create a new queue.\n# Note that you can use the AWS web interface for the same action as well, the\n# web interface provides more options. You only need to do it once.\ncreate_standard_queue(sqs, \"emails\")\n\n# Get the queue object\nqueue = sqs.queue(\"emails\")\n\n# Register a queue processor\n@queue.processor(\"send_email\")\ndef send_email(to, subject, body):\n print(f\"Sending email {subject} to {to}\")\n```\n\nThen there are two ways of adding tasks to the queue. Classic (aka \"explicit\"):\n\n```python\nqueue.add_job(\"send_email\", to=\"user@example.com\", subject=\"Hello world\", body=\"hello world\")\n```\n\nAnd the \"Celery way\" (we mimic the Celery API to some extent)\n\n```python\nsend_email.delay(to=\"user@example.com\", subject=\"Hello world\", body=\"hello world\")\n```\n\nTo process the queue, you have to run workers manually. Create a new file which will contain the definition of the sqs object and register all processors (most likely, by importing necessary modules from your project), and then run SQS\n\n```python\nfrom sqs_workers import SQSEnv\nsqs = SQSEnv()\n...\nsqs.queue('emails').process_queue()\n```\n\nIn production, we usually don't handle multiple queues in the same process, but for the development environment it's easier to tackle with all the queues at once with\n\n```python\nsqs.process_queues()\n```\n\n## Serialization\n\nThere are two serializers: JSON and pickle.\n\n## Baked tasks\n\nYou can create so-called \"baked async tasks,\" entities which, besides the task itself, contain arguments which have to be used to call the task.\n\nThink of baked tasks as of light version of [Celery signatures](http://docs.celeryproject.org/en/latest/userguide/canvas.html#signatures)\n\n```python\ntask = send_email.bake(to='user@example.com', subject='Hello world', body='hello world')\ntask.delay()\n```\n\nIs the same as\n\n```python\nsend_email.delay(to='user@example.com', subject='Hello world', body='hello world')\n```\n\n## Batching\n\nIf you have many tasks to enqueue, it may be more efficient to use batching when adding them:\n\n```python\n# Classic (\"explicit\") API\nwith queue.add_batch():\n queue.add_job(\"send_email\", to=\"user1@example.com\", subject=\"Hello world\", body=\"hello world\")\n queue.add_job(\"send_email\", to=\"user2@example.com\", subject=\"Hello world\", body=\"hello world\")\n\n# \"Celery way\"\nwith send_email.batch():\n send_email.delay(to=\"user1@example.com\", subject=\"Hello world\", body=\"hello world\")\n send_email.delay(to=\"user2@example.com\", subject=\"Hello world\", body=\"hello world\")\n```\n\nWhen batching is enabled:\n\n- tasks are added to SQS by batches of 10, reducing the number of AWS operations\n- it is not possible to get the task `MessageId`, as it is not known until the batch is sent\n- care has to be taken about message size, as SQS limits both the individual message size and the maximum total payload size to 256 kB.\n\n## Synchronous task execution\n\nIn Celery, you can run any task synchronously if you just call it as a function with arguments. Our AsyncTask raises a RuntimeError for this case.\n\n```python\nsend_email(to='user@example.com', subject='Hello world', body='hello world')\n...\nRuntimeError: Async task email.send_email called synchronously (probably,\nby mistake). Use either AsyncTask.run(...) to run the task synchronously\nor AsyncTask.delay(...) to add it to the queue.\n```\n\nIf you want to run a task synchronously, use `run()` method of the task.\n\n```\nsend_email.run(to='user@example.com', subject='Hello world', body='hello world')\n```\n\n## FIFO queues\n\nFifo queues can be created with `create_fifo_queue` and have to have the name, which ends with \".fifo\".\n\n```python\nfrom sqs_workers import SQSEnv, create_fifo_queue\nsqs = SQSEnv()\n\ncreate_fifo_queue(sqs, 'emails_dead.fifo')\ncreate_fifo_queue(sqs, 'emails.fifo',\n redrive_policy=sqs.redrive_policy('emails_dead.fifo', 3)\n)\n```\n\nUnless the flag `content_based_deduplication` is set, every message has to be sent with an attribute `_deduplication_id`. By default, all messages have the same message group `default`, but you can change it with `_group_id`.\n\n```python\nsqs.queue(\"emails.fifo\").add_job(\n 'send_email', _deduplication_id=subject, _group_id=email, **kwargs)\n```\n\n[More about FIFO queues on AWS](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html)\n\n## Exception processing\n\nIf task processing ended up with an exception, the error is logged, and the task is returned back to the queue after a while. The exact behavior is defined by queue settings.\n\n## Custom processors\n\nYou can define your own processor if you need to perform some specific actions before of after executing a particular task.\n\nExample for the custom processor\n\n```python\nfrom sqs_workers import SQSEnv\nfrom sqs_workers.processors import Processor\n\nclass CustomProcessor(Processor):\n def process(self, job_kwargs):\n print(f'Processing {self.queue_name}.{self.job_name} with {job_kwargs}')\n super(CustomProcessor, self).process(job_kwargs)\n\nsqs = SQSEnv(processor_maker=CustomProcessor)\n```\n\n## Working with contexts\n\nContext is implicitly passed to the worker via the job message and can be used for logging or profiling purposes.\n\nUsage example.\n\n```python\nqueue = sqs.queue(\"q1\")\n\n@queue.processor('q1', 'hello_world', pass_context=True)\ndef hello_world(username=None, context=None):\n print(f'Hello {username} from {context[\"remote_addr\"]}')\n\nwith sqs.context(remote_addr='127.0.0.1'):\n hello_world.delay(username='Foo')\n\nqueue.process_batch()\n```\n\nAlternatively, you can set a context like this.\n\n```python\nsqs.context['remote_addr'] = '127.0.0.1'\nhello_world.delay(username='Foo')\n```\n\nAnd then, when the context needs to be cleared:\n\n```python\nsqs.context.clear()\n```\n\nIn a web application, you usually call it at the end of the processing of the web request.\n\n## Automatic applying of the context for all tasks\n\nInstead of dealing with the context inside every processing function, you can perform this in processors by subclassing them.\n\n```python\nimport os\nfrom sqs_workers import SQSEnv\nfrom sqs_workers.processors import Processor\n\nclass CustomProcessor(Processor):\n def process(self, job_kwargs, job_context):\n os.environ['REMOTE_ADDR'] = job_context['remote_addr']\n super(CustomProcessor, self).process(job_kwargs, job_context)\n os.unsetenv('REMOTE_ADDR')\n\nsqs = SQSEnv(\n processor_maker=CustomProcessor,\n)\n```\n\n## Raw queues\n\nRaw queues can have only one processor, which should be a function, accepting the message as its only argument.\n\nRaw queues are helpful to process messages, added to SQS from external sources, such as CloudWatch events.\n\nYou start the processor the same way, creating a new standard queue if needed.\n\n```python\nfrom sqs_workers import SQSEnv, create_standard_queue\nsqs = SQSEnv()\ncreate_standard_queue(sqs, 'cron')\n```\n\nThen you get a queue, but provide a queue_maker parameter to it, to create a queue of the necessary type, and define a processor for it.\n\n```python\nfrom sqs_workers import RawQueue\n\ncron = sqs.queue('cron', RawQueue)\n\n@cron.raw_processor()\ndef processor(message):\n print(message.body)\n```\n\nThen start processing your queue as usual:\n\n```python\ncron.process_queue()\n```\n\nYou can also send raw messages to the queue, but this is probably less useful:\n\n```python\ncron.add_raw_job(\"Hello world\")\n```\n\n## Processing Messages from CloudWatch\n\nBy default message body by CloudWatch scheduler has following JSON structure.\n\n```json\n{\n \"version\": \"0\",\n \"id\": \"a9a10406-9a1f-0ddc-51ae-08db551fac42\",\n \"detail-type\": \"Scheduled Event\",\n \"source\": \"aws.events\",\n \"account\": \"NNNNNNNNNN\",\n \"time\": \"2019-09-20T09:19:56Z\",\n \"region\": \"eu-west-1\",\n \"resources\": [\"arn:aws:events:eu-west-1:NNNNNNNNNN:rule/Playground\"],\n \"detail\": {}\n}\n```\n\nHeaders of the message:\n\n```python\n{\n 'SenderId': 'AIDAJ2E....',\n 'ApproximateFirstReceiveTimestamp': '1568971264367',\n 'ApproximateReceiveCount': '1',\n 'SentTimestamp': '1568971244845',\n}\n```\n\nYou can pass any valid JSON as a message, though, and it will be passed as-is to the message body. Something like this:\n\n```json\n{ \"message\": \"Hello world\" }\n```\n\n## Dead-letter queues and redrive\n\nOn creating the queue, you can set the fallback dead-letter queue and redrive policy, which can look like this.\n\n```python\nfrom sqs_workers import SQSEnv, create_standard_queue\nsqs = SQSEnv()\n\ncreate_standard_queue(sqs, 'emails_dead')\ncreate_standard_queue(sqs, 'emails',\n redrive_policy=sqs.redrive_policy('emails_dead', 3)\n)\n```\n\nIt means \"move the message to the email_deadletters queue after four (3 + 1) failed attempts to send it to the recipient.\"\n\n## Backoff policies\n\nYou can define the backoff policy for the entire environment or specific queue.\n\n```python\nqueue = sqs.queue(\"emails\", backoff_policy=DEFAULT_BACKOFF)\n\n@queue.processor('send_email')\ndef send_email(to, subject, body):\n print(f\"Sending email {subject} to {to}\")\n```\n\nThe default policy is the exponential backoff. We recommend setting both the backoff policy and the dead-letter queue to limit the maximum number of execution attempts.\n\nAlternatively, you can set the backoff to IMMEDIATE_RETURN to re-execute the failed task immediately.\n\n```python\nqueue = sqs.queue(\"emails\", backoff_policy=IMMEDIATE_RETURN)\n\n@queue.processor('send_email')\ndef send_email(to, subject, body):\n print(f\"Sending email {subject} to {to}\")\n```\n\n## Shutdown policies\n\nWhen launching the queue processor with process_queue(), it's possible to optionally set when it has to be stopped.\n\nFollowing shutdown policies are supported:\n\n- IdleShutdown(idle_seconds): return from function when no new tasks are sent for a specific period.\n\n- MaxTasksShutdown(max_tasks): return from function after processing at least max_task jobs. It can be helpful to prevent memory leaks.\n\nThe default policy is NeverShutdown. It's also possible to combine two previous policies with OrShutdown or AndShutdown policies or create custom classes for specific behavior.\n\nExample of stopping processing the queue after 5 minutes of inactivity:\n\n```python\nfrom sqs_workers import SQSEnv\nfrom sqs_workers.shutdown_policies import IdleShutdown\n\nsqs = SQSEnv()\nsqs.queue(\"foo\").process_queue(shutdown_policy=IdleShutdown(idle_seconds=300))\n```\n\n## Processing a dead-letter queue by pushing back failed messages\n\nThe most common way to process a dead-letter queue is to fix the main bug causing messages to appear there in the first place and then to re-process these messages again.\n\nWith sqs-workers, in can be done by putting back all the messages from a dead-letter queue back to the main one. While processing the queue, the processor takes every message and pushes it back to the upstream queue with a hard-coded delay of 1 second.\n\nUsage example:\n\n >>> from sqs_workers import JobQueue\n >>> from sqs_workers.shutdown_policies IdleShutdown\n >>> from sqs_workers.deadletter_queue import DeadLetterQueue\n >>> env = SQSEnv()\n >>> foo = env.queue(\"foo\")\n >>> foo_dead = env.queue(\"foo_dead\", DeadLetterQueue.maker(foo))\n >>> foo_dead.process_queue(shutdown_policy=IdleShutdown(10))\n\nThis code takes all the messages in the foo_dead queue and pushes them back to the foo queue. Then it waits 10 seconds to ensure no new messages appear, and quit.\n\n## Processing a dead-letter queue by executing tasks in-place\n\nInstead of pushing the tasks back to the main queue, you can execute them in place. For this, you need to copy the queue processors from the main queue to the deadletter.\n\nUsage example:\n\n >>> env = SQSEnv()\n >>> foo = env.queue(\"foo\")\n >>> foo_dead = env.queue(\"foo_dead\")\n >>> foo.copy_processors(foo_dead)\n >>>\n >>> from sqs_workers.shutdown_policies IdleShutdown\n >>> foo_dead.process_queue(shutdown_policy=IdleShutdown(10))\n\nThis code takes all the messages in the foo_dead queue and executes them with processors from the \"foo\" queue. Then it waits 10 seconds to ensure no new messages appear, and quit.\n\n## Using in unit tests with MemorySession\n\nThere is a special MemorySession, which can be used as a quick and dirty replacement for real queues in unit tests. If you have a function `create_task` which adds some tasks to the queue and you want to test how it works, you can technically write your tests like this:\n\n```python\nfrom sqs_workers import SQSEnv\nenv = SQSEnv()\n\ndef test_task_creation_side_effects():\n create_task()\n env.process_batch('foo')\n ...\n```\n\nThe problem is that your test starts depending on AWS (or localstack) infrastructure, which you don't always need. What you can do instead is you can pass MemorySession to your SQSEnv instance.\n\n```python\nfrom sqs_workers import SQSEnv, MemorySession\nenv = SQSEnv(MemorySession())\n```\n\nPlease note that MemorySession has some serious limitations, and may not fit well your use-case. Namely, when you work with MemorySession:\n\n- Redrive policy doesn't work\n- There is no differences between standard and FIFO queues\n- FIFO queues don't support content-based deduplication\n- Delayed tasks are executed ineffectively: the task is gotten from the queue, and if the time hasn't come, the task is put back.\n- API can return slightly different results\n\n## Contributing\n\nAny help is welcome!\n\nPlease feel free to [report any issue](https://github.com/Doist/sqs-workers/issues/new/choose) you may have.\n\nIf you want to contribute with code, please open a Pull Request. A few things to keep in mind:\n\n- sqs-workers is released under the [MIT license](./LICENSE)\n- please use [pre-commit](https://pre-commit.com/) to ensure some formatting rules and basic consistency checks are applied before each Git commit\n- please add tests for your changes!\n\n### Testing\n\nWe use pytest to run unittests, and tox to run them for all supported Python versions.\n\nIf you just run `pytest` or `tox`, all tests will be run against AWS, localstack, and MemorySession. You can disable those you don't want to use using the pytest `-k` flag, for instance using `-k localstack` or `-k 'not aws'`.\n\nRunning tests with `pytest` requires installing two additional dependencies:\n\n```bash\npip install pytest localstack-client\n```\n\n### Testing with AWS\n\nMake sure you have all dependencies installed, and boto3 client configured ([ref](https://boto3.readthedocs.io/en/latest/guide/quickstart.html#configuration)) and then run\n\n```bash\npytest -k aws\n```\n\nAlternatively, to test all supported versions, run\n\n```bash\ntox -- -k aws\n```\n\n### Testing with localstack\n\nLocalstack tests should perform faster than testing against AWS, and besides, they work well in offline.\n\nRun [ElasticMQ](https://github.com/softwaremill/elasticmq) and make sure that the SQS endpoint is available by the address localhost:4566:\n\n```bash\ndocker run -p 4566:9324 --rm -it softwaremill/elasticmq-native\n```\n\nThen run\n\n```bash\npytest -k localstack\n```\n\nor\n\n```bash\ntox -- -k localstack\n```\n\n### Testing with MemorySession\n\nMemorySession should be even faster, but has all the limitations documented above. But it can still be useful to test some logic changes.\n\nSimply run\n\n```bash\npytest -k memory\n```\n\nor\n\n```bash\ntox -- -k memory\n```\n\n## Releasing new versions\n\n- Bump version in `sqs_workers/__version__.py`\n- Update the CHANGELOG\n- Commit the changes with a commit message \"Version X.X.X\"\n- Push the changes to GitHub and PyPI with a single command `make upload`\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Doist/sqs-workers", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "sqs-workers", "package_url": "https://pypi.org/project/sqs-workers/", "platform": null, "project_url": "https://pypi.org/project/sqs-workers/", "project_urls": { "Homepage": "https://github.com/Doist/sqs-workers" }, "release_url": "https://pypi.org/project/sqs-workers/0.5.6/", "requires_dist": [ "boto3", "pytest-runner", "attrs", "typing" ], "requires_python": ">=3.8", "summary": "SQS Workers", "version": "0.5.6", "yanked": false, "yanked_reason": null }, "last_serial": 13771181, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "73071660cb1cda17c44e1dae01c4b2b5", "sha256": "243ca27f544b333dbc9efc46d174d8fb35fe881bb7aa85cf96a1c89d1640e1f7" }, "downloads": -1, "filename": "sqs_workers-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73071660cb1cda17c44e1dae01c4b2b5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 9919, "upload_time": "2018-08-09T18:33:18", "upload_time_iso_8601": "2018-08-09T18:33:18.647963Z", "url": "https://files.pythonhosted.org/packages/f6/28/8186c57a7d4457763f47200fc670c65ec8652e12dd08216abaa619753c9e/sqs_workers-0.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3088a240d910a45dbdb20f724dc5c3ca", "sha256": "5b1a747813c4a4ff5b7b84c9f455c374ad13c6eaa0e79fbf95142e90ef1e01c5" }, "downloads": -1, "filename": "sqs_workers-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3088a240d910a45dbdb20f724dc5c3ca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7", "size": 9915, "upload_time": "2018-08-09T18:33:20", "upload_time_iso_8601": "2018-08-09T18:33:20.175496Z", "url": "https://files.pythonhosted.org/packages/59/0b/bf20185f310abe43dd27015a75316158660486a5279e3b0c42cfdfa90013/sqs_workers-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24565bf6bfc6c4f3162c099dd9242d93", "sha256": "65e084988c01ed5eb4fe51d96583588f3b9069b7c8d2c05b99b510f12a81ddd0" }, "downloads": -1, "filename": "sqs-workers-0.1.1.tar.gz", "has_sig": false, "md5_digest": "24565bf6bfc6c4f3162c099dd9242d93", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 10498, "upload_time": "2018-08-09T18:33:22", "upload_time_iso_8601": "2018-08-09T18:33:22.215643Z", "url": "https://files.pythonhosted.org/packages/92/c4/ee576e56abd33018f64e9ffd73a7359d02ad00e3c1e3884b8abfabbe0de5/sqs-workers-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f6062f23fadbd03c02176eb708acc6cc", "sha256": "7aebf3783f2fe6e3613c8ed08666c505348508091e0e20e9c72ac43547e65f11" }, "downloads": -1, "filename": "sqs_workers-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f6062f23fadbd03c02176eb708acc6cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 10370, "upload_time": "2018-08-10T17:50:10", "upload_time_iso_8601": "2018-08-10T17:50:10.747005Z", "url": "https://files.pythonhosted.org/packages/80/c8/e67aebfb077456249b6594eb3d9a653c6a8d101c3b4660c89b5463c72ebc/sqs_workers-0.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c04cea53164411b453d0052cc149b7f", "sha256": "8b4f304ed537874984b480a1dc16950ed76706281395084c970a84965fdd4ad9" }, "downloads": -1, "filename": "sqs-workers-0.2.0.tar.gz", "has_sig": false, "md5_digest": "6c04cea53164411b453d0052cc149b7f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 12149, "upload_time": "2018-08-10T17:50:13", "upload_time_iso_8601": "2018-08-10T17:50:13.689495Z", "url": "https://files.pythonhosted.org/packages/f8/34/6345655b4272218b2a7ceac51dea0a0588d961c66c29ad9fc1ea29b06e06/sqs-workers-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "980f21fd6bd3439a992c5bab0780ac50", "sha256": "c41e204bc2996d59d47434ed1185edc4a58c39b9a422eadefa27b498ecddf253" }, "downloads": -1, "filename": "sqs_workers-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "980f21fd6bd3439a992c5bab0780ac50", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 10767, "upload_time": "2018-08-22T09:46:52", "upload_time_iso_8601": "2018-08-22T09:46:52.777998Z", "url": "https://files.pythonhosted.org/packages/53/02/2359ea74e56558d452ac1a3294e842dccd3ee68c94f2c2024679e99126f6/sqs_workers-0.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48a29abfae9daaa3b5103bfd36f0ffa8", "sha256": "6a514c40298630032ec3914f56dc1b8ce07b8ee2f2c9543fe8df327d2c91640f" }, "downloads": -1, "filename": "sqs-workers-0.2.1.tar.gz", "has_sig": false, "md5_digest": "48a29abfae9daaa3b5103bfd36f0ffa8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 12920, "upload_time": "2018-08-22T09:46:54", "upload_time_iso_8601": "2018-08-22T09:46:54.095020Z", "url": "https://files.pythonhosted.org/packages/fd/db/45aa05409fa55ac08fc9d191f7752b6b2593b3b1e320f729c5b572dd96f6/sqs-workers-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "2b7e2ab70c5313a7fac2f7586e027f20", "sha256": "69670271761554d38e6f71c4b83e2fcd00bee11f79c969c724050bc56388cc20" }, "downloads": -1, "filename": "sqs_workers-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b7e2ab70c5313a7fac2f7586e027f20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 10769, "upload_time": "2018-08-22T11:16:56", "upload_time_iso_8601": "2018-08-22T11:16:56.563818Z", "url": "https://files.pythonhosted.org/packages/f7/0c/3f7907f1a5c53843bc6facd52d8a29de20f4052803da53bf544960ac9813/sqs_workers-0.2.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc1f18292c95f336c2bd526038e803d6", "sha256": "581797601eece3985bbd0a9c5bd783b1a5f6dd69d97db0a7f55ac6b418923d43" }, "downloads": -1, "filename": "sqs-workers-0.2.2.tar.gz", "has_sig": false, "md5_digest": "bc1f18292c95f336c2bd526038e803d6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 12924, "upload_time": "2018-08-22T11:16:58", "upload_time_iso_8601": "2018-08-22T11:16:58.063334Z", "url": "https://files.pythonhosted.org/packages/ec/f1/c3e953b5d38729e46b9b77b56f60deeb3a3b8fafdfb0ee7cbd97bd901e35/sqs-workers-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "428a80759aaa05030742cfde6f8dedf7", "sha256": "15aff1e63ec75382d3a1e563e096a911459abdb5e46de23e2ed1babb24e91163" }, "downloads": -1, "filename": "sqs_workers-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "428a80759aaa05030742cfde6f8dedf7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 10852, "upload_time": "2018-08-22T14:11:30", "upload_time_iso_8601": "2018-08-22T14:11:30.306848Z", "url": "https://files.pythonhosted.org/packages/55/44/8de31c54531bf8780cf1f2c5eeafbf2781afff1a410949c41cc4e03fe504/sqs_workers-0.2.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5fdb28dd4e1a30859e6e83bb0dca4357", "sha256": "a8cf351447d3a02a452af8032fc20fd1f7c191dc4477a716ae29966cd8853e2c" }, "downloads": -1, "filename": "sqs-workers-0.2.3.tar.gz", "has_sig": false, "md5_digest": "5fdb28dd4e1a30859e6e83bb0dca4357", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 13003, "upload_time": "2018-08-22T14:11:31", "upload_time_iso_8601": "2018-08-22T14:11:31.707332Z", "url": "https://files.pythonhosted.org/packages/cc/ad/18af86c0d45011976d9a12f4286a6c7ec6360d4afbfe1940fe9505e713d0/sqs-workers-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "c09add96f14a1ad36e6f4f8cae54efac", "sha256": "1e20e2f86db72018a999edd434a1ff9062d38fc05cbdc67a7c9b52ccefd83ee6" }, "downloads": -1, "filename": "sqs_workers-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c09add96f14a1ad36e6f4f8cae54efac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 12519, "upload_time": "2018-08-23T12:22:15", "upload_time_iso_8601": "2018-08-23T12:22:15.037413Z", "url": "https://files.pythonhosted.org/packages/3b/a1/8efde2aba4479fddafd2e3405d61c65d62d341ef345174911068e321f5d9/sqs_workers-0.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21827f4d2a477465c8755f49a8c54284", "sha256": "bd89f0dba33b7483a75330f7b410a5650301bcedd36ad482a4c7f3fb3d55146f" }, "downloads": -1, "filename": "sqs-workers-0.3.0.tar.gz", "has_sig": false, "md5_digest": "21827f4d2a477465c8755f49a8c54284", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 14729, "upload_time": "2018-08-23T12:22:16", "upload_time_iso_8601": "2018-08-23T12:22:16.769551Z", "url": "https://files.pythonhosted.org/packages/05/14/7d01b58022b9dc13b9709ae1d093bed7fde13d57194d84dc739fc4370d74/sqs-workers-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "83f3593e8d04bb081dfb2363bf27b41e", "sha256": "07820e2336135019e52dd5e9d18d251565c0051c086018a5972919d43b4009e2" }, "downloads": -1, "filename": "sqs_workers-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "83f3593e8d04bb081dfb2363bf27b41e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 13543, "upload_time": "2018-10-12T09:59:34", "upload_time_iso_8601": "2018-10-12T09:59:34.763329Z", "url": "https://files.pythonhosted.org/packages/77/56/3fdda6b3012c9b51a4ca11e942d5aa0c3b03f5c02c13812093360854e0a1/sqs_workers-0.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b732acc05be61fcb1d7e36a358c6ca5", "sha256": "95cc66faf394b73d5886a636525e9e8c8a49e94af49aefbd71d7d00bdfaa99c2" }, "downloads": -1, "filename": "sqs-workers-0.3.1.tar.gz", "has_sig": false, "md5_digest": "2b732acc05be61fcb1d7e36a358c6ca5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 14960, "upload_time": "2018-10-12T09:59:37", "upload_time_iso_8601": "2018-10-12T09:59:37.030846Z", "url": "https://files.pythonhosted.org/packages/a0/c5/64255fb652a28cca763013d8cde91c0f4f5f3b7a9b08bdd9ffa87ccb02a1/sqs-workers-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "3dad83aef63610cf766a3536da096e52", "sha256": "1605c48057a9855d4be87baef6819b63ff48fe8bb23523168167236b90db7029" }, "downloads": -1, "filename": "sqs_workers-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3dad83aef63610cf766a3536da096e52", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 17391, "upload_time": "2018-11-07T14:49:32", "upload_time_iso_8601": "2018-11-07T14:49:32.307240Z", "url": "https://files.pythonhosted.org/packages/75/0f/2fa35a0c338bb7c1c5118e363639df9c640d78742e09131af968b2996bef/sqs_workers-0.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f2f272d846bec2d562521b259acc5f7", "sha256": "284851419916e8e7a6726e4c6adf72e05de0f366954148e9f8ec935707b353aa" }, "downloads": -1, "filename": "sqs-workers-0.3.2.tar.gz", "has_sig": false, "md5_digest": "6f2f272d846bec2d562521b259acc5f7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 17089, "upload_time": "2018-11-07T14:49:33", "upload_time_iso_8601": "2018-11-07T14:49:33.934887Z", "url": "https://files.pythonhosted.org/packages/08/e0/9a1c7b0fe05ae15e95e52e93ba9e82855b22f5ad61ed6a956a50b9cedb26/sqs-workers-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "115437d941bb32e5dce0f4f98359587b", "sha256": "1b592a63ef6d6c5efd029c9fc70aa4dcb3c922e0aba40a0c39b257a919f31413" }, "downloads": -1, "filename": "sqs_workers-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "115437d941bb32e5dce0f4f98359587b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 17391, "upload_time": "2018-11-07T15:31:59", "upload_time_iso_8601": "2018-11-07T15:31:59.331406Z", "url": "https://files.pythonhosted.org/packages/de/fa/6f2f001ebd5edf90550dde8d1c3c5d31552d2875dcd119c111ebfe9bf690/sqs_workers-0.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "170080f7e081726b436d8e6280ad9519", "sha256": "d4ca9d1920cc8577d0240f55aa34a9919b1dea879e7a339d89873ef20defa37b" }, "downloads": -1, "filename": "sqs-workers-0.3.3.tar.gz", "has_sig": false, "md5_digest": "170080f7e081726b436d8e6280ad9519", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 17100, "upload_time": "2018-11-07T15:32:00", "upload_time_iso_8601": "2018-11-07T15:32:00.850525Z", "url": "https://files.pythonhosted.org/packages/bc/b1/d18836238c311e92e67155aeca414c852cd629300dfdde322af2b749f994/sqs-workers-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "616707956e27b480358bfd2db28f3e82", "sha256": "dc5861bac3c64b2052928d345fb39a4128ac99dbd09bc30fa5b6b251e78e282d" }, "downloads": -1, "filename": "sqs_workers-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "616707956e27b480358bfd2db28f3e82", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 18743, "upload_time": "2018-11-27T13:14:09", "upload_time_iso_8601": "2018-11-27T13:14:09.765686Z", "url": "https://files.pythonhosted.org/packages/db/a3/de8d54cb8a27ec890403e4a87e2a4d280c51d1b1ff0247a2ccabc07e846d/sqs_workers-0.3.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ba77e9df12b5932e4d37d8d850d1c2b", "sha256": "ed1fdd9f7bb9765f5373b0aa5e4540e8161491231757b7556f53a84eab42b208" }, "downloads": -1, "filename": "sqs-workers-0.3.4.tar.gz", "has_sig": false, "md5_digest": "9ba77e9df12b5932e4d37d8d850d1c2b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 18733, "upload_time": "2018-11-27T13:14:11", "upload_time_iso_8601": "2018-11-27T13:14:11.107260Z", "url": "https://files.pythonhosted.org/packages/55/24/ccdd6e00f83c003216166993944be82ea839a400b5cf7a8704723fff49ce/sqs-workers-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "7d60769c5642618f0eb95b839ecddef5", "sha256": "62453b736fda52be322a8a5ea3f971096660bdc36d841443b7abe6439ac60037" }, "downloads": -1, "filename": "sqs_workers-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d60769c5642618f0eb95b839ecddef5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 19389, "upload_time": "2018-11-27T15:36:56", "upload_time_iso_8601": "2018-11-27T15:36:56.006006Z", "url": "https://files.pythonhosted.org/packages/bd/da/0c4dd7233aa8b4ce9c5ab3cfdff00095483eca4a7b59bd39cb5f3824e53a/sqs_workers-0.3.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf2d1e2ad4ae9c2f08fae0ad50d86d2b", "sha256": "d7decc4e4eecbaa48db1e21dbabb5a510e97f948f02abb26e7254bc9c0d60564" }, "downloads": -1, "filename": "sqs-workers-0.3.5.tar.gz", "has_sig": false, "md5_digest": "cf2d1e2ad4ae9c2f08fae0ad50d86d2b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 19161, "upload_time": "2018-11-27T15:36:57", "upload_time_iso_8601": "2018-11-27T15:36:57.608497Z", "url": "https://files.pythonhosted.org/packages/7f/f5/b7e6ef817be767595bca15791b5ba30f81e064841995573c3ba79e8b9bce/sqs-workers-0.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "73338ca9d7af628170f4d544e04cb2ce", "sha256": "784c35bd0c64af4d5d2ac24faf785ef91a748b7ffafdf61ed70c28cdbcb5dc2b" }, "downloads": -1, "filename": "sqs_workers-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73338ca9d7af628170f4d544e04cb2ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 20134, "upload_time": "2019-01-10T20:13:12", "upload_time_iso_8601": "2019-01-10T20:13:12.441285Z", "url": "https://files.pythonhosted.org/packages/d3/b4/3f4c3701e5d5b25df547e46f16b94e050a28e4c4b5097856fbe81037c06b/sqs_workers-0.3.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3de3cf57a924a988298031d2ad3c6290", "sha256": "d1f208b9eb5115e7587d30e69f25e318140d946f2e2af211b4dacdb7b7dad997" }, "downloads": -1, "filename": "sqs-workers-0.3.6.tar.gz", "has_sig": false, "md5_digest": "3de3cf57a924a988298031d2ad3c6290", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 20139, "upload_time": "2019-01-10T20:13:14", "upload_time_iso_8601": "2019-01-10T20:13:14.664104Z", "url": "https://files.pythonhosted.org/packages/05/d9/66494b3d0ca3e8f75a87ecc4258cb07b2dfb3b7d925cc074862869c39865/sqs-workers-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "623c26d563fae9524bba95867c9d29b9", "sha256": "6fbe8120fa6b803c105864030275e152baea53d730fe30e826f0c764e03ac5b3" }, "downloads": -1, "filename": "sqs_workers-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "623c26d563fae9524bba95867c9d29b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 20389, "upload_time": "2019-01-10T22:26:43", "upload_time_iso_8601": "2019-01-10T22:26:43.904268Z", "url": "https://files.pythonhosted.org/packages/d6/7f/db6060150f850230e35d54dd1bb8c48df544c05941a11ab9bc0e2aaa2142/sqs_workers-0.3.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbe630ddfe1ad0cb936dd8b2fb888e52", "sha256": "8e126c9908dbb21d7c22b9e38df88e3d1c721af1882374b85c31cc62b2c95b10" }, "downloads": -1, "filename": "sqs-workers-0.3.7.tar.gz", "has_sig": false, "md5_digest": "cbe630ddfe1ad0cb936dd8b2fb888e52", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 20590, "upload_time": "2019-01-10T22:26:45", "upload_time_iso_8601": "2019-01-10T22:26:45.774788Z", "url": "https://files.pythonhosted.org/packages/69/f2/42aefad9e12192959094c261bb9b650929beecb9caaf20c399532c8f35be/sqs-workers-0.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "75c8458ec0be221f6a96e31106d45907", "sha256": "c99cc5b9e50468599ff293e77ceca75bc35f01de438d80bea19fdf7295a4f376" }, "downloads": -1, "filename": "sqs_workers-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75c8458ec0be221f6a96e31106d45907", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 22295, "upload_time": "2019-01-15T17:37:10", "upload_time_iso_8601": "2019-01-15T17:37:10.067490Z", "url": "https://files.pythonhosted.org/packages/3c/42/322fa7e0f5c8c173c4e85e6519f167c9c9c796b47970aeb7a22102b5e75c/sqs_workers-0.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4a9308b859b6cba706dba2688b52c5e", "sha256": "eca30347fba8f959dc9e3a6f27a5378201c1f9dddbc29cf8c59547080e5ee46e" }, "downloads": -1, "filename": "sqs-workers-0.4.0.tar.gz", "has_sig": false, "md5_digest": "b4a9308b859b6cba706dba2688b52c5e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 22815, "upload_time": "2019-01-15T17:37:11", "upload_time_iso_8601": "2019-01-15T17:37:11.853300Z", "url": "https://files.pythonhosted.org/packages/f5/ca/17dc6e86ea44c7e50d4d0518471124be9fd61010845d90fb9ff6619585d9/sqs-workers-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "58943566b09332d4c2f849c9f655d0b0", "sha256": "672511e890fc1c90e3a804d104a6fc72df6e765f9011f5c22e7f617d184d5a87" }, "downloads": -1, "filename": "sqs_workers-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "58943566b09332d4c2f849c9f655d0b0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 22427, "upload_time": "2019-01-16T10:40:30", "upload_time_iso_8601": "2019-01-16T10:40:30.045404Z", "url": "https://files.pythonhosted.org/packages/0b/b9/8ad1b12bb8e0f2ec106f5b015df72e9f267d48b8806817c9af47c7b75290/sqs_workers-0.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b974536744d5dd976451120a1ec42b07", "sha256": "f3f6a6daa0d596f67f79c2e8b1eba99409e00fe4f0beb3a634dc39d464b893f3" }, "downloads": -1, "filename": "sqs-workers-0.4.1.tar.gz", "has_sig": false, "md5_digest": "b974536744d5dd976451120a1ec42b07", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 22915, "upload_time": "2019-01-16T10:40:31", "upload_time_iso_8601": "2019-01-16T10:40:31.623941Z", "url": "https://files.pythonhosted.org/packages/a3/fd/fd77b9ce4a1cf04a5fdb31c24567c730e541ff7f41eda8ae1ed45b0262ef/sqs-workers-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "103baedb7e6f0c1bbd0c2d29de8e2a8a", "sha256": "373bb201c357fb58c7a63271b4bbfe34034a6add09f190b7a12984b8056b92da" }, "downloads": -1, "filename": "sqs_workers-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "103baedb7e6f0c1bbd0c2d29de8e2a8a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 24611, "upload_time": "2019-10-28T07:49:54", "upload_time_iso_8601": "2019-10-28T07:49:54.526607Z", "url": "https://files.pythonhosted.org/packages/df/9f/6a7776c3f55b0d20b1d1e3cdb31babd121cb4ed5c2a7b7b27457a84efa63/sqs_workers-0.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46a07b9e7b09d91154db8d1ff2b076e5", "sha256": "12d980463f91f2291b71c10b42fd3320d9de8b7ca0d3d584c1c27c07ecdd6973" }, "downloads": -1, "filename": "sqs-workers-0.5.0.tar.gz", "has_sig": false, "md5_digest": "46a07b9e7b09d91154db8d1ff2b076e5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 24865, "upload_time": "2019-10-28T07:49:56", "upload_time_iso_8601": "2019-10-28T07:49:56.874777Z", "url": "https://files.pythonhosted.org/packages/25/40/be53b03b9e266ce2bd6558d26e7f9c53d333513f7e080be6103818abaf2c/sqs-workers-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "fd1cddaef2b34e8b3d4dad9a7f7ca7be", "sha256": "2f1ee7df9eb3a82d76b82e39881696d5d3aa387730b24c0327b5c3a100dca316" }, "downloads": -1, "filename": "sqs_workers-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd1cddaef2b34e8b3d4dad9a7f7ca7be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 24949, "upload_time": "2019-11-05T11:51:17", "upload_time_iso_8601": "2019-11-05T11:51:17.241716Z", "url": "https://files.pythonhosted.org/packages/2e/0b/aa66449b64699037adb34c5f06b4bc345496d4fed009aa558d7bae2cfebd/sqs_workers-0.5.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89740b9603bc2114abd5f35e4d7f272b", "sha256": "e837c991e11659fc4fe5dda3cd438b905224fb20c626856e88dece9d9b6a7b0f" }, "downloads": -1, "filename": "sqs-workers-0.5.1.tar.gz", "has_sig": false, "md5_digest": "89740b9603bc2114abd5f35e4d7f272b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 25293, "upload_time": "2019-11-05T11:51:19", "upload_time_iso_8601": "2019-11-05T11:51:19.395070Z", "url": "https://files.pythonhosted.org/packages/a9/d1/6816abf313f7c2ce50113bb6f83ba7cb964070f2eed1525b62fb348ece27/sqs-workers-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "03bace3c3799b5967e40f3911f8e3bfe", "sha256": "456f6847e11e1e6004bda6e85c0c4a2beaf3be919f66fa9938b55eefce6378d1" }, "downloads": -1, "filename": "sqs_workers-0.5.2-py3.8.egg", "has_sig": false, "md5_digest": "03bace3c3799b5967e40f3911f8e3bfe", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=2.7", "size": 53111, "upload_time": "2020-06-10T10:12:31", "upload_time_iso_8601": "2020-06-10T10:12:31.399854Z", "url": "https://files.pythonhosted.org/packages/a1/1c/2caa4b8596b3fa34ce70f4d2b245ed10719f680194774531514d08d52c74/sqs_workers-0.5.2-py3.8.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "841ccd02803eb80432387b2d342bb983", "sha256": "396ffcbd229531b8aa7a2a09e954fc1b1db0da959292d66ac88ebe883a4a175b" }, "downloads": -1, "filename": "sqs-workers-0.5.2.tar.gz", "has_sig": false, "md5_digest": "841ccd02803eb80432387b2d342bb983", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 26432, "upload_time": "2020-06-10T10:12:29", "upload_time_iso_8601": "2020-06-10T10:12:29.617619Z", "url": "https://files.pythonhosted.org/packages/41/bf/abd4a1dfc27293aba3c0450895d46ea83338245c5dc3092546360bc729c1/sqs-workers-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "65812ab596bde0094cc33479ff719e4b", "sha256": "ed476f077dff46a68cc5d02f3ec9ef4ae39bd0d86711d9a85130d209e03206e7" }, "downloads": -1, "filename": "sqs_workers-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "65812ab596bde0094cc33479ff719e4b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 26614, "upload_time": "2020-07-23T13:54:01", "upload_time_iso_8601": "2020-07-23T13:54:01.165116Z", "url": "https://files.pythonhosted.org/packages/4c/95/1f1f2e3d2e8cdc0ac04ec9af7b4b417dac1607aa17e5ec55aceb3cdf41b7/sqs_workers-0.5.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89fac1af2704171a012d56701e07c5a7", "sha256": "f0f1487f07dbcac62280d4e8c1d4b52f95958f2a3a79abf2d011ca22f00babf2" }, "downloads": -1, "filename": "sqs-workers-0.5.3.tar.gz", "has_sig": false, "md5_digest": "89fac1af2704171a012d56701e07c5a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 27480, "upload_time": "2020-07-23T13:54:03", "upload_time_iso_8601": "2020-07-23T13:54:03.086867Z", "url": "https://files.pythonhosted.org/packages/e4/b6/8ccfce8e7192fd7dbcb02b45daafa357b35e0971aa6961f4fa5a8dcffd2b/sqs-workers-0.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "b35ee127ab4fc5e4baa65d26c641f81c", "sha256": "573311626b9f6b44f2cfccd48d5fcfcce98028bac0cb05ca95a377adbf58ebcd" }, "downloads": -1, "filename": "sqs_workers-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b35ee127ab4fc5e4baa65d26c641f81c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 27355, "upload_time": "2020-11-12T14:40:04", "upload_time_iso_8601": "2020-11-12T14:40:04.434238Z", "url": "https://files.pythonhosted.org/packages/46/6c/ca113502587485b880c6989a98f5781f10be7b26c1b31e72b81d920a5bd9/sqs_workers-0.5.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6edb658c456528f1a786fdf1ac42a054", "sha256": "305c6cf5c201cb849e11e38001958e82089d7bb62d74171761d0820ac9aa8a7b" }, "downloads": -1, "filename": "sqs-workers-0.5.4.tar.gz", "has_sig": false, "md5_digest": "6edb658c456528f1a786fdf1ac42a054", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 28951, "upload_time": "2020-11-12T14:40:06", "upload_time_iso_8601": "2020-11-12T14:40:06.156602Z", "url": "https://files.pythonhosted.org/packages/10/a4/be8dddc3744022297a6ce0804fc927f4acefbbed827c312735155ac80f46/sqs-workers-0.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "9f652ae8a3c67bb5d3677c898adcd641", "sha256": "afd041cc597a5652284fd22f0952c5fb505d29ebca3149508ec612ef5f12a6b6" }, "downloads": -1, "filename": "sqs_workers-0.5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9f652ae8a3c67bb5d3677c898adcd641", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.8", "size": 27127, "upload_time": "2022-05-05T14:56:33", "upload_time_iso_8601": "2022-05-05T14:56:33.024910Z", "url": "https://files.pythonhosted.org/packages/a8/b2/a6723be794ee79101da7d6d0bee4af862c9fd51d26c5adc1e520aadeb11e/sqs_workers-0.5.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cc6d01687cd5b447ee3ee9ada6590da", "sha256": "b087640e1cf247cbc8a81e0c87f2e2e0136290d227c66ce86e462fef060d5ec7" }, "downloads": -1, "filename": "sqs-workers-0.5.5.tar.gz", "has_sig": false, "md5_digest": "6cc6d01687cd5b447ee3ee9ada6590da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 27086, "upload_time": "2022-05-05T14:56:35", "upload_time_iso_8601": "2022-05-05T14:56:35.804636Z", "url": "https://files.pythonhosted.org/packages/5e/9a/26eb5e131fa3c0bd4bc7164752e21c6cae77750440cc8b24d211615abc2f/sqs-workers-0.5.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "7d61e877df61fc0fa118c57c01295dbe", "sha256": "3d6ff5d28546d951db58190294b7992f9526b1de64b5b4b890434d1760b06d97" }, "downloads": -1, "filename": "sqs_workers-0.5.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d61e877df61fc0fa118c57c01295dbe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.8", "size": 27664, "upload_time": "2022-05-10T13:20:45", "upload_time_iso_8601": "2022-05-10T13:20:45.922469Z", "url": "https://files.pythonhosted.org/packages/3b/0f/5e2e6a59db29ac44d0d99438ba8d2860e5f228d5ad44804c008ba6aa2aeb/sqs_workers-0.5.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "890fe79ac774c9c6c57ca801825cb659", "sha256": "a33b30e170cf0dba54fc4e69d79c5ca31337e785b6374ff897c86e95d47dab8b" }, "downloads": -1, "filename": "sqs-workers-0.5.6.tar.gz", "has_sig": false, "md5_digest": "890fe79ac774c9c6c57ca801825cb659", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 27600, "upload_time": "2022-05-10T13:20:48", "upload_time_iso_8601": "2022-05-10T13:20:48.512833Z", "url": "https://files.pythonhosted.org/packages/39/8a/81cff635b517e586ab044826b9462a3af60c282c0eff3cddf18b68a027fd/sqs-workers-0.5.6.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7d61e877df61fc0fa118c57c01295dbe", "sha256": "3d6ff5d28546d951db58190294b7992f9526b1de64b5b4b890434d1760b06d97" }, "downloads": -1, "filename": "sqs_workers-0.5.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d61e877df61fc0fa118c57c01295dbe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.8", "size": 27664, "upload_time": "2022-05-10T13:20:45", "upload_time_iso_8601": "2022-05-10T13:20:45.922469Z", "url": "https://files.pythonhosted.org/packages/3b/0f/5e2e6a59db29ac44d0d99438ba8d2860e5f228d5ad44804c008ba6aa2aeb/sqs_workers-0.5.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "890fe79ac774c9c6c57ca801825cb659", "sha256": "a33b30e170cf0dba54fc4e69d79c5ca31337e785b6374ff897c86e95d47dab8b" }, "downloads": -1, "filename": "sqs-workers-0.5.6.tar.gz", "has_sig": false, "md5_digest": "890fe79ac774c9c6c57ca801825cb659", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 27600, "upload_time": "2022-05-10T13:20:48", "upload_time_iso_8601": "2022-05-10T13:20:48.512833Z", "url": "https://files.pythonhosted.org/packages/39/8a/81cff635b517e586ab044826b9462a3af60c282c0eff3cddf18b68a027fd/sqs-workers-0.5.6.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }