aiosmtplib


Nameaiosmtplib JSON
Version 4.0.0 PyPI version JSON
download
home_pageNone
Summaryasyncio SMTP client
upload_time2025-02-03 01:28:56
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT
keywords asyncio email smtp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            aiosmtplib
==========

|circleci| |precommit.ci| |codecov| |zero-deps| |pypi-version| |downloads| |pypi-license|

------------

aiosmtplib is an asynchronous SMTP client for use with asyncio.

For documentation, see `Read The Docs`_.

Quickstart
----------


..
  start quickstart

.. code-block:: python

    import asyncio
    from email.message import EmailMessage

    import aiosmtplib

    message = EmailMessage()
    message["From"] = "root@localhost"
    message["To"] = "somebody@example.com"
    message["Subject"] = "Hello World!"
    message.set_content("Sent via aiosmtplib")

    asyncio.run(aiosmtplib.send(message, hostname="127.0.0.1", port=25))

..
  end quickstart

Requirements
------------

..
  start requirements

Python 3.9+ is required.

..
  end requirements


Bug Reporting
-------------

..
  start bug-reporting

Bug reports (and feature requests) are welcome via `Github issues`_.

.. _Github issues: https://github.com/cole/aiosmtplib/issues

..
  end bug-reporting


.. |circleci| image:: https://circleci.com/gh/cole/aiosmtplib/tree/main.svg?style=shield
           :target: https://circleci.com/gh/cole/aiosmtplib/tree/main
           :alt: "aiosmtplib CircleCI build status"
.. |pypi-version| image:: https://img.shields.io/pypi/v/aiosmtplib.svg
                 :target: https://pypi.python.org/pypi/aiosmtplib
                 :alt: "aiosmtplib on the Python Package Index"
.. |pypi-status| image:: https://img.shields.io/pypi/status/aiosmtplib.svg
.. |pypi-license| image:: https://img.shields.io/pypi/l/aiosmtplib.svg
.. |codecov| image:: https://codecov.io/gh/cole/aiosmtplib/branch/main/graph/badge.svg
             :target: https://codecov.io/gh/cole/aiosmtplib
.. |downloads| image:: https://static.pepy.tech/badge/aiosmtplib/month
               :target: https://pepy.tech/project/aiosmtplib
               :alt: "aiosmtplib on pypy.tech"
.. |precommit.ci| image:: https://results.pre-commit.ci/badge/github/cole/aiosmtplib/main.svg
                  :target: https://results.pre-commit.ci/latest/github/cole/aiosmtplib/main
                  :alt: "pre-commit.ci status"
.. |zero-deps| image:: https://0dependencies.dev/0dependencies.svg
               :target: https://0dependencies.dev
               :alt: "0 dependencies"
