Metadata-Version: 1.0
Name: 1pass
Version: 0.1.3
Summary: A Python library and command line interface for 1Password
Home-page: http://github.com/georgebrock/1pass
Author: George Brocklehurst
Author-email: george.brocklehurst@gmail.com
License: MIT
Description: =====
        1pass
        =====
        
        A command line interface (and Python library) for reading passwords from
        `1Password <https://agilebits.com/onepassword>`_.
        
        Command line usage
        ==================
        
        To get a password::
        
            1pass mail.google.com
        
        By default this will look in ``~/Dropbox/1Password.agilekeychain``. If that's
        not where you keep your keychain::
        
            1pass --path ~/whatever/1Password.agilekeychain mail.google.com
        
        The name you pass on the command line must exactly match the name of an item in
        your 1Password keychain.
        
        Python usage
        ============
        
        The interface is very simple::
        
            from onepassword import Keychain
        
            my_keychain = Keychain(path="~/Dropbox/1Password.agilekeychain")
            my_keychain.unlock("my-master-password")
            my_keychain.item("An item's name").password
        
        An example of real-world use
        ============================
        
        I wrote this so I could add the following line to my ``.muttrc`` file::
        
            set imap_pass = "`~/code/1pass/bin/1pass 'Gooogle: personal'`"
        
        Now, whenever I start ``mutt``, I am prompted for my 1Password Master Password
        and not my Gmail password.
        
        License
        =======
        
        *1pass* is licensed under the MIT license. See the license file for details.
        
        While it is designed to read ``.agilekeychain`` bundles created by 1Password,
        *1pass* isn't officially sanctioned or supported by
        `AgileBits <https://agilebits.com/>`_. I do hope they like it though.
        
Platform: UNKNOWN
