Metadata-Version: 1.1
Name: lastpass-python
Version: 0.1.0
Summary: LastPass Python API (unofficial)
Home-page: https://github.com/konomae/lastpass-python
Author: konomae
Author-email: konomae@users.noreply.github.com
License: MIT
Description: LastPass Python API
        ===================
        
        .. image:: https://travis-ci.org/konomae/lastpass-python.png?branch=master
          :target: https://travis-ci.org/konomae/lastpass-python
        
        .. image:: https://coveralls.io/repos/konomae/lastpass-python/badge.png?branch=master
          :target: https://coveralls.io/r/konomae/lastpass-python?branch=master
        
        :Original: `lastpass-ruby <https://github.com/detunized/lastpass-ruby>`_
        
        **This is unofficial LastPass API**
        
        Example
        -------
        
        .. code-block:: python
        
            # coding: utf-8
            import lastpass
        
            vault = lastpass.Vault.open_remote(username, password)
            for i in vault.accounts:
                print(i.id, i.username, i.password, i.url)
        
        
        License
        -------
        
        `The MIT License <http://opensource.org/licenses/mit-license.php>`_
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