.. _Read The Docs: https://aiosmtplib.readthedocs.io/en/stable/

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "aiosmtplib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "asyncio, email, smtp",
    "author": null,
    "author_email": "Cole Maclean <hi@colemaclean.dev>",
    "download_url": "https://files.pythonhosted.org/packages/7c/b3/8ed1f568661c46c19a486ade7d21c2e704d72d868aca41627da19813b1ce/aiosmtplib-4.0.0.tar.gz",
    "platform": null,
    "description": "aiosmtplib\n==========\n\n|circleci| |precommit.ci| |codecov| |zero-deps| |pypi-version| |downloads| |pypi-license|\n\n------------\n\naiosmtplib is an asynchronous SMTP client for use with asyncio.\n\nFor documentation, see `Read The Docs`_.\n\nQuickstart\n----------\n\n\n..\n  start quickstart\n\n.. code-block:: python\n\n    import asyncio\n    from email.message import EmailMessage\n\n    import aiosmtplib\n\n    message = EmailMessage()\n    message[\"From\"] = \"root@localhost\"\n    message[\"To\"] = \"somebody@example.com\"\n    message[\"Subject\"] = \"Hello World!\"\n    message.set_content(\"Sent via aiosmtplib\")\n\n    asyncio.run(aiosmtplib.send(message, hostname=\"127.0.0.1\", port=25))\n\n..\n  end quickstart\n\nRequirements\n------------\n\n..\n  start requirements\n\nPython 3.9+ is required.\n\n..\n  end requirements\n\n\nBug Reporting\n-------------\n\n..\n  start bug-reporting\n\nBug reports (and feature requests) are welcome via `Github issues`_.\n\n.. _Github issues: https://github.com/cole/aiosmtplib/issues\n\n..\n  end bug-reporting\n\n\n.. |circleci| image:: https://circleci.com/gh/cole/aiosmtplib/tree/main.svg?style=shield\n           :target: https://circleci.com/gh/cole/aiosmtplib/tree/main\n           :alt: \"aiosmtplib CircleCI build status\"\n.. |pypi-version| image:: https://img.shields.io/pypi/v/aiosmtplib.svg\n                 :target: https://pypi.python.org/pypi/aiosmtplib\n                 :alt: \"aiosmtplib on the Python Package Index\"\n.. |pypi-status| image:: https://img.shields.io/pypi/status/aiosmtplib.svg\n.. |pypi-license| image:: https://img.shields.io/pypi/l/aiosmtplib.svg\n.. |codecov| image:: https://codecov.io/gh/cole/aiosmtplib/branch/main/graph/badge.svg\n             :target: https://codecov.io/gh/cole/aiosmtplib\n.. |downloads| image:: https://static.pepy.tech/badge/aiosmtplib/month\n               :target: https://pepy.tech/project/aiosmtplib\n               :alt: \"aiosmtplib on pypy.tech\"\n.. |precommit.ci| image:: https://results.pre-commit.ci/badge/github/cole/aiosmtplib/main.svg\n                  :target: https://results.pre-commit.ci/latest/github/cole/aiosmtplib/main\n                  :alt: \"pre-commit.ci status\"\n.. |zero-deps| image:: https://0dependencies.dev/0dependencies.svg\n               :target: https://0dependencies.dev\n               :alt: \"0 dependencies\"\n.. _Read The Docs: https://aiosmtplib.readthedocs.io/en/stable/\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "asyncio SMTP client",
    "version": "4.0.0",
    "project_urls": {
        "Changelog": "https://github.com/cole/aiosmtplib/blob/main/CHANGELOG.rst",
        "Documentation": "https://aiosmtplib.readthedocs.io/en/stable/",
        "GitHub": "https://github.com/cole/aiosmtplib"
    },
    "split_keywords": [
        "asyncio",
        " email",
        " smtp"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aba390454e5882d95edd73b18424279a58f3a791aed20c303af4193aa63c36a9",
                "md5": "b3bf34f5777b8b08499227011d65c46f",
                "sha256": "33c72021cd9e9da495823952751e2dd927014a04a0eca711ee4af9812f2f04af"
            },
            "downloads": -1,
            "filename": "aiosmtplib-4.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b3bf34f5777b8b08499227011d65c46f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 26971,
            "upload_time": "2025-02-03T01:28:54",
            "upload_time_iso_8601": "2025-02-03T01:28:54.541489Z",
            "url": "https://files.pythonhosted.org/packages/ab/a3/90454e5882d95edd73b18424279a58f3a791aed20c303af4193aa63c36a9/aiosmtplib-4.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cb38ed1f568661c46c19a486ade7d21c2e704d72d868aca41627da19813b1ce",
                "md5": "030e706478aa9ece23e1167558a41a5a",
                "sha256": "9629a0d8786ab1e5f790ebbbf5cbe7886fedf949a3f52fd7b27a0360f6233422"
            },
            "downloads": -1,
            "filename": "aiosmtplib-4.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "030e706478aa9ece23e1167558a41a5a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 60330,
            "upload_time": "2025-02-03T01:28:56",
            "upload_time_iso_8601": "2025-02-03T01:28:56.878188Z",
            "url": "https://files.pythonhosted.org/packages/7c/b3/8ed1f568661c46c19a486ade7d21c2e704d72d868aca41627da19813b1ce/aiosmtplib-4.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-03 01:28:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cole",
    "github_project": "aiosmtplib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "lcname": "aiosmtplib"
}
        
Elapsed time: 6.20573s