Yet Another GMAIL client, using AsyncIO
Project description
aioyagmail -- Yet Another GMAIL/SMTP client, using AsyncIO
The goal here is to make it as simple and painless as possible to send emails using asyncio.
In the end, your code will look something like this:
import asyncio
from aioyagmail import AIOSMTP
loop = asyncio.get_event_loop()
async def send_single():
# walks you through oauth2 process if no file at this location
async with AIOSMTP(oauth2_file="~/oauth2_gmail.json") as yag:
await yag.send(to="someone@gmail.com", subject="hi")
async def send_multi():
async with AIOSMTP(oauth2_file="~/oauth2_gmail.json") as yag:
# Runs asynchronously!
await asyncio.gather(yag.send(subject="1"),
yag.send(subject="2"),
yag.send(subject="3"))
loop.run_until_complete(send_single())
loop.run_until_complete(send_multi())
Username and password
It is possible like in yagmail to use username and password, but this is not actively encouraged anymore.
See https://github.com/kootenpv/yagmail#username-and-password how to do it.
For more information
Have a look at yagmail. Any issue NOT related to async should be posted there (or found out about).
Word of caution
Watch out that gmail does not block you for spamming. Using async you could potentially be sending emails too rapidly.
Donate
If you like aioyagmail, feel free (no pun intended) to donate any amount you'd like :-)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aioyagmail-0.0.4.tar.gz.
File metadata
- Download URL: aioyagmail-0.0.4.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f360dcce75bc378ada2dbce77970486a97fc5e20bfda17ded95a95b92e7ac7c
|
|
| MD5 |
a5e48e623af4cea655af22bad2579bc6
|
|
| BLAKE2b-256 |
2383ce8539b03590d6b551958fc653879432361fcdc52a590b1769f53a04f7b9
|
File details
Details for the file aioyagmail-0.0.4-py2.py3-none-any.whl.
File metadata
- Download URL: aioyagmail-0.0.4-py2.py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
981eb7b9694a1ca85c5ea6aa2c19af4f1082b8b5ef4382142e751c3a30c11478
|
|
| MD5 |
5ee043f3ab638717070873d127a58b44
|
|
| BLAKE2b-256 |
2ffa1a67515ac17701275955801edefdd4c589626b7e8582c17a4d66abab906d
|