Name | aiosmtplib JSON |
Version |
4.0.2
JSON |
| download |
home_page | None |
Summary | asyncio SMTP client |
upload_time | 2025-08-25 02:39:07 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT |
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/0f/e1/cc58e0be242f0b410707e001ed22c689435964fcaab42108887426e44fff/aiosmtplib-4.0.2.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.2",
"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": "f12fdb9414bbeacee48ab0c7421a0319b361b7c15b5c3feebcd38684f5d5f849",
"md5": "f2f142fa4257a94cd445064897fa5151",
"sha256": "72491f96e6de035c28d29870186782eccb2f651db9c5f8a32c9db689327f5742"
},
"downloads": -1,
"filename": "aiosmtplib-4.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f2f142fa4257a94cd445064897fa5151",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 27048,
"upload_time": "2025-08-25T02:39:06",
"upload_time_iso_8601": "2025-08-25T02:39:06.089025Z",
"url": "https://files.pythonhosted.org/packages/f1/2f/db9414bbeacee48ab0c7421a0319b361b7c15b5c3feebcd38684f5d5f849/aiosmtplib-4.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fe1cc58e0be242f0b410707e001ed22c689435964fcaab42108887426e44fff",
"md5": "72fca3f7afb11f146c7f8d3cf5277ac0",
"sha256": "f0b4933e7270a8be2b588761e5b12b7334c11890ee91987c2fb057e72f566da6"
},
"downloads": -1,
"filename": "aiosmtplib-4.0.2.tar.gz",
"has_sig": false,
"md5_digest": "72fca3f7afb11f146c7f8d3cf5277ac0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 61052,
"upload_time": "2025-08-25T02:39:07",
"upload_time_iso_8601": "2025-08-25T02:39:07.249249Z",
"url": "https://files.pythonhosted.org/packages/0f/e1/cc58e0be242f0b410707e001ed22c689435964fcaab42108887426e44fff/aiosmtplib-4.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-25 02:39:07",
"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"
}