Metadata-Version: 2.1
Name: aioyagmail
Version: 0.0.2
Summary: Yet Another GMAIL client, using AsyncIO
Home-page: https://github.com/kootenpv/aioyagmail
Author: Pascal van Kooten
Author-email: kootenpv@gmail.com
License: MIT
Description: aioyagmail - Yet Another GMAIL/SMTP client, using AsyncIO
        =========================================
        `aioyagmail` is a GMAIL/SMTP client that aims to
        make it as simple as possible to send emails.
        
        Sending an Email is as simple:
        
        .. code-block:: python
        
            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")
        
            loop.run_until_complete(send_single())
        
        For further documentation please go to https://github.com/kootenpv/aioyagmail or https://github.com/kootenpv/yagmail
        
Keywords: email mime automatic html attachment async asyncio
Platform: any
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Customer Service
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Communications :: Email :: Email Clients (MUA)
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Provides-Extra: all
