Metadata-Version: 1.1
Name: lastpass-python
Version: 0.2.0
Summary: Read only access to the online LastPass vault (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.svg?branch=master
          :target: https://travis-ci.org/konomae/lastpass-python
        
        .. image:: https://codecov.io/gh/konomae/lastpass-python/branch/master/graph/badge.svg
          :target: https://codecov.io/gh/konomae/lastpass-python
        
        :Original: `lastpass-ruby <https://github.com/detunized/lastpass-ruby>`_
        
        **This is unofficial LastPass API**
        
        
        Install
        -------
        
        .. code-block:: bash
        
            $ pip install lastpass-python
        
        
        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)
        
        
        
        Testing
        -------
        
        Install test dependencies
        
        .. code-block:: bash
        
            $ pip install -r requirements.txt
        
        Run tests with
        
        .. code-block:: bash
        
            $ nosetests
        
        or test all environments and pep8 with tox
        
        .. code-block:: bash
        
            $ tox
        
        
        
        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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
