{ "info": { "author": "Bradley Whittington", "author_email": "radbrad182@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Framework :: Django :: 1.4", "Framework :: Django :: 1.5", "Framework :: Django :: 1.6", "Framework :: Django :: 1.7", "Framework :: Django :: 1.8", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==============\nDjango-Mailgun\n==============\nA Django email backend for use with Mailgun\n\nOverview\n=================\nDjango-Mailgun is a drop-in mail backend for Django_.\n\nGetting going\n=============\n\nInstall django-mailgun::\n\n pip install django-mailgun\n\nAdd the following to your ``settings.py``::\n\n EMAIL_BACKEND = 'django_mailgun.MailgunBackend'\n MAILGUN_ACCESS_KEY = 'ACCESS-KEY'\n MAILGUN_SERVER_NAME = 'SERVER-NAME'\n\nReplace ``ACCESS-KEY`` with the \"API-KEY\" value from your Mailgun account details and\n``SERVER-NAME`` with the last part of your \"API Base URL\"\n(eg. https://api.mailgun.net/v3/****), also found in your Mailgun\naccount details.\n\nNow, when you use ``django.core.mail.send_mail``, Mailgun will send the messages.\n\n.. _Builtin Email Error Reporting: http://docs.djangoproject.com/en/1.2/howto/error-reporting/\n.. _Django: http://djangoproject.com\n.. _Mailgun: http://mailgun.net\n\nExtra features\n=================\n\nPassing user-specific data\n--------------------------\n\nMailgun also includes the ability to send emails to a group of recipients via a single\nAPI call (https://documentation.mailgun.com/user_manual.html#batch-sending). To make use of this,\nyou need to pass Recipient Variables along with your API call. To do so with Django-Mailgun,\nadd a valid JSON string to the ``extra_headers`` attribute of ``EmailMessage`` and Django-Mailgun will\nremove the string from the headers and send it appropriately. For example::\n\n email = EmailMessage('Hi!', 'Cool message for %recipient.first_name%', 'admin@example.com', [joe@example.com, jane@example.com])\n email.extra_headers['recipient_variables'] = '{\"joe@example.com\":{\"first_name\":\"Joe\"}, \"jane@example.com\":{\"first_name\":\"Jane\"}}'\n email.send()\n\nWhen Jane receives her email, its body should read 'Cool message for Jane', and Joe will see\n'Cool message for Joe'.\n\nAnalytics and other tracking features\n-------------------------------------\n\nMailgun provides the ability to track certain events that concern your emails. The\nAPI exposes these options (see https://documentation.mailgun.com/api-sending.html#sending). These\noptions can also be passed to Mailgun's SMTP server (see \"Passing Sending Options\" under\nhttps://documentation.mailgun.com/user_manual.html#sending-via-smtp). If you add\nany of the SMTP options to the ``extra_headers`` attribute of ``EmailMessage``, Django-Mailgun\nwill map those values over to the appropriate API parameter. For example::\n\n email = EmailMessage('Hi!', 'Cool message for Joe', 'admin@example.com', [joe@example.com])\n email.extra_headers['X-Mailgun-Tag'] = ['Tag 1', 'Tag 2']\n email.send()\n\nWhen the email is sent, it will be tagged with 'Tag 1' and 'Tag 2'. You can provide a string for\nany value, or a list or tuple that contains strings for options that can take multiple values.\n\nAttaching data to messages\n--------------------------\n\nWhen sending, you can attach data to your messages by passing custom data to X-Mailgun-Variables header\n(see https://documentation.mailgun.com/user_manual.html#attaching-data-to-messages).\nData should be formatted as JSON, and it will be included in any webhook event releated to the email\ncontaining the custom data. For example::\n\n email = EmailMessage('Hi!', 'Cool message for Joe', 'admin@example.com', [joe@example.com])\n email.extra_headers['X-Mailgun-Variables'] = {'my-id': 'email_id', 'my-variable':'variable'}\n email.send()\n\nLater, you can read this data in your Mailgun webhook handler. For example::\n\n def mailgun_webhook(request):\n email_id = request.data.get('my-id')\n my_variable = request.data.get('my-variable')\n\n # Do something with your variables\n\n return Response(status=status.HTTP_200_OK)\n\n*NOTE*: Django-Mailgun does **NOT**\nvalidate your data for compliance with Mailgun's API; it merely maps over whatever values you provide. For example,\nMailgun's API states that no more than 3 tags are allowed per email, and each tag must be no greater than\n128 characters (https://documentation.mailgun.com/user_manual.html#tagging). If you provide 4 tags,\nor a tag longer than 128 characters, Django-Mailgun will attempt to send such (potentially) invalid\ndata. You must ensure what you send is appropriate.\n\nDjango Email Backend Reference\n================================\n\n* http://docs.djangoproject.com/en/dev/topics/email/#e-mail-backends", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/bradwhittington/django-mailgun/", "keywords": null, "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "django-mailgun", "package_url": "https://pypi.org/project/django-mailgun/", "platform": "any", "project_url": "https://pypi.org/project/django-mailgun/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/bradwhittington/django-mailgun/" }, "release_url": "https://pypi.org/project/django-mailgun/0.9.1/", "requires_dist": null, "requires_python": null, "summary": "A Django email backend for Mailgun", "version": "0.9.1" }, "last_serial": 2096500, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "ef7993c2c473bd2fe043fabef30c2d45", "sha256": "ea3ee68f5890ad015d0d48a37b54e8bc37d1c95902ce331e1a8c692cdee46aa1" }, "downloads": -1, "filename": "django-mailgun-0.1.1.tar.gz", "has_sig": false, "md5_digest": "ef7993c2c473bd2fe043fabef30c2d45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3631, "upload_time": "2011-03-16T13:07:44", "url": "https://files.pythonhosted.org/packages/04/9d/c64821ca92e9f9a8e34abd739029ac6fd443f3805a6131b3c95311bc1bd1/django-mailgun-0.1.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e436399c2db0aee2d0a8c8ba69388b57", "sha256": "4b2f503a013fec7db9bd94ce9d4d092a0e9ba39871bfdb85b8cda32f57ce7b72" }, "downloads": -1, "filename": "django-mailgun-0.2.tar.gz", "has_sig": false, "md5_digest": "e436399c2db0aee2d0a8c8ba69388b57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3301, "upload_time": "2012-01-04T10:10:36", "url": "https://files.pythonhosted.org/packages/e6/06/53d0ed209ad404995571242e267556a77b2458afbf70e5e76c54643374bd/django-mailgun-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "232fd3a53211e3c8abbd62709ef5988a", "sha256": "d4b8c9948e1521151732019ad41c3e351503b0e850e7cb40e86ec112c4836f0d" }, "downloads": -1, "filename": "django-mailgun-0.2.1.tar.gz", "has_sig": false, "md5_digest": "232fd3a53211e3c8abbd62709ef5988a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3317, "upload_time": "2012-06-25T10:04:22", "url": "https://files.pythonhosted.org/packages/21/6d/3b0cd0d9103c78cb5e6fb5d6872e29944b2543574fea6d3700c63c46e94c/django-mailgun-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "2053f03ba0064718e3160cccafb5bff8", "sha256": "915d03b5ad164ec3db5ecb12cbb9158c65ac48cb1e85265cafb8950cdc8b80a2" }, "downloads": -1, "filename": "django-mailgun-0.2.2.tar.gz", "has_sig": false, "md5_digest": "2053f03ba0064718e3160cccafb5bff8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3320, "upload_time": "2013-04-16T12:43:38", "url": "https://files.pythonhosted.org/packages/ce/99/180c4d69aefdd7a8b027a37253da70d0445bf00707abf562a977a2ed0d15/django-mailgun-0.2.2.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "f17e8458392ea1f08beaa14852dd7891", "sha256": "0421d3a2f54c8826795e6d1b62b2b2ba3486f528226ec1b9ce687d44409f9a16" }, "downloads": -1, "filename": "django_mailgun-0.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "f17e8458392ea1f08beaa14852dd7891", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4312, "upload_time": "2015-09-05T04:51:52", "url": "https://files.pythonhosted.org/packages/dd/13/97b6d9d6965a92fb771505c042b11b89c6a0f3c1d82b380505682faf2e27/django_mailgun-0.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc4cc2a9c1a092bd6e1ede48058468d2", "sha256": "36ccbc89ec9720c93c01752b09f19da5af153d4fa05f99fef175e0cca89eb72c" }, "downloads": -1, "filename": "django-mailgun-0.3.0.tar.gz", "has_sig": false, "md5_digest": "bc4cc2a9c1a092bd6e1ede48058468d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3617, "upload_time": "2015-09-05T04:51:49", "url": "https://files.pythonhosted.org/packages/2c/83/7fa3bd3e34f355dcce470a928c0d62dbe27a0cdc4e12538bba21332a0ec6/django-mailgun-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "7a8661dab2dcbfe51a006f27a3373041", "sha256": "cb98394bd05fbe0b1c92133f83ed90758bb7495c079e0214add8b872b66f37c4" }, "downloads": -1, "filename": "django_mailgun-0.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "7a8661dab2dcbfe51a006f27a3373041", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4312, "upload_time": "2015-09-08T02:01:36", "url": "https://files.pythonhosted.org/packages/d6/ad/17aacf1fa704976de36714316e4c5917d828ab9c1ef12591100784b15146/django_mailgun-0.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95a265dbd0838ea31c137c1edba5e4e7", "sha256": "fb392aabed456d481414c6ec422a8eb2dd3011e15a9632c2eec81231150006e8" }, "downloads": -1, "filename": "django-mailgun-0.4.0.tar.gz", "has_sig": false, "md5_digest": "95a265dbd0838ea31c137c1edba5e4e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3537, "upload_time": "2015-09-08T02:01:29", "url": "https://files.pythonhosted.org/packages/e8/7d/f67526c7f003034e5e7d99bf012205587d0484d850e0d2410f58c6a9141f/django-mailgun-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "27bc649c8842f260254aa8f968d0d8a1", "sha256": "8f2eeec34e1eb7052961e2fe4b4a1e5577e6a52c5ba80b46e643b9006fa6d01a" }, "downloads": -1, "filename": "django_mailgun-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27bc649c8842f260254aa8f968d0d8a1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4475, "upload_time": "2015-09-09T05:05:24", "url": "https://files.pythonhosted.org/packages/b6/5c/5502fcb07902677d8df8db1e75ef2ad80bbf3d1b5c3cdd28b4dc048e1881/django_mailgun-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a497f76c6f934a91a2a26c69a06dae2", "sha256": "ea0de15c1a212a14427f8cec80eabb2a66df6dc69edf886be07b88d0429c24d1" }, "downloads": -1, "filename": "django-mailgun-0.5.0.tar.gz", "has_sig": false, "md5_digest": "6a497f76c6f934a91a2a26c69a06dae2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3740, "upload_time": "2015-09-09T05:05:11", "url": "https://files.pythonhosted.org/packages/d6/0a/2cfed3683e9ad638070230daa2599039daea865f9aa5cf2caede9d7f3b56/django-mailgun-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "5b645f6c91b95005da18dc9c60a1ee97", "sha256": "57bdd5c0e97ac9a5ad82d50f394d600e068658f8171c0b2a46e8925f4947b7ca" }, "downloads": -1, "filename": "django_mailgun-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5b645f6c91b95005da18dc9c60a1ee97", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6511, "upload_time": "2015-09-15T02:08:48", "url": "https://files.pythonhosted.org/packages/c0/2e/37c92963bb7420e6bdee11764c8824f3bcf8a089746a4eba6e4716f44cc1/django_mailgun-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89d491fefa80ab1605c8325a36edd56d", "sha256": "f629499d49adeb4504e40071e63d93904e57c1977599e7a03a11b195c9aa6a66" }, "downloads": -1, "filename": "django-mailgun-0.6.0.tar.gz", "has_sig": false, "md5_digest": "89d491fefa80ab1605c8325a36edd56d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4169, "upload_time": "2015-09-15T02:08:45", "url": "https://files.pythonhosted.org/packages/2d/a2/8af89c30d7967df316226cd1bb4dc2abfdd7b119844266db8cb6657d9597/django-mailgun-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f9f840324bee50550cfe4278ad29b5e1", "sha256": "fa35e1be95e2233da6c90a33183e08093de3d891e08c61ebbf4a6a1f4ce332b0" }, "downloads": -1, "filename": "django_mailgun-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f9f840324bee50550cfe4278ad29b5e1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8277, "upload_time": "2015-09-22T04:32:32", "url": "https://files.pythonhosted.org/packages/dc/0c/e77c6e387f9874438e8d554833c3fb318d5fd9b5c8ad72f5197558d9303a/django_mailgun-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "728ef4b0a4b888c159ac25537663fe55", "sha256": "8374813974eec680a81cfc42bde008a3a29579e1e9b9ca2a4b2a040ca43916f8" }, "downloads": -1, "filename": "django-mailgun-0.7.0.tar.gz", "has_sig": false, "md5_digest": "728ef4b0a4b888c159ac25537663fe55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5435, "upload_time": "2015-09-22T04:31:46", "url": "https://files.pythonhosted.org/packages/13/e9/6fdd546cd34b9996f27de529f976c385cb1f4baee7bfb49ca339674c99cd/django-mailgun-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "232ac5054d274f02a3b0caffd5d6cf40", "sha256": "12e2acb4e7e9f87f238f5d523dd54afc0c810d0bac570bb89b06c6088b47b367" }, "downloads": -1, "filename": "django_mailgun-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "232ac5054d274f02a3b0caffd5d6cf40", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6983, "upload_time": "2015-09-24T00:18:12", "url": "https://files.pythonhosted.org/packages/e0/e8/6af54a7b7707b836ee70365ef74027591852e0dc101eb5af43e0bbe4ef90/django_mailgun-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "029b6ebeb08eb36f712a8ad7f27ad683", "sha256": "8c67b99c3134a594b29108242307cc6d643ded587d6fad26b402c26a962d8aad" }, "downloads": -1, "filename": "django-mailgun-0.7.1.tar.gz", "has_sig": false, "md5_digest": "029b6ebeb08eb36f712a8ad7f27ad683", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5432, "upload_time": "2015-09-24T00:17:08", "url": "https://files.pythonhosted.org/packages/bb/89/b15ef8a7e93e34eb2d9e73d350154f96546300baaef414e85889fe7e7447/django-mailgun-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "8371cb6f230ecf76f73d1d6bb2001e17", "sha256": "0983523f4290ac568a1d388475010c155b6d88beadb6f485a31cf7ad06edd2d4" }, "downloads": -1, "filename": "django_mailgun-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8371cb6f230ecf76f73d1d6bb2001e17", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 6998, "upload_time": "2015-09-25T02:13:31", "url": "https://files.pythonhosted.org/packages/a7/bc/98457236043dc7180ff587b1bfd5383e94495323f8015db0a8ec5e516589/django_mailgun-0.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "405a9bba1578b4f7c73eebfe5915b95e", "sha256": "d92582ab6a5794d75a725c66364346f6dc1272130b416bee4137365d4c67bbd6" }, "downloads": -1, "filename": "django-mailgun-0.7.2.tar.gz", "has_sig": false, "md5_digest": "405a9bba1578b4f7c73eebfe5915b95e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5459, "upload_time": "2015-09-25T02:12:32", "url": "https://files.pythonhosted.org/packages/1f/17/b0c8b1968dc1841f7a0cc4977b52b27c0f4c8aa00f4db3beb0e06e18a117/django-mailgun-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "7199fd7ee74cc9f541093a0648fcb96d", "sha256": "4d32901a97cd631ae2f8d1e79dc4851896e97d8741a0418cd0e923e32a3d047c" }, "downloads": -1, "filename": "django_mailgun-0.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7199fd7ee74cc9f541093a0648fcb96d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7090, "upload_time": "2015-10-09T19:43:00", "url": "https://files.pythonhosted.org/packages/4e/a0/3b7e37eb3fcef363398866ad83937dd2f923f32b164e8d0aa8f35f509493/django_mailgun-0.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e8befa67860d0a8d46dc3a328a1c2906", "sha256": "80ea67f470f79471115c7cced5e2c6285d7afa1bc40c72fa983ce9d7adac1abd" }, "downloads": -1, "filename": "django-mailgun-0.7.3.tar.gz", "has_sig": false, "md5_digest": "e8befa67860d0a8d46dc3a328a1c2906", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5550, "upload_time": "2015-10-09T19:42:56", "url": "https://files.pythonhosted.org/packages/c5/39/efbdf57ae72246fafb03e9c0be333f436af465d046cee8314e98824b9efc/django-mailgun-0.7.3.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "9fb7ae92cbeeaf7f25a8afae1247298f", "sha256": "7013d19b63a094abb7bc06aeb742d76bd0f4eed6bab0abe971c808ff5fd2e90b" }, "downloads": -1, "filename": "django_mailgun-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9fb7ae92cbeeaf7f25a8afae1247298f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7090, "upload_time": "2015-10-09T19:45:56", "url": "https://files.pythonhosted.org/packages/6e/49/65586225592821edcecf5b11be08b3bf2d071d21321088628d713e73d464/django_mailgun-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15004f0a89d37605d3429a9c2ea350ae", "sha256": "12162f8cee8ccec528415c568005e8bce1d90cd7574bd5f419dc54544e164154" }, "downloads": -1, "filename": "django-mailgun-0.8.0.tar.gz", "has_sig": false, "md5_digest": "15004f0a89d37605d3429a9c2ea350ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5541, "upload_time": "2015-10-09T19:45:52", "url": "https://files.pythonhosted.org/packages/93/ab/18fe6c013eb70ecf6e1fe120869990d5b4f36c8dafdabc97538560eb7d8d/django-mailgun-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "786c7b4bbc24fab02d5d2a7b8d3a6800", "sha256": "6068779fd58c5563b7696a42f4bd6ba19350cb9225dd20daa353ffa4c9e40aa3" }, "downloads": -1, "filename": "django_mailgun-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "786c7b4bbc24fab02d5d2a7b8d3a6800", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7980, "upload_time": "2016-05-03T05:48:00", "url": "https://files.pythonhosted.org/packages/f8/42/ff0b43914d45dd96328a2c393c7c0e0276492f9208d00355fad6c48fe43b/django_mailgun-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8edc82dda8e94a61f3e01198627e6e28", "sha256": "f57abc9ed6ad222d2213bd8c2c883c9eba1cfd156cd1b5d9e442076fa8ffb597" }, "downloads": -1, "filename": "django-mailgun-0.9.0.tar.gz", "has_sig": false, "md5_digest": "8edc82dda8e94a61f3e01198627e6e28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6089, "upload_time": "2016-05-03T05:47:54", "url": "https://files.pythonhosted.org/packages/eb/72/866e6b583991fc114b8ea24ad8386b8e0b1f64651a8fd8b1682231e6e06a/django-mailgun-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "26b169a925cd3514a85f31fc73fa1f8f", "sha256": "d795076d18c0aa66fbac37f8b428f036417a3ec7ecc2d6499c021d318d60bfff" }, "downloads": -1, "filename": "django-mailgun-0.9.1.tar.gz", "has_sig": false, "md5_digest": "26b169a925cd3514a85f31fc73fa1f8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6090, "upload_time": "2016-05-03T07:50:17", "url": "https://files.pythonhosted.org/packages/67/dd/7df4dc58c024542275a194ed54b50f897706ba37e8be158827df3e582e63/django-mailgun-0.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "26b169a925cd3514a85f31fc73fa1f8f", "sha256": "d795076d18c0aa66fbac37f8b428f036417a3ec7ecc2d6499c021d318d60bfff" }, "downloads": -1, "filename": "django-mailgun-0.9.1.tar.gz", "has_sig": false, "md5_digest": "26b169a925cd3514a85f31fc73fa1f8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6090, "upload_time": "2016-05-03T07:50:17", "url": "https://files.pythonhosted.org/packages/67/dd/7df4dc58c024542275a194ed54b50f897706ba37e8be158827df3e582e63/django-mailgun-0.9.1.tar.gz" } ] }