New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

lastpass-python

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lastpass-python

Read only access to the online LastPass vault (unofficial)

pipPyPI
Version
0.3.2
Maintainers
1

LastPass Python API

.. image:: https://github.com/konomae/lastpass-python/workflows/CI/badge.svg :target: https://github.com/konomae/lastpass-python/actions

.. 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

Releasing

.. code-block:: bash

$ pip install twine
$ python setup.py sdist
$ twine upload dist/*

License

The MIT License <https://opensource.org/licenses/mit-license.php>_

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts