All Projects → cole → Aiosmtplib

cole / Aiosmtplib

Licence: mit
asyncio smtplib implementation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Aiosmtplib

Halive
A fast http and https prober, to check which URLs are alive
Stars: ✭ 47 (-76.5%)
Mutual labels:  asyncio, asynchronous
Backoff
Python library providing function decorators for configurable backoff and retry
Stars: ✭ 1,670 (+735%)
Mutual labels:  asyncio, asynchronous
Beanie
Micro ODM for MongoDB
Stars: ✭ 56 (-72%)
Mutual labels:  asyncio, asynchronous
Yappi
Yet Another Python Profiler, but this time thread&coroutine&greenlet aware.
Stars: ✭ 595 (+197.5%)
Mutual labels:  asyncio, asynchronous
Purerpc
Asynchronous pure Python gRPC client and server implementation supporting asyncio, uvloop, curio and trio
Stars: ✭ 125 (-37.5%)
Mutual labels:  asyncio, asynchronous
Async Reduce
Reducer for similar simultaneously coroutines
Stars: ✭ 17 (-91.5%)
Mutual labels:  asyncio, asynchronous
Peony Twitter
An asynchronous Twitter API client for Python 3.5+
Stars: ✭ 62 (-69%)
Mutual labels:  asyncio, asynchronous
asynchronous
A D port of Python's asyncio library
Stars: ✭ 35 (-82.5%)
Mutual labels:  asynchronous, asyncio
Edgedb Python
EdgeDB Python Driver
Stars: ✭ 113 (-43.5%)
Mutual labels:  asyncio, asynchronous
Tornado Sqlalchemy
SQLAlchemy support for Tornado
Stars: ✭ 112 (-44%)
Mutual labels:  asyncio, asynchronous
Tornado Celery
Non-blocking Celery client for Tornado
Stars: ✭ 561 (+180.5%)
Mutual labels:  asyncio, asynchronous
Minotaur
A pythonic, asynchronous, inotify interface
Stars: ✭ 163 (-18.5%)
Mutual labels:  asyncio, asynchronous
Bocadillo
(UNMAINTAINED) Fast, scalable and real-time capable web APIs for everyone
Stars: ✭ 401 (+100.5%)
Mutual labels:  asyncio, asynchronous
Chili
Chili: HTTP Served Hot
Stars: ✭ 7 (-96.5%)
Mutual labels:  asyncio, asynchronous
Aiotutorial
code snippets for asyncio tutorial
Stars: ✭ 257 (+28.5%)
Mutual labels:  asyncio, asynchronous
Vibe Core
Repository for the next generation of vibe.d's core package.
Stars: ✭ 56 (-72%)
Mutual labels:  asyncio, asynchronous
asyncio-socks-server
A SOCKS proxy server implemented with the powerful python cooperative concurrency framework asyncio.
Stars: ✭ 154 (-23%)
Mutual labels:  asynchronous, asyncio
AsyncIO
.NET library for handling asynchronous file system operations
Stars: ✭ 20 (-90%)
Mutual labels:  asynchronous, asyncio
Aiormq
Pure python AMQP 0.9.1 asynchronous client library
Stars: ✭ 112 (-44%)
Mutual labels:  asyncio, asynchronous
Kubernetes asyncio
Python asynchronous client library for Kubernetes http://kubernetes.io/
Stars: ✭ 147 (-26.5%)
Mutual labels:  asyncio, asynchronous

aiosmtplib

|circleci| |codecov| |pypi-version| |pypi-python-versions| |pypi-status| |downloads| |pypi-license| |black|


aiosmtplib is an asynchronous SMTP client for use with asyncio.

For documentation, see Read The Docs_.

Quickstart

.. code-block:: python

import asyncio
from email.message import EmailMessage

import aiosmtplib

message = EmailMessage()
message["From"] = "[email protected]"
message["To"] = "[email protected]"
message["Subject"] = "Hello World!"
message.set_content("Sent via aiosmtplib")

loop = asyncio.get_event_loop()
loop.run_until_complete(aiosmtplib.send(message, hostname="127.0.0.1", port=25))

Requirements

Python 3.5.2+, compiled with SSL support, is required.

Bug reporting

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

.. |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-python-versions| image:: https://img.shields.io/pypi/pyversions/aiosmtplib.svg .. |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 .. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/ambv/black :alt: "Code style: black" .. |downloads| image:: https://pepy.tech/badge/aiosmtplib :target: https://pepy.tech/project/aiosmtplib :alt: "aiosmtplib on pypy.tech" .. _Read The Docs: https://aiosmtplib.readthedocs.io/en/stable/overview.html

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].