{ "info": { "author": "Privex Inc. (2019+) / Derek Stegelman (2011-2018)", "author_email": "chris@privex.io", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities" ], "description": "[![Build Status](https://travis-ci.org/Privex/django-mail-queue.png?branch=master)](https://travis-ci.org/Privex/django-mail-queue)\n[![PyPi Version](https://img.shields.io/pypi/v/django-mail-queue.svg)](https://pypi.org/project/django-mail-queue/)\n![License Button](https://img.shields.io/pypi/l/django-mail-queue) ![PyPI - Downloads](https://img.shields.io/pypi/dm/django-mail-queue)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-mail-queue) \n![GitHub last commit](https://img.shields.io/github/last-commit/Privex/django-mail-queue)\n\nDjango Mail Queue\n=================\n\nThis is a fork of http://github.com/dstegelman/django-mail-queue maintained by [Privex Inc.](https://www.privex.io/)\n\nDerek passed on ownership of the original `django-mail-queue` PyPi package to Privex on 17 Sep 2019\n\nPrivex publishes the fork under the original PyPi package `django-mail-queue` (since v3.2.0).\n\nThis fork is considered to be actively maintained by Privex for both bug fixes and feature additions since\nDecember 2018. \n\nIf our fork has helped you, consider \n[grabbing a VPS or Dedicated Server from Privex](https://www.privex.io/) - prices start at as little \nas US$0.99/mo (yes that's 99 cents a month, and we take cryptocurrency!)\n\nMail Queue provides an easy and simple way to send email. Each email is saved and queued up either in\nreal time or with Celery. As always, feedback, bugs, and suggestions are welcome.\n\n\n\nInstall\n========\n\n`django-mail-queue` maintains high compatibility, from as old as Django 1.8 on Python 2.7, up to Django 2.2 on \nPython 3.7\n\nTo check the compatibility, see [Travis CI](https://travis-ci.org/Privex/django-mail-queue), which runs the unit\ntests on a variety of Python and Django versions.\n\n### Download and install from PyPi using pip (recommended)\n\n```sh\npip3 install django-mail-queue\n```\n\n### (Alternative) Manual install from Git\n\n**Option 1 - Use pip to install straight from Github**\n\n```sh\npip3 install git+https://github.com/Privex/django-mail-queue\n```\n\n**Option 2 - Clone and install manually**\n\n```bash\n# Clone the repository from Github\ngit clone https://github.com/Privex/django-mail-queue\ncd django-mail-queue\n\n# RECOMMENDED MANUAL INSTALL METHOD\n# Use pip to install the source code\npip3 install .\n\n# ALTERNATIVE MANUAL INSTALL METHOD\n# If you don't have pip, or have issues with installing using it, then you can use setuptools instead.\npython3 setup.py install\n```\n\nQuickstart\n============\n\n### Basic configuration\n\nFirst install the package into your project (see above).\n\nOpen settings.py and add mailqueue to your INSTALLED_APPS:\n\n```python\nINSTALLED_APPS = (\n 'mailqueue',\n)\n```\n\nAdd the below settings, and adjust as needed:\n\n```python\n\n# If you're using Celery, set this to True\nMAILQUEUE_CELERY = False\n\n# Enable the mail queue. If this is set to False, the mail queue will be disabled and emails will be \n# sent immediately instead.\nMAILQUEUE_QUEUE_UP = True\n\n# Maximum amount of emails to send during each queue run\nMAILQUEUE_LIMIT = 50\n\n# If MAILQUEUE_STORAGE is set to True, will ignore your default storage settings\n# and use Django's filesystem storage instead (stores them in MAILQUEUE_ATTACHMENT_DIR) \nMAILQUEUE_STORAGE = False\nMAILQUEUE_ATTACHMENT_DIR = 'mailqueue-attachments'\n\n```\n\n### Running the migrations\n\nOnce you've added mailqueue to your `INSTALLED_APPS` plus the basic config in settings.py, run the \nmigrations to create the tables needed:\n\n\n```bash\npython manage.py migrate\n```\n\n### Basic usage of the queue programmatically\n\nSimply save an email to the database using `MailerMessage`, and the queue will pick it up on it's next run.\n\n```python\n\nfrom mailqueue.models import MailerMessage\n\nmy_email = \"dave@example.com\"\nmy_name = \"Dave Johnston\"\ncontent = \"\"\"\nDear John,\n\nThis is an example email from Dave.\n\nThanks,\nDave Johnston!\n\"\"\"\n\nmsg = MailerMessage()\nmsg.subject = \"Hello World\"\nmsg.to_address = \"john@example.com\"\n\n# For sender names to be displayed correctly on mail clients, simply put your name first\n# and the actual email in angle brackets \n# The below example results in \"Dave Johnston \"\nmsg.from_address = '{} <{}>'.format(my_name, my_email)\n\n# As this is only an example, we place the text content in both the plaintext version (content) \n# and HTML version (html_content).\nmsg.content = content\nmsg.html_content = content\nmsg.save()\n\n\n``` \n\n\n\n\n### Triggering the queue runner\n\n\nTo send emails in the queue (without Celery), use the management command:\n\n```bash\n# Send up to MAILQUEUE_LIMIT emails now\npython manage.py send_queued_messages\n\n# You can use --limit / -l to override the settings.py limit for a specific run\npython manage.py send_queued_messages --limit 10\npython manage.py send_queued_messages -l 10\n```\n\nIf not using Celery, simply add a cron to your system to run `manage.py send_queued_messages` every minute (or however\noften you want).\n\n\n\nDocumentation\n-------------\n\nhttp://readthedocs.org/docs/django-mail-queue/en/latest/\n\nMail Queue provides an admin interface to view all attempted emails and actions for resending failed messages.\n\n![Screenshot of Email List](https://cdn.privex.io/github/privex-mail-queue/pmq-message-list.png)\n\n![Screenshot of Email Actions](https://cdn.privex.io/github/privex-mail-queue/pmq-message-actions.png)\n\n\nSupport/Help/Spam/Hate Mail\n---------------------------\n\nIf you have questions/problems/suggestions the quickest way to reach me to is simply add a GitHub issue to this project.\n\nRunning the Tests Locally\n-------------------------\n\n```\npip install django\npip install -r requirements.txt\n\npy.test mailqueue\n```\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": "http://github.com/Privex/django-mail-queue", "keywords": "django-mail-queue", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-mail-queue", "package_url": "https://pypi.org/project/django-mail-queue/", "platform": "", "project_url": "https://pypi.org/project/django-mail-queue/", "project_urls": { "Homepage": "http://github.com/Privex/django-mail-queue" }, "release_url": "https://pypi.org/project/django-mail-queue/3.2.2.post1/", "requires_dist": null, "requires_python": "", "summary": "Simple Mail Queuing for Django", "version": "3.2.2.post1" }, "last_serial": 5839249, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "d63d7cb4797e643f897cad21f17acd49", "sha256": "5a5e8e64ed6718ee30c80e1902a7e9108db802043d7c66f0cd89c9f7e332faf2" }, "downloads": -1, "filename": "django-mail-queue-1.0.1.tar.gz", "has_sig": false, "md5_digest": "d63d7cb4797e643f897cad21f17acd49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2023, "upload_time": "2011-12-20T01:47:34", "url": "https://files.pythonhosted.org/packages/c4/26/132ff31d6b00213743483d2f18cbae29ca69b10b639c8a4ec3b0dc61de65/django-mail-queue-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f0ed366d2f9e1240afbf8f2d48e42d94", "sha256": "7b6587a4f884d4f6fa65bfbae7ac116fa5467504a2b7512d6ce619c2c3cfd417" }, "downloads": -1, "filename": "django-mail-queue-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f0ed366d2f9e1240afbf8f2d48e42d94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3003, "upload_time": "2012-02-04T03:09:12", "url": "https://files.pythonhosted.org/packages/66/93/2f826348e77abbe02cde00d76ead765592f8d68152bad2341e6324bb4c7e/django-mail-queue-1.1.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "772127ba6b31816892bd18c89cc5f743", "sha256": "da108315b74d856a534e67c6b2de3596abfc922057244bc2d7236717966fa3de" }, "downloads": -1, "filename": "django-mail-queue-1.2.1.tar.gz", "has_sig": false, "md5_digest": "772127ba6b31816892bd18c89cc5f743", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3041, "upload_time": "2012-10-10T00:41:50", "url": "https://files.pythonhosted.org/packages/83/5b/756194cb12f5e1c525e41ee881e08e354d370609365698277043569e2324/django-mail-queue-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "550b49541b88292563d38a852e41133d", "sha256": "b60a69a9546bb65d0d896720c8f67c38bca641b131c8d94b51509741105140ae" }, "downloads": -1, "filename": "django-mail-queue-1.2.2.tar.gz", "has_sig": false, "md5_digest": "550b49541b88292563d38a852e41133d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3070, "upload_time": "2012-10-12T14:10:50", "url": "https://files.pythonhosted.org/packages/12/19/b63ac5321c476d5eeabe0ce0dea26b081a1e34c9250a4daaa6230b0e6d87/django-mail-queue-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "d64908a9487766116d3729135023bdec", "sha256": "b872fe189d88ef620499d8196fafb149e35f8840301c200038088e18b23f19c8" }, "downloads": -1, "filename": "django-mail-queue-1.2.3.tar.gz", "has_sig": false, "md5_digest": "d64908a9487766116d3729135023bdec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3220, "upload_time": "2012-12-22T14:14:23", "url": "https://files.pythonhosted.org/packages/1a/95/c761174c31c502abb5249c6689fe6e8333560ea43c82ae3fbbc3be7ea6d3/django-mail-queue-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "4139dcff48f849b7193ec24e093afd54", "sha256": "a34457a426042c9d690eadf34a3dca5f260989cf6e91048080575ecd180ee28f" }, "downloads": -1, "filename": "django-mail-queue-1.2.4.tar.gz", "has_sig": false, "md5_digest": "4139dcff48f849b7193ec24e093afd54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4077, "upload_time": "2012-12-22T14:18:28", "url": "https://files.pythonhosted.org/packages/da/89/a72163109b012c332b8760580037a37d678f65b5b3e9e57cba0453e8cb33/django-mail-queue-1.2.4.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "5a6ce301cee814fc6c8ab1b4704b4226", "sha256": "f6abf17d910cfb26a4442c2275b3eeb4c376303baeb48d2a35e383847b702dc9" }, "downloads": -1, "filename": "django-mail-queue-1.3.0.tar.gz", "has_sig": false, "md5_digest": "5a6ce301cee814fc6c8ab1b4704b4226", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4097, "upload_time": "2012-12-27T20:42:07", "url": "https://files.pythonhosted.org/packages/69/b1/6720efc673a6381ea413f267e026fefb6d5f875327871841dab0e1fc849a/django-mail-queue-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "9a76fd0ae6314f56ab2061e621b861ad", "sha256": "ae708bd7b522d1121329de132fe495b90db2957fa7a1a780ae2a1568973e196a" }, "downloads": -1, "filename": "django-mail-queue-1.3.1.tar.gz", "has_sig": false, "md5_digest": "9a76fd0ae6314f56ab2061e621b861ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4468, "upload_time": "2012-12-27T21:46:18", "url": "https://files.pythonhosted.org/packages/f2/f7/42701268022bca8bf7f05881f65a07eef3ec2512f54bc3e6ebf9ed8ba727/django-mail-queue-1.3.1.tar.gz" } ], "1.3.1b1": [ { "comment_text": "", "digests": { "md5": "277bd3343e2b4846ca751cf3da01b5aa", "sha256": "c0a8867f1b03444935688fc75e516ba4458df016d646ff46f775c7422596065a" }, "downloads": -1, "filename": "django-mail-queue-1.3.1b1.tar.gz", "has_sig": false, "md5_digest": "277bd3343e2b4846ca751cf3da01b5aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4348, "upload_time": "2012-12-27T21:15:27", "url": "https://files.pythonhosted.org/packages/6e/07/4c0a393065ede95fc212746138ec4c236c5c19f5be79d9f9adaba75a63d7/django-mail-queue-1.3.1b1.tar.gz" } ], "1.3.1b2": [ { "comment_text": "", "digests": { "md5": "78c8a65a1d44e906612684209be5c5b2", "sha256": "84fee80c8573cc48ccfe965ad556c3bcf9d9bd7724711fe35fb931a6e99e9af7" }, "downloads": -1, "filename": "django-mail-queue-1.3.1b2.tar.gz", "has_sig": false, "md5_digest": "78c8a65a1d44e906612684209be5c5b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4379, "upload_time": "2012-12-27T21:19:00", "url": "https://files.pythonhosted.org/packages/bc/55/1428a0dd85d61e60580a68477a9c174754331fe0d840934eb100cfe40859/django-mail-queue-1.3.1b2.tar.gz" } ], "1.3.1b3": [ { "comment_text": "", "digests": { "md5": "60dbc6562bd553986e270a315a7be84c", "sha256": "ab3eb8f0c2e571d4495c3fa562ca79716b7a5e1a9d55313ff925e6ab8e55d096" }, "downloads": -1, "filename": "django-mail-queue-1.3.1b3.tar.gz", "has_sig": false, "md5_digest": "60dbc6562bd553986e270a315a7be84c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4389, "upload_time": "2012-12-27T21:26:31", "url": "https://files.pythonhosted.org/packages/1f/a1/1a501733a2f052d0cddd5f0c70cea9e2113d1490c0913fddc05a61218a15/django-mail-queue-1.3.1b3.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "e5e02a0b59c3473a46908ace9d93a62c", "sha256": "18eff3b732f1b4a5242e3c4f089b70e24e0c8186b239a8cee10c5f0df58adc65" }, "downloads": -1, "filename": "django-mail-queue-1.4.0.tar.gz", "has_sig": false, "md5_digest": "e5e02a0b59c3473a46908ace9d93a62c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5005, "upload_time": "2013-02-01T16:39:35", "url": "https://files.pythonhosted.org/packages/4f/4d/2daac084cae84111fb9706139ec4ad4aa435c838910aac367debfb1809dd/django-mail-queue-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "91ad91b359b1be7a6ebb53c31ca7dbbb", "sha256": "a121f301dd8510c9f98f624d815a25696b32e12f5ab91614983b9e7959e6e982" }, "downloads": -1, "filename": "django-mail-queue-1.5.0.tar.gz", "has_sig": false, "md5_digest": "91ad91b359b1be7a6ebb53c31ca7dbbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5725, "upload_time": "2013-02-22T02:03:42", "url": "https://files.pythonhosted.org/packages/13/07/abb176c9ae90efab0e34ae19e9f861e735a5690e7744affadfff079ffb03/django-mail-queue-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "cd0ed461f3bc003a296c842479bf9388", "sha256": "80a75d211e3b54734f68ac9a5c65ae49e0b4c36af24b06768a3a4afffaa7688d" }, "downloads": -1, "filename": "django-mail-queue-1.5.1.tar.gz", "has_sig": false, "md5_digest": "cd0ed461f3bc003a296c842479bf9388", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5782, "upload_time": "2013-02-24T02:58:28", "url": "https://files.pythonhosted.org/packages/22/4e/d5953058c9e4f8fbd7aefc90300187baeb41888862b559e89b010b01620f/django-mail-queue-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "1dcc67d43dec78d85028b62b0eb9490f", "sha256": "d0d65015acd8cd141c3bd80e502d4e7fa086b2e58e38de2618a0b2b554a13d49" }, "downloads": -1, "filename": "django-mail-queue-1.5.2.tar.gz", "has_sig": false, "md5_digest": "1dcc67d43dec78d85028b62b0eb9490f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5831, "upload_time": "2013-02-24T22:25:20", "url": "https://files.pythonhosted.org/packages/04/ca/1735d6f98a06de6c173698be71d64f79137ca4b13229719a91f6fc18c5e9/django-mail-queue-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "5bcd691dc8ede412f3cf103935fe50da", "sha256": "72eae64b3fb279cf8faedc95b36a7fa0e0634a23e85ebc7005038fb336afddb4" }, "downloads": -1, "filename": "django-mail-queue-1.5.3.tar.gz", "has_sig": false, "md5_digest": "5bcd691dc8ede412f3cf103935fe50da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5840, "upload_time": "2013-03-14T01:24:30", "url": "https://files.pythonhosted.org/packages/7b/36/5485efd1e3123c6421a09b735506365de40d6d349666e7f1097be446aeeb/django-mail-queue-1.5.3.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "d94eb0fc62c85f124a54c3b2ec951143", "sha256": "13b9ff0c0d167341a552d1a1df9aa6e3e29d496a659141fafb5bc2fa0ff4859d" }, "downloads": -1, "filename": "django-mail-queue-1.6.tar.gz", "has_sig": false, "md5_digest": "d94eb0fc62c85f124a54c3b2ec951143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7044, "upload_time": "2013-04-06T13:47:32", "url": "https://files.pythonhosted.org/packages/15/29/db73213c2f15c5abacfe8304b7b15adfaaaf032c96214f45aab057380024/django-mail-queue-1.6.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "8ba635fa3d5bf270a14a252585f77bef", "sha256": "8fb6b4ff582e23dc5d4917fd72b6ce9dba4fce993c3d8e7dd66be64d6a39cbaf" }, "downloads": -1, "filename": "django-mail-queue-1.6.1.tar.gz", "has_sig": false, "md5_digest": "8ba635fa3d5bf270a14a252585f77bef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7014, "upload_time": "2013-04-10T01:50:14", "url": "https://files.pythonhosted.org/packages/16/e9/82017aeecd2ed1565b57407116b93162f3202157df68d6b63b4781b6b11d/django-mail-queue-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "ef3665f23b1ae7c1598d552e5b0e4c9f", "sha256": "5d44cc7138c85e25ccaf9b8e964bf05ea01695e292c78b9b0abcdb02a0c388d4" }, "downloads": -1, "filename": "django-mail-queue-1.6.2.tar.gz", "has_sig": false, "md5_digest": "ef3665f23b1ae7c1598d552e5b0e4c9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7051, "upload_time": "2013-04-10T02:28:05", "url": "https://files.pythonhosted.org/packages/3e/4a/a478c22dde8c835a2b6482a09eb562998788605f4fce35a3108eb0bf87ac/django-mail-queue-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "480a5c0b3a6aa42e5be474b96153d693", "sha256": "124417ea1fd56e9f35353a68fd3064c271b76d13329f9e18f6bac07dd2bfe0fe" }, "downloads": -1, "filename": "django-mail-queue-1.6.3.tar.gz", "has_sig": false, "md5_digest": "480a5c0b3a6aa42e5be474b96153d693", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7059, "upload_time": "2013-04-20T13:36:21", "url": "https://files.pythonhosted.org/packages/14/91/08aa68a1a0dc51a83fc94784faa46cda84e65e7d65dc3e1e5429355e6494/django-mail-queue-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "643d9920ba3df2e28226d6dff3662262", "sha256": "63557cf49e3a063c5409831bdb1945ae2a5d45c900145b17b70ed017c2360b9f" }, "downloads": -1, "filename": "django-mail-queue-1.6.4.tar.gz", "has_sig": false, "md5_digest": "643d9920ba3df2e28226d6dff3662262", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7195, "upload_time": "2013-06-27T00:47:02", "url": "https://files.pythonhosted.org/packages/38/92/7746eb382af5a7e6c0eea1bd38e7da8d06782d1108c8facd7a8629f9a9a9/django-mail-queue-1.6.4.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "645dfd33d1aac4b53fb1b4d09715e21a", "sha256": "f2f35e7a95a02846fbd97d7ec472177069f252bc0a23f33025520f920f89e1e4" }, "downloads": -1, "filename": "django-mail-queue-2.0.0.tar.gz", "has_sig": false, "md5_digest": "645dfd33d1aac4b53fb1b4d09715e21a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7952, "upload_time": "2013-08-14T12:43:59", "url": "https://files.pythonhosted.org/packages/6e/01/52d582bf85240f6a3b4e120d9a47472fedfd476e6eef3466ae7148485caf/django-mail-queue-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "83359e91ebd8ee1cb4ac11e823e46930", "sha256": "822e9d3ae9c6bea29e4f4924d7e53d3138d1ad4f11064e6929487bad0095dc00" }, "downloads": -1, "filename": "django-mail-queue-2.0.1.tar.gz", "has_sig": false, "md5_digest": "83359e91ebd8ee1cb4ac11e823e46930", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7974, "upload_time": "2013-08-20T13:43:10", "url": "https://files.pythonhosted.org/packages/fd/74/e9563cd3432027af3bd170b26ff300ac11fef9c2a87e094263a428b84219/django-mail-queue-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "0f99f4a8faba1fc51743a63c7d38a60e", "sha256": "6f8a014b7897083ee5e8f63ecba0e7d850f55c8d149138265f656170dddff298" }, "downloads": -1, "filename": "django-mail-queue-2.0.2.tar.gz", "has_sig": false, "md5_digest": "0f99f4a8faba1fc51743a63c7d38a60e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7968, "upload_time": "2013-08-21T14:51:13", "url": "https://files.pythonhosted.org/packages/af/c8/3b8bbcdfc5d2223ee9035a338dd9a1c89432c0a87017a586d33a8b530585/django-mail-queue-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "eb66284c45f6939d7bd9cb56701371af", "sha256": "9edfc20a10af7eecc87821fd3ad58a27e23c10a57afd36efe7deaba9fc0d98ab" }, "downloads": -1, "filename": "django-mail-queue-2.0.3.tar.gz", "has_sig": false, "md5_digest": "eb66284c45f6939d7bd9cb56701371af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7976, "upload_time": "2013-11-12T15:16:50", "url": "https://files.pythonhosted.org/packages/21/1d/da25f3e1c9878eeb342d6d8af338ad5db47fc3f1f483eb126efc1b4656b9/django-mail-queue-2.0.3.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "ff2fed21fb9ffd25708567b0804918a5", "sha256": "71b06ccac1852a19803aee8ee0f1fb955473c9a0e39289b04c8eb30b23a34997" }, "downloads": -1, "filename": "django-mail-queue-2.1.0.tar.gz", "has_sig": false, "md5_digest": "ff2fed21fb9ffd25708567b0804918a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8121, "upload_time": "2013-12-07T22:19:11", "url": "https://files.pythonhosted.org/packages/8b/8a/160d2256ef39e2c75dd99d335b4ae0a7700443052d7930f89dba76777d47/django-mail-queue-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "1747f742fdaf9a72f318e462d42f3594", "sha256": "4d921bf2b69a1365c3f2c7f2dd5a4788c10d546e5256ed415b5af0a98508d875" }, "downloads": -1, "filename": "django-mail-queue-2.1.1.tar.gz", "has_sig": false, "md5_digest": "1747f742fdaf9a72f318e462d42f3594", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8218, "upload_time": "2014-03-01T19:54:41", "url": "https://files.pythonhosted.org/packages/88/68/81a0c14741b61d3854771c805c8d392d7d6e8d108b45f700546cd3fcfe34/django-mail-queue-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "0994d9a78655cc683c26bdcb8d094a8a", "sha256": "996c96439fa64c0e19a918816d84a40afae3b7f676c6e67704a198bd237e5cd0" }, "downloads": -1, "filename": "django-mail-queue-2.1.2.tar.gz", "has_sig": false, "md5_digest": "0994d9a78655cc683c26bdcb8d094a8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8417, "upload_time": "2014-03-19T01:01:21", "url": "https://files.pythonhosted.org/packages/5f/0e/2fd3356962fa4acae72bb73316a824e6c2468e53494e1f4265dc836ff09b/django-mail-queue-2.1.2.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "32dd24733a3fd56782d6113b6e4442e6", "sha256": "1b25715db9b317d45f661aa7fc01f2ce990a51d0d171f5dfad852959339c8a52" }, "downloads": -1, "filename": "django_mail_queue-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "32dd24733a3fd56782d6113b6e4442e6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16180, "upload_time": "2014-10-28T19:53:03", "url": "https://files.pythonhosted.org/packages/f4/92/40d2555ac344d504995d8f2c3fb5aa71677f933c585d8187619f7088fc4f/django_mail_queue-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ef172eb3e265427f977bbadc558a7a3", "sha256": "50496260a26fd9615bfe56293a9e512b48e5bd5c3817a760d69a9b20512487d3" }, "downloads": -1, "filename": "django-mail-queue-2.2.0.tar.gz", "has_sig": false, "md5_digest": "1ef172eb3e265427f977bbadc558a7a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9256, "upload_time": "2014-10-28T19:53:01", "url": "https://files.pythonhosted.org/packages/5b/0c/d502cc024c212e79901cb9527e5736a12b8387fea6b9af45fcdc103b7cb4/django-mail-queue-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "85c70a2f4efb56f3424ed778a8ab98fe", "sha256": "5bb9a49092e9cb33f1f405b57f4ccd0cb98f23551dcf79659600e865e4a61e77" }, "downloads": -1, "filename": "django_mail_queue-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "85c70a2f4efb56f3424ed778a8ab98fe", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16262, "upload_time": "2015-04-26T19:06:12", "url": "https://files.pythonhosted.org/packages/22/7f/1055185337ca37aeb07bc4295ec4767cff1c9e8004786b0d40cb80949b9d/django_mail_queue-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a82567acf18e25990c4e282804335f38", "sha256": "13f5d35a9cd07b5f53fcb019350ab9d21d549a6840a5e591e8c0f24647b89bf8" }, "downloads": -1, "filename": "django-mail-queue-2.2.1.tar.gz", "has_sig": false, "md5_digest": "a82567acf18e25990c4e282804335f38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9317, "upload_time": "2015-04-26T19:06:08", "url": "https://files.pythonhosted.org/packages/4d/99/348fa049b8aa75cff15bc1a911c4eb0a9ec00db8632a9d98d8e23344e0ad/django-mail-queue-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "418458d1d8c00f41efad0f1a1a61f96f", "sha256": "3ea7f79049b09064ef9ccca05f09af38d6ec947dc61eed80ad6f52453c3b042f" }, "downloads": -1, "filename": "django_mail_queue-2.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "418458d1d8c00f41efad0f1a1a61f96f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19431, "upload_time": "2015-05-30T02:53:49", "url": "https://files.pythonhosted.org/packages/a7/04/b720b43788fd57ec0125bdbe6a3a359aa230b584821f79705ab21c8ac1d2/django_mail_queue-2.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a0ba9574abf1df3994d6b46a2689880", "sha256": "3f6f78b43729933f4d919fdebf9bf7104540e58261bc47d91c9f8b4e81706d9d" }, "downloads": -1, "filename": "django-mail-queue-2.2.2.tar.gz", "has_sig": false, "md5_digest": "8a0ba9574abf1df3994d6b46a2689880", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10522, "upload_time": "2015-05-30T02:53:45", "url": "https://files.pythonhosted.org/packages/85/cf/8765e75c701d132b748ba6443176efb690b470b2cae8c35dc3c9efa33082/django-mail-queue-2.2.2.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "74391785d0bc6946c90cba5a7df018d9", "sha256": "6d049ba05d1fab0a526d3a90dd2538decc4c88388ab8d150d11377b2177782cc" }, "downloads": -1, "filename": "django_mail_queue-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "74391785d0bc6946c90cba5a7df018d9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15277, "upload_time": "2017-01-06T04:42:45", "url": "https://files.pythonhosted.org/packages/8e/6a/da2ff932068e3a242a6fb26d776486c0187ca098c5b8d6ec69ac20c0eaff/django_mail_queue-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2bcadca15afefff17934d75db3334ccb", "sha256": "ce519be7e117d0e948e47f859846f61f57cdd180379ef1c5a7901472777986c8" }, "downloads": -1, "filename": "django-mail-queue-3.0.0.tar.gz", "has_sig": false, "md5_digest": "2bcadca15afefff17934d75db3334ccb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9448, "upload_time": "2017-01-06T04:42:43", "url": "https://files.pythonhosted.org/packages/b3/f9/31473355378162cf60430c48d8f1ee6d3859db093b6070ec03a7744d6107/django-mail-queue-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "43f1f2a9e3356bb08f1fad75cd2abb20", "sha256": "a7e9e6252c290d1b24c1d975d3550d56ebb49b9cb6c5d20ad09e969906326f08" }, "downloads": -1, "filename": "django_mail_queue-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43f1f2a9e3356bb08f1fad75cd2abb20", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15197, "upload_time": "2017-03-15T02:16:26", "url": "https://files.pythonhosted.org/packages/0e/31/1cb3c3a6ab57e332177df33bc564cf2d78560eb11cc2d2d724c06147cf67/django_mail_queue-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f013eee8129043ad4d55481f68f6460", "sha256": "3e84ae78516bbde2a6ba3bbeb29ce266642eeac07a85dae67adab520bfd19ca0" }, "downloads": -1, "filename": "django-mail-queue-3.0.1.tar.gz", "has_sig": false, "md5_digest": "5f013eee8129043ad4d55481f68f6460", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9376, "upload_time": "2017-03-15T02:16:23", "url": "https://files.pythonhosted.org/packages/2e/93/9ab0435cdd5e43721df6ea2491bda630a918dbc88d723e8595d2c9b84f96/django-mail-queue-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "8708664912f770ba4a0179536bdc5b12", "sha256": "ab071e6babef2fa6213b639ecbe798c094435b5086c7592eefd5c75cde0da4ef" }, "downloads": -1, "filename": "django_mail_queue-3.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8708664912f770ba4a0179536bdc5b12", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15107, "upload_time": "2017-03-18T22:03:06", "url": "https://files.pythonhosted.org/packages/42/be/28bca001e314a7e1d8b09b71cc29e8948ec345f46374164a3fae006cb523/django_mail_queue-3.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b332bad94788bf8ff7d99cfefa6f2c9c", "sha256": "4114223c505345e93dec944627a5c1af2441d8125bac7efc40dce319a9a0ef67" }, "downloads": -1, "filename": "django-mail-queue-3.0.2.tar.gz", "has_sig": false, "md5_digest": "b332bad94788bf8ff7d99cfefa6f2c9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9307, "upload_time": "2017-03-18T22:03:04", "url": "https://files.pythonhosted.org/packages/a8/72/883d3d1f8466610a0d97c431d00135c473cc1a629c3ed31d9e8b1d0551b3/django-mail-queue-3.0.2.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "625fb7f1d914492fe21e4d0aa5a3dca3", "sha256": "9788a70a0abe53c3c0172ae5b60a497a82d0b2d8fd665938017f60bee05db605" }, "downloads": -1, "filename": "django_mail_queue-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "625fb7f1d914492fe21e4d0aa5a3dca3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15683, "upload_time": "2017-06-27T02:35:33", "url": "https://files.pythonhosted.org/packages/8c/c6/30f09ed51aac8da79e9710a8f0ae16f859b258a32f80986e662b7dd9b38f/django_mail_queue-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81d3e30898a0158f2192a234cf9c261b", "sha256": "9a35abee512ee128ee21b8ea13150ac601dff845a7283bf49b18bec322b825b0" }, "downloads": -1, "filename": "django-mail-queue-3.1.0.tar.gz", "has_sig": false, "md5_digest": "81d3e30898a0158f2192a234cf9c261b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9559, "upload_time": "2017-06-27T02:35:31", "url": "https://files.pythonhosted.org/packages/a3/07/3c2362dad27b5b8e5cb355f9f438476c94de71bccd9c4f09cfa8b6107d86/django-mail-queue-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "1f3c7c99fc002bcb400d79cc60c5bf25", "sha256": "724a2f333f050c6f25238f5341e8b473c20ed3fb6581b18e62f4dd8164594de9" }, "downloads": -1, "filename": "django_mail_queue-3.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f3c7c99fc002bcb400d79cc60c5bf25", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15772, "upload_time": "2017-09-13T02:24:30", "url": "https://files.pythonhosted.org/packages/15/7b/19e2e51e7f58a8ecd5b5194b21c5775d75c2e820c09a55f54e2af8a5f946/django_mail_queue-3.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ff330d1392eb5946c63fcc65e1b6717", "sha256": "2fc4924c7f98512b86254164d1fa9da1f2abab0cdb8681c897d58fe16396b15d" }, "downloads": -1, "filename": "django-mail-queue-3.1.1.tar.gz", "has_sig": false, "md5_digest": "1ff330d1392eb5946c63fcc65e1b6717", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9636, "upload_time": "2017-09-13T02:24:28", "url": "https://files.pythonhosted.org/packages/35/2b/fdb1dd6a7714cc8b461ff160b2b24f809d11daaff049993f0b6393164d62/django-mail-queue-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "2a71199a0c15451da9b830a83af35135", "sha256": "8a6bbe5a4109bf542021d7c206266e5b20972b7f10067e9e6cc5698c1d7117ec" }, "downloads": -1, "filename": "django_mail_queue-3.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a71199a0c15451da9b830a83af35135", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15783, "upload_time": "2017-10-18T02:02:19", "url": "https://files.pythonhosted.org/packages/e5/b3/022b45d48c3ed16634d131b574957ce42e912534f851928de848ba1555f8/django_mail_queue-3.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4234fc5ccb5b7a515eafd3244beafa51", "sha256": "d3f7ef23cf84144f5e7c7f7c85c5cb1c2bd1cec348b1d8f14082d4afd9b88833" }, "downloads": -1, "filename": "django-mail-queue-3.1.2.tar.gz", "has_sig": false, "md5_digest": "4234fc5ccb5b7a515eafd3244beafa51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9638, "upload_time": "2017-10-18T02:02:18", "url": "https://files.pythonhosted.org/packages/0b/44/79714086fa12c08f6d8e260ca6358fb4bc7601450c20817f9c7152900a8c/django-mail-queue-3.1.2.tar.gz" } ], "3.1.4": [ { "comment_text": "", "digests": { "md5": "d611e35e347cb74a63ca88f1e9d7289d", "sha256": "56f5e17c7768d33e39bf761966b8bb1b5d33c97c4658765d543bd6b081aed02a" }, "downloads": -1, "filename": "django_mail_queue-3.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d611e35e347cb74a63ca88f1e9d7289d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15826, "upload_time": "2017-12-09T02:29:38", "url": "https://files.pythonhosted.org/packages/45/2a/1ec096987d18c2b436f77d9a01fe1d99960b50666f2de9bcd614009d4d8a/django_mail_queue-3.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2214736a52a249aefa4489f0df7a1c3f", "sha256": "89d3aef7791c9aa20723f92b647ffba5a3e13b8db2e9db0910ce5a2221aec825" }, "downloads": -1, "filename": "django-mail-queue-3.1.4.tar.gz", "has_sig": false, "md5_digest": "2214736a52a249aefa4489f0df7a1c3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9691, "upload_time": "2017-12-09T02:29:35", "url": "https://files.pythonhosted.org/packages/d2/0a/4d405790414a24cda5cb35b546268e7b963d067087768e752ecad748b940/django-mail-queue-3.1.4.tar.gz" } ], "3.1.5": [ { "comment_text": "", "digests": { "md5": "80e4ccc7f26d88b206b582781025df7c", "sha256": "23c4bad3859d537e4c063e4d78f3a10e7760c037540452d645b36c700007faf8" }, "downloads": -1, "filename": "django_mail_queue-3.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80e4ccc7f26d88b206b582781025df7c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16039, "upload_time": "2018-10-14T16:10:36", "url": "https://files.pythonhosted.org/packages/82/3a/e3873f6fc3befc939bbf16b9e9280df3c11862c0a6aa0799649d5110d1dd/django_mail_queue-3.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfde9a8304c784ec4af0737e954fba68", "sha256": "ce784c1d010bfdd916c6c574d9349201819660b5e9218d67985212a5cbfc35d7" }, "downloads": -1, "filename": "django-mail-queue-3.1.5.tar.gz", "has_sig": false, "md5_digest": "dfde9a8304c784ec4af0737e954fba68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9949, "upload_time": "2018-10-14T16:10:34", "url": "https://files.pythonhosted.org/packages/89/08/99b31bc5629495643c790ec1e9ff8f40a722c5652c87b4905d6649b3fa31/django-mail-queue-3.1.5.tar.gz" } ], "3.1.6": [ { "comment_text": "", "digests": { "md5": "2e3b9061bfd326c0198a4df68f33e58f", "sha256": "ecb27496b4f41af16387c6c235caa328b57e8bff82558ca515a1e238b8c9c772" }, "downloads": -1, "filename": "django_mail_queue-3.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e3b9061bfd326c0198a4df68f33e58f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16031, "upload_time": "2018-12-08T03:02:21", "url": "https://files.pythonhosted.org/packages/9d/6f/29b62f0f52f609d819cbdb8dff530eaab22ebb2521998d32125088b74b1e/django_mail_queue-3.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5ec75cb2dc8e542c03200976a0af25a", "sha256": "21cd57a65298b385c55baa49d62b94cbac18bc0d718d1f47b711daba379a5201" }, "downloads": -1, "filename": "django-mail-queue-3.1.6.tar.gz", "has_sig": false, "md5_digest": "e5ec75cb2dc8e542c03200976a0af25a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9865, "upload_time": "2018-12-08T03:02:19", "url": "https://files.pythonhosted.org/packages/f3/03/6a2546f071fbd099082880fedcc16ea17f5ebc9c9d68faee987e45206c39/django-mail-queue-3.1.6.tar.gz" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "4e3878d8a03d90849078ba40518a102f", "sha256": "4ce3cd267c28b4e505f120ad3eb8e388b1824c20de32704af6a1c4440699cf8f" }, "downloads": -1, "filename": "django_mail_queue-3.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4e3878d8a03d90849078ba40518a102f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18039, "upload_time": "2019-09-17T02:20:56", "url": "https://files.pythonhosted.org/packages/86/c3/62825b7fce96f65918194aa4950919347d829796e40e5872de66e29dfb5f/django_mail_queue-3.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5fe5d90e1c9ef27e7622e2da31eb72a", "sha256": "9dd22895ebf375ea3c5cd64ab163607ff386de622203f38b74ce5af0b9e2baf6" }, "downloads": -1, "filename": "django-mail-queue-3.2.1.tar.gz", "has_sig": false, "md5_digest": "d5fe5d90e1c9ef27e7622e2da31eb72a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11425, "upload_time": "2019-09-17T02:20:58", "url": "https://files.pythonhosted.org/packages/14/08/47f918ab537cc9536c354324a600f38d87fbdf863c0213b8402fc1a480de/django-mail-queue-3.2.1.tar.gz" } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "ab7586cad05985cbb60ee9c419a331e2", "sha256": "f2a7e92088435e5f6c863d55b7d737347343e4f7e86c1be34314b2f69287bf9e" }, "downloads": -1, "filename": "django_mail_queue-3.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab7586cad05985cbb60ee9c419a331e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18041, "upload_time": "2019-09-17T02:32:19", "url": "https://files.pythonhosted.org/packages/a6/f3/90034fb4495963791b67717c5dc519eea8ce9939c336a52c300dafdc0f83/django_mail_queue-3.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8017ec5650312b699df582e679e28c3f", "sha256": "81dd478d65c6237e02008cefdba96a97fe5d946414087109f895940e5e3c3a00" }, "downloads": -1, "filename": "django-mail-queue-3.2.2.tar.gz", "has_sig": false, "md5_digest": "8017ec5650312b699df582e679e28c3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11436, "upload_time": "2019-09-17T02:32:22", "url": "https://files.pythonhosted.org/packages/db/70/10ca808d5b0d01d9a05e9a118ab4e4b320e6de9651fc98daa6f6dc3278d4/django-mail-queue-3.2.2.tar.gz" } ], "3.2.2.post1": [ { "comment_text": "", "digests": { "md5": "7ce5a18dfaabad36c3ad600a106cc624", "sha256": "187843432a29441f823b0b6064b572b1786b3e1c9725935ebbfcf59e2b08f7da" }, "downloads": -1, "filename": "django_mail_queue-3.2.2.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7ce5a18dfaabad36c3ad600a106cc624", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18320, "upload_time": "2019-09-17T03:17:01", "url": "https://files.pythonhosted.org/packages/32/3a/57f6f8e179bef2461fb3c29e291bf8fd398a7aecfd0437bbabeafb8e6794/django_mail_queue-3.2.2.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fe7c0fa161feb5bd308ac81b10e278d", "sha256": "92f7ecb99ddda1822155ec495673d3c25b9d1071d7a080850c119352ed616c8a" }, "downloads": -1, "filename": "django-mail-queue-3.2.2.post1.tar.gz", "has_sig": false, "md5_digest": "4fe7c0fa161feb5bd308ac81b10e278d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11766, "upload_time": "2019-09-17T03:17:04", "url": "https://files.pythonhosted.org/packages/aa/23/4b7de8baf6ce2c203ed9f84b0713fcc244ef037f33e248f2fed3000a8ce5/django-mail-queue-3.2.2.post1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7ce5a18dfaabad36c3ad600a106cc624", "sha256": "187843432a29441f823b0b6064b572b1786b3e1c9725935ebbfcf59e2b08f7da" }, "downloads": -1, "filename": "django_mail_queue-3.2.2.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7ce5a18dfaabad36c3ad600a106cc624", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18320, "upload_time": "2019-09-17T03:17:01", "url": "https://files.pythonhosted.org/packages/32/3a/57f6f8e179bef2461fb3c29e291bf8fd398a7aecfd0437bbabeafb8e6794/django_mail_queue-3.2.2.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fe7c0fa161feb5bd308ac81b10e278d", "sha256": "92f7ecb99ddda1822155ec495673d3c25b9d1071d7a080850c119352ed616c8a" }, "downloads": -1, "filename": "django-mail-queue-3.2.2.post1.tar.gz", "has_sig": false, "md5_digest": "4fe7c0fa161feb5bd308ac81b10e278d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11766, "upload_time": "2019-09-17T03:17:04", "url": "https://files.pythonhosted.org/packages/aa/23/4b7de8baf6ce2c203ed9f84b0713fcc244ef037f33e248f2fed3000a8ce5/django-mail-queue-3.2.2.post1.tar.gz" } ] }