{ "info": { "author": "Dan Jacob", "author_email": "danjac354@gmail.com", "bugtrack_url": null, "classifiers": [ "Framework :: Pyramid", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Communications :: Email" ], "description": "``pyramid_mailer``\n==================\n\n.. image:: https://travis-ci.org/Pylons/pyramid_mailer.png?branch=master\n :target: https://travis-ci.org/Pylons/pyramid_mailer\n\n.. image:: https://readthedocs.org/projects/pyramid_mailer/badge/?version=latest\n :target: http://docs.pylonsproject.org/projects/pyramid_mailer/en/latest/\n :alt: Documentation Status\n\npyramid_mailer is a package for sending email from your Pyramid application.\nIt is compatible with Python 2.7, 3.3, 3.4, and 3.5, as well as PyPy.\n\nThis package includes:\n\n1. Wrapping the low-level Python ``email`` library with an easy-to-use\n API, which includes attachments and mulipart content.\n\n2. Send emails immediately or to add to a maildir queue.\n\n3. Managing email sends inside a transaction, to prevent emails being sent\n if your code raises an exception.\n\n4. Features to help with unit testing.\n\n``pyramid_mailer`` uses the ``repoze.sendmail`` library for managing email\nsending and transacton management, and borrows code (with permission) from\nZed Shaw's `lamson `_ for wrapping email\nmessages. See the ``LICENSE.txt`` file for more information.\n\nLinks\n-----\n\n- `documentation\n `_\n\n- `development version\n `_\n\n\nChangelog\n=========\n\n0.15.1 (2016-12-13)\n-------------------\n\n- Pull #83: Add the new ``.bind`` method to the ``DebugMailer`` and the\n ``DummyMailer``. Also ``pyramid_mailer.testing`` and\n ``pyramid_mailer.debug`` now add the ``request.mailer`` request attribute.\n\n0.15 (2016-12-06)\n-----------------\n\n- Pull #49: Support '7bit' and '8bit' transfer-encoding.\n\n- Pull #70: If ``username`` and ``password`` are both set to the empty string,\n ``Mailer.from_settings``, now interprets them as being set to ``None``.\n Previously, setting them to the empty string caused SMTP authentication\n to be force with empty username and password.\n\n- Pull #71: Add a ``content_id`` argument to the ``Attachment`` constructor\n which allows you to set the Content-ID header so you can reference it from\n an HTML body.\n\n- Pull #72: Change file extension to ``.eml`` for mails saved from\n ``DebugMailer``. ``.eml`` is the standard file format for storing\n plaintext MIME (rfc822) emails.\n\n- Pull #77: Drop Python 2.6 and 3.2 support.\n\n- Add Python 3.5 support.\n\n- Pull #78: Support per-request transaction managers if available via\n ``request.tm`` set by ``pyramid_tm``.\n\n0.14.1 (2015-05-21)\n-------------------\n\n- Enable compatibility testing with Pyramid all the way back to 1.2. It may\n work earlier but we aren't testing it any longer.\n\n- Fix a bug where the ``mailer.debug`` ini option was not properly being\n cast to an ``int``. This did not show up on Python 2 because string\n to int comparisons are valid there but it was a latent bug.\n See https://github.com/Pylons/pyramid_mailer/pull/68\n\n0.14 (2014-12-10)\n-----------------\n\n- Added support for Python3.4, PyPy3.\n\n- Pull #56: Ensure that ``DebugMailer`` emulates ``Mailer`` by generating\n a sender if none is passed.\n\n- Pull #52: Add configuration options for ``mail.sendmail_app`` and\n ``mail.sendmail_template`` to allow use with non-default sendmail\n configurations.\n\n- Pull #50: Add ``pyramid_mailer.debug`` shorthand: via one line in\n ``development.ini``, enables writing emails to a file instead of sending\n them.\n\n0.13 (2013-07-13)\n-----------------\n\n- Pull #45: Default transfer encoding for mail messages is now\n 'quoted-printable'.\n\n0.12 (2013-06-26)\n-----------------\n\n- Pull #35: aadded support for sendmail binary via repoze.sendmail >= 4.0b2.\n\n- Remove \"all_parts\" and \"attach_all_parts\" from MailResponse object (unused by\n pyramid_mailer).\n\n- The Attachment class no longer supports reading data from the a file based on\n the ``filename`` it is passed. Instead, use the filename argument only as\n something that should go in the Content-Disposition header, and pass a\n filelike object as ``data``.\n\n- Major code overhaul: nonascii attachment sending now actually works, most of\n the code stolen from Lamson was gutted and replaced.\n\n- Requires repoze.sendmail >= 4.1\n\n0.11 (2013-03-28)\n-----------------\n\n- Issue #29: Allow setting Content-Transfer-Encoding for body and html\n via Attachments.\n\n- Issue #32: Fix handling of messages with both HTML and plain text\n bodies that also have attachments.\n\n- Issue #24: ensure that ``pyramid_mailer.response.to_message`` returns\n text under Python 3.x.\n\n- Dropped support for Python 2.5.\n\n0.10 (2012-11-22)\n-----------------\n\n- Set default transfer encoding for attachments to ``base64`` and allow\n an optional ``transfer_encoding`` argument for attachments. This currently\n supports ``base64`` or ``quoted-printable``.\n\n- Properly handle ``Mailer.from_settings`` boolean options including ``tls``\n and ``ssl``.\n\n- Support ``setup.py dev`` (installs testing dependencies).\n\n- Use ``setup.py dev`` in tox.ini.\n\n0.9 (2012-05-03)\n----------------\n\n- Add a test for uncode encoding in multipart messages.\n\n- Depend on ``repoze.sendmail`` >= 3.2 (fixes unicode multipart message\n encoding).\n\n0.8 (2012-03-26)\n----------------\n\n- Work around a Python 3.2.0 bug in handling emails with empty headers. This\n allows cc-only and bcc-only emails to be handled properly on all platforms\n (no recipient= required anymore). See\n https://github.com/Pylons/pyramid_mailer/issues/14.\n\n0.7 (2012-03-26)\n----------------\n\n- Packaging release\n\n0.6 (2012-03-20)\n----------------\n\n- Python 2.5, 2.6, 2.7, 3.2, and pypy compatibility.\n\n- Remove explicit Jython support. It may work, but we no longer test it\n using automated testing.\n\n- Requires repoze.sendmail 3.0+.\n\n- More descriptive exception raised when attempting to send cc-only or\n bcc-only messages. See https://github.com/Pylons/pyramid_mailer/issues/14\n\n0.6 (2012-01-22)\n----------------\n\n- Use ',' as an email header field separator rather than ';' when multiple\n values are in the same header (as per RFC822).\n\n- Allow lists of recipient emails to be tuples or lists (previously it was\n just lists).\n\n- Don't include ``Bcc`` header in mail messages (breaks secrecy of BCC).\n See https://github.com/Pylons/pyramid_mailer/pull/10\n\n0.5.1 (2011-11-13)\n------------------\n\n- Fixed a bug where the mailer was only sending email to addresses in\n the \"TO\" field.\n\n0.5 (2011-10-24)\n----------------\n\n- Drop Lamson dependency by copying Lamson's MailResponse and dependent code\n into ``pyramid_mailer.response``.\n\n0.4.X\n-----\n\n- ``pyramid_mailer.includeme`` function added for\n ``config.include('pyramid_mailer')`` support\n\n- ``pyramid_mailer.testing`` module added for\n ``config.include('pyramid_mailer.testing')`` support.\n\n- ``pyramid_mailer.get_mailer`` API added (see docs).\n\n- ``pyramid_mailer.interfaces`` module readded (with marker IMailer interface\n for ZCA registration).\n\n- ``setup.cfg`` added with coverage parameters to allow for ``setup.py\n nosetests --with-coverage``.\n\n\n", "description_content_type": null, "docs_url": "https://pythonhosted.org/pyramid_mailer/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://docs.pylonsproject.org/projects/pyramid-mailer/en/latest/", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "pyramid_mailer", "package_url": "https://pypi.org/project/pyramid_mailer/", "platform": "any", "project_url": "https://pypi.org/project/pyramid_mailer/", "project_urls": { "Homepage": "http://docs.pylonsproject.org/projects/pyramid-mailer/en/latest/" }, "release_url": "https://pypi.org/project/pyramid_mailer/0.15.1/", "requires_dist": [ "pyramid", "repoze.sendmail (>=4.1)", "transaction", "Sphinx; extra == 'docs'", "docutils; extra == 'docs'", "pylons-sphinx-themes (>=0.3); extra == 'docs'", "repoze.sphinx.autointerface; extra == 'docs'", "WebTest; extra == 'testing'", "coverage; extra == 'testing'", "nose; extra == 'testing'" ], "requires_python": "", "summary": "Sendmail package for Pyramid", "version": "0.15.1" }, "last_serial": 2686606, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "f0387551e0587af9dc8911814b3f9d66", "sha256": "864651eba597cc19f10b2e9c8cfd11d4876dd5395de3862e3bc8754331c6ab2c" }, "downloads": -1, "filename": "pyramid_mailer-0.1.tar.gz", "has_sig": false, "md5_digest": "f0387551e0587af9dc8911814b3f9d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5697, "upload_time": "2011-02-04T20:11:45", "url": "https://files.pythonhosted.org/packages/3a/e4/00206fc9178cf355048f87382727642683971b05e978c440289909571bae/pyramid_mailer-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "72a2c905f2fe2284cc17e1b80798130e", "sha256": "26fafa978381b742185b090bdb83719c413ae2f0a6363ee112ac0fd27aa9733a" }, "downloads": -1, "filename": "pyramid_mailer-0.1.1.tar.gz", "has_sig": false, "md5_digest": "72a2c905f2fe2284cc17e1b80798130e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5786, "upload_time": "2011-02-04T20:19:20", "url": "https://files.pythonhosted.org/packages/fd/bf/b8124fb1cdc44e8d2bd07c96e781995068e44520fe2c8d25a30fc28b0b29/pyramid_mailer-0.1.1.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "47299e92984a22baece23454b2151da5", "sha256": "95234a01dd124fa276726ff5ba03332c1a5de5f664a88546353d272d81ae1661" }, "downloads": -1, "filename": "pyramid_mailer-0.10.tar.gz", "has_sig": false, "md5_digest": "47299e92984a22baece23454b2151da5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31658, "upload_time": "2012-11-23T03:34:15", "url": "https://files.pythonhosted.org/packages/6c/25/5c8913dc2e84921f6b1d2b081f6b910ea0696c28ac353cde0c3e56c68891/pyramid_mailer-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "2f7a1a79d471ca36a790e997be4ebc97", "sha256": "c9bc7ad7367a72b546fb156b87b4040c581fd061be8959c777c4ec8942414447" }, "downloads": -1, "filename": "pyramid_mailer-0.11.tar.gz", "has_sig": false, "md5_digest": "2f7a1a79d471ca36a790e997be4ebc97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34033, "upload_time": "2013-03-28T07:56:01", "url": "https://files.pythonhosted.org/packages/18/82/396603fcd4cbeeffba4b018cc529ae8927f3bac1bf5554c24879f6dcad61/pyramid_mailer-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "0b05dd844f5fc36647a653e2d2ef59f7", "sha256": "b15c61d9a99bdb0d0f8ee4655376640ad7e827909454280117a9b8e7a93083a0" }, "downloads": -1, "filename": "pyramid_mailer-0.12.tar.gz", "has_sig": false, "md5_digest": "0b05dd844f5fc36647a653e2d2ef59f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36943, "upload_time": "2013-06-27T00:36:10", "url": "https://files.pythonhosted.org/packages/de/a4/f2dc3607b0826ce33849a7fc890bf5a51160755d05a0dbb08f477b167f6e/pyramid_mailer-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "43800c7c894097a23140da58e3638c93", "sha256": "4debfad05ee65a05ba6f43e2af913e6e30db75ba42254e4aa0291500c4caa1fc" }, "downloads": -1, "filename": "pyramid_mailer-0.13.tar.gz", "has_sig": false, "md5_digest": "43800c7c894097a23140da58e3638c93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36993, "upload_time": "2013-07-14T05:27:50", "url": "https://files.pythonhosted.org/packages/98/90/77a7c8a9e8f0699aeadb8d2fd77f9b1f3597655c598acffa5edd7787058f/pyramid_mailer-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "27c9dc56d7725987ecb4981f88c76481", "sha256": "8ba008f9985e81f1aa3507a18038463a647a22c9a5bd5bc6b19e898eb5375b64" }, "downloads": -1, "filename": "pyramid_mailer-0.14.tar.gz", "has_sig": false, "md5_digest": "27c9dc56d7725987ecb4981f88c76481", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38997, "upload_time": "2014-12-10T19:42:56", "url": "https://files.pythonhosted.org/packages/52/b0/906fdabdb9b0f626d47637c2675e0eb2c06258c31aabcb5fb382467c065c/pyramid_mailer-0.14.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "b57670d12d7465b87e0a477b54a96b36", "sha256": "763ca71c2ffcce6f0e955ba990f079fb86874e8cb35abdb0905294fa7486ec56" }, "downloads": -1, "filename": "pyramid_mailer-0.14.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b57670d12d7465b87e0a477b54a96b36", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17273, "upload_time": "2015-05-21T23:31:17", "url": "https://files.pythonhosted.org/packages/38/6c/069d21adc3179e083d9ee2ea8df60c9c686a4def1192b75836c03561f1ec/pyramid_mailer-0.14.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a589801afdc4a3d64337e4cbd2fc7cdb", "sha256": "ca8cc82ce94ce8f4c92d349e711d126eac02fd3553b78b0673b120acc3c9e93f" }, "downloads": -1, "filename": "pyramid_mailer-0.14.1.tar.gz", "has_sig": true, "md5_digest": "a589801afdc4a3d64337e4cbd2fc7cdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42522, "upload_time": "2015-05-21T23:31:21", "url": "https://files.pythonhosted.org/packages/43/02/a32823750dbdee4280090843d5788cc550ab6f24f23fcabbeb7f912bf5fe/pyramid_mailer-0.14.1.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "3eb2b064b10306c27997f582289462e9", "sha256": "2679f0539b2971a46378360b399a542d1acbf116d31c42d8c65be968c556d274" }, "downloads": -1, "filename": "pyramid_mailer-0.15-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3eb2b064b10306c27997f582289462e9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18622, "upload_time": "2016-12-07T05:24:13", "url": "https://files.pythonhosted.org/packages/d0/08/98b10c0194a20f5d769f35d1069c5ddbef0fc67d39ee1a05ea33fd044e9f/pyramid_mailer-0.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56baa2ddaeab9945a2bce64947687cb8", "sha256": "710f3d25a99c86c39033f75747419bfba78fc894696b901c13d5d8c26b85ded7" }, "downloads": -1, "filename": "pyramid_mailer-0.15.tar.gz", "has_sig": true, "md5_digest": "56baa2ddaeab9945a2bce64947687cb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46003, "upload_time": "2016-12-07T05:24:15", "url": "https://files.pythonhosted.org/packages/c7/48/4f4a1328774ae7b5792ef722f7a2681c2b74ab02b625e0a826e41cdeaaea/pyramid_mailer-0.15.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "ca684fabc4d5e89ab29d2d2fde7f0910", "sha256": "28d4a7829ebc19dd40e712d8cb1998cec03c296ba675b2c112a503539738bdc1" }, "downloads": -1, "filename": "pyramid_mailer-0.15.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ca684fabc4d5e89ab29d2d2fde7f0910", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19041, "upload_time": "2016-12-13T20:48:50", "url": "https://files.pythonhosted.org/packages/ea/c3/0ce593179a8da8e1ab7fe178b0ae096a046246bd44a5787f72940d6dd5b2/pyramid_mailer-0.15.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "284d294f62b69f974335627e85ca7ba5", "sha256": "ec0aff54d9179b2aa2922ff82c2016a4dc8d1da5dc3408d6594f0e2096446f9b" }, "downloads": -1, "filename": "pyramid_mailer-0.15.1.tar.gz", "has_sig": true, "md5_digest": "284d294f62b69f974335627e85ca7ba5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46836, "upload_time": "2016-12-13T20:49:52", "url": "https://files.pythonhosted.org/packages/a0/f2/6febf5459dff4d7e653314d575469ad2e11b9d2af2c3606360e1c67202f2/pyramid_mailer-0.15.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "f2d6137c6599d5487e42f33fb9291a14", "sha256": "02936255451dd9ef3e8d7012adddcd4cc3e16246b7a550febb957a8d499be370" }, "downloads": -1, "filename": "pyramid_mailer-0.2.tar.gz", "has_sig": false, "md5_digest": "f2d6137c6599d5487e42f33fb9291a14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5893, "upload_time": "2011-02-11T23:39:55", "url": "https://files.pythonhosted.org/packages/27/9e/635a48bdd7cb2c91da5baa4869744c7fc2963cb14a1ed0410204126884fe/pyramid_mailer-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "89a49b7bee5c01c123dfcba5644b19c5", "sha256": "59ea400566ac810a228c5caf946b752b2fbf0531c29cc04bc8731f84118fdd18" }, "downloads": -1, "filename": "pyramid_mailer-0.2.1.tar.gz", "has_sig": false, "md5_digest": "89a49b7bee5c01c123dfcba5644b19c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5860, "upload_time": "2011-02-12T14:22:06", "url": "https://files.pythonhosted.org/packages/9d/c7/5aba993019bcae8f567b229be9c0e3a20c237c6aafc260ba879e3b89b51e/pyramid_mailer-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "b93904a4869e25c984d6198a7ab232b0", "sha256": "926efb1a18c7a42fcbd244123edb96ea45622bda0b0ea067b4e665228be76957" }, "downloads": -1, "filename": "pyramid_mailer-0.2.2.tar.gz", "has_sig": false, "md5_digest": "b93904a4869e25c984d6198a7ab232b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6053, "upload_time": "2011-02-25T12:13:50", "url": "https://files.pythonhosted.org/packages/37/44/7554c33808a257e2370bddb56344c21e0b5829fa050e824bd2a889132a1a/pyramid_mailer-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "87eff225b024721c38572ad2e70665bc", "sha256": "34f9ab2d201471db9ba5a5475584aacf5d293312c0b7719a1cb2a8e8de5cd589" }, "downloads": -1, "filename": "pyramid_mailer-0.2.3.tar.gz", "has_sig": false, "md5_digest": "87eff225b024721c38572ad2e70665bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6064, "upload_time": "2011-02-25T14:59:31", "url": "https://files.pythonhosted.org/packages/53/4b/f30da1d23cf0db7213aad40b50272c03333f64918182264152cbe88bcd71/pyramid_mailer-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "9fab131b6550d58dcae6a037ea877212", "sha256": "f64b6ac209ee5ea36b6b513fc871dc412c6e2034ad991fabed43596ee48dd263" }, "downloads": -1, "filename": "pyramid_mailer-0.2.4.tar.gz", "has_sig": false, "md5_digest": "9fab131b6550d58dcae6a037ea877212", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6090, "upload_time": "2011-02-25T15:08:37", "url": "https://files.pythonhosted.org/packages/ab/56/b075033bbf760c1f336a75b75debffda2a0db8b3ca3372469a979a22b378/pyramid_mailer-0.2.4.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "23998f6b1db3d124005ccbf3443e323a", "sha256": "9f451c456d7e178cf714e9eee2e0e4633440153f5c052d2bac3a52f24c3e996d" }, "downloads": -1, "filename": "pyramid_mailer-0.3.tar.gz", "has_sig": false, "md5_digest": "23998f6b1db3d124005ccbf3443e323a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6420, "upload_time": "2011-02-25T20:13:43", "url": "https://files.pythonhosted.org/packages/cd/82/0aa85e07396644f2f5d0a98a43dc5525f58ae130571e213712bb336318e6/pyramid_mailer-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "e3284de73dd6f9d2e4c9ff6c837010c2", "sha256": "d6928ed7fa4e59a11a2c137ac0d7b2c107ff96b9657c726c50913abd8f8780f0" }, "downloads": -1, "filename": "pyramid_mailer-0.4.tar.gz", "has_sig": false, "md5_digest": "e3284de73dd6f9d2e4c9ff6c837010c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7228, "upload_time": "2011-03-07T01:51:51", "url": "https://files.pythonhosted.org/packages/73/72/1d0c05448ba171fd0c53ee373dd7843f4e5e62da230089011b42f9742aec/pyramid_mailer-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "030bd04ca17561e5be4508fb57a9a887", "sha256": "70f64cc6f96ba355321818f0a3de61abbb9c21bdc5a9ace396e9ac2c62caae6d" }, "downloads": -1, "filename": "pyramid_mailer-0.4.1.tar.gz", "has_sig": false, "md5_digest": "030bd04ca17561e5be4508fb57a9a887", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7328, "upload_time": "2011-03-08T19:05:02", "url": "https://files.pythonhosted.org/packages/5a/b4/67972ec1d4128c288977ae7b5950d926e87f9f1cea9d6cf3ecb0e4ebc061/pyramid_mailer-0.4.1.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "115ed5a721e9f881e59529b901568aa4", "sha256": "0ce48183c371b5885d7e8df79109ddab0e515fe15ab84d1e1769bc33b2ad648f" }, "downloads": -1, "filename": "pyramid_mailer-0.5.tar.gz", "has_sig": false, "md5_digest": "115ed5a721e9f881e59529b901568aa4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29832, "upload_time": "2011-10-25T02:43:00", "url": "https://files.pythonhosted.org/packages/e7/bb/85e07852df4488e2adf6b3df34cbe3973c47976757e2ee78015eaeec9ff8/pyramid_mailer-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "3c0130245344b3f0381802c13e006ef3", "sha256": "b9937abfc514ff2471d905cdb48d87d2b2b1cfa65f24cbed07671e0772c8806c" }, "downloads": -1, "filename": "pyramid_mailer-0.5.1.tar.gz", "has_sig": false, "md5_digest": "3c0130245344b3f0381802c13e006ef3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29680, "upload_time": "2011-11-13T21:48:14", "url": "https://files.pythonhosted.org/packages/dd/37/a6c52536966dc83aef878d2c392086cea35e4ef19e11ae148c24f8b7e984/pyramid_mailer-0.5.1.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "5951fa5b874af17accd33698a9d0a994", "sha256": "422c791751576840959101eb211dfe80b3bd0f20460e10fcdfa9a491f322eca8" }, "downloads": -1, "filename": "pyramid_mailer-0.6.tar.gz", "has_sig": false, "md5_digest": "5951fa5b874af17accd33698a9d0a994", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31009, "upload_time": "2012-01-22T17:22:05", "url": "https://files.pythonhosted.org/packages/09/87/5ef041a78ac711eb758a71f9543fd0dd8984946f01c30c0c15c2964922ef/pyramid_mailer-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "0627c27800593c7390896d1ce3ad5cba", "sha256": "d6bf44df9746081e168ba0cd920bca8436004ef15f3b5799b1371a22ac029234" }, "downloads": -1, "filename": "pyramid_mailer-0.7.tar.gz", "has_sig": false, "md5_digest": "0627c27800593c7390896d1ce3ad5cba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30800, "upload_time": "2012-03-20T07:56:17", "url": "https://files.pythonhosted.org/packages/46/d0/0b2e02d89e8e6762368b0655a057f78219c16b542b058fb057f6f045661c/pyramid_mailer-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "17f27988ec65d62f7d08484d59c562a5", "sha256": "3817fc3de16c60c801fc3d400c89874e978addba3991d057605fa64fc5bd2920" }, "downloads": -1, "filename": "pyramid_mailer-0.8.tar.gz", "has_sig": false, "md5_digest": "17f27988ec65d62f7d08484d59c562a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30931, "upload_time": "2012-03-26T22:18:29", "url": "https://files.pythonhosted.org/packages/1c/00/1d9fb9f205433efe8b2ed3b8a49bd44133c8b5672dd70d501966cc7106e8/pyramid_mailer-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "b7fde403003e3529cd8c21607d90b631", "sha256": "05d2b1a48684acf8dc894888b2788a248e235784f70b90c38a1955aad0f5ec82" }, "downloads": -1, "filename": "pyramid_mailer-0.9.tar.gz", "has_sig": false, "md5_digest": "b7fde403003e3529cd8c21607d90b631", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30165, "upload_time": "2012-05-04T00:56:31", "url": "https://files.pythonhosted.org/packages/b6/1c/a83a92b059e551de9b83c077b908ec47a3ac307701b07a13d8da116b6755/pyramid_mailer-0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ca684fabc4d5e89ab29d2d2fde7f0910", "sha256": "28d4a7829ebc19dd40e712d8cb1998cec03c296ba675b2c112a503539738bdc1" }, "downloads": -1, "filename": "pyramid_mailer-0.15.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ca684fabc4d5e89ab29d2d2fde7f0910", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19041, "upload_time": "2016-12-13T20:48:50", "url": "https://files.pythonhosted.org/packages/ea/c3/0ce593179a8da8e1ab7fe178b0ae096a046246bd44a5787f72940d6dd5b2/pyramid_mailer-0.15.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "284d294f62b69f974335627e85ca7ba5", "sha256": "ec0aff54d9179b2aa2922ff82c2016a4dc8d1da5dc3408d6594f0e2096446f9b" }, "downloads": -1, "filename": "pyramid_mailer-0.15.1.tar.gz", "has_sig": true, "md5_digest": "284d294f62b69f974335627e85ca7ba5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46836, "upload_time": "2016-12-13T20:49:52", "url": "https://files.pythonhosted.org/packages/a0/f2/6febf5459dff4d7e653314d575469ad2e11b9d2af2c3606360e1c67202f2/pyramid_mailer-0.15.1.tar.gz" } ] }