Metadata-Version: 1.1
Name: temp-mail
Version: 0.1
Summary: Wrapper for online service which provides temporary email address: https://temp-mail.ru/
Home-page: https://github.com/saippuakauppias/temp-mail
Author: Denis Veselov
Author-email: progr.mail@gmail.com
License: MIT
Description: temp-mail
        =========
        
        Python API Wrapper for `temp-mail.ru <http://temp-mail.ru/>`_ service. This service provide temporary email address.
        
        Requirements
        ------------
        
        `requests <https://crate.io/packages/requests/>`_- required.
        
        `simplejson <https://crate.io/packages/simplejson/>`_ - not required, but useful for a serious speed boost in JSON decode.
        
        Installation
        ------------
        
        Installing is simple with pip::
        
            $ pip install temp-mail
        
        Usage
        -----
        
        Get all emails from given email login and domain::
        
            from tempmail import TempMail
        
            tm = TempMail(login='denis', domain='@gnail.pw')
            print tm.get_mailbox()  # list of emails in denis@gnail.pw
        
        Generate email address and get emails from it::
        
            from tempmail import TempMail
        
            tm = TempMail()
            email = tm.get_email_address()  # v5gwnrnk7f@gnail.pw
            print tm.get_mailbox(email)  # list of emails
        
        Changes
        =======
        
        0.1 (2013-08-18)
        ----------------
        
        Initial release
        
Keywords: temporary mail email address wrapper api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
