Metadata-Version: 1.1
Name: pysswords
Version: 0.0.7
Summary: Manage your login credentials from the terminal painlessly.
Home-page: https://github.com/marcwebbie/pysswords
Author: Marcwebbie
Author-email: marcwebbie@gmail.com
License: License :: OSI Approved :: MIT License
Download-URL: https://pypi.python.org/pypi/pysswords
Description: ##################################################
        Pysswords: Manage your passwords from the terminal
        ##################################################
        
        `Pysswords <https://github.com/marcwebbie/pysswords>`_ lets you manage your login credentials from the terminal. Password files are saved into `GnuGPG <http://en.wikipedia.org/wiki/GNU_Privacy_Guard>`_ encrypted files into the `Database Path`_. Only with the passphrase used to create the pyssword database you can decrypt password files. If you want to know more about how pysswords works internally, check the `Under the Hood`_ section.
        
        
        .. image:: https://github.com/marcwebbie/pysswords/raw/master/images/pysswords.png
            :alt: Pysswords console interface
            :width: 800
            :height: 600
            :align: center
        
        
        ------
        
        ******************
        Main Features [#]_
        ******************
        
        | **☑** Console interface
        | **☑** Manage multiple databases
        | **☑** Add, edit, remove credentials
        | **☑** Copy passwords to clipboard
        | **☑** Search credentials by name, login or comments
        | **☑** List credentials as a table
        | **☑** Colored output
        | **☐** Search with regular expression
        | **☐** Importing credentials from other applications
        | **☐** Undo/Redo modifications to the database
        | **☐** Pysswords emacs mode
        |
        
        .. [#]  ``☑`` implemented feature, ``☐`` not implemented feature.
        
        
        ************
        Installation
        ************
        
        Stable version |version|
        ========================
        
        Make sure you have `GPG <https://www.gnupg.org/>`_ and `pip <http://pip.readthedocs.org/en/latest/installing.html>`_ installed.
        
        .. code-block:: bash
        
            pip install pysswords
        
        Development version |coverage| |health|
        =======================================
        
        =============  =============
        Mac/Linux      Windows
        |unix|         |windows|
        =============  =============
        
        The **latest development version** can be installed directly from GitHub:
        
        .. code-block:: bash
        
            # Universal
            $ pip install --upgrade https://github.com/marcwebbie/pysswords/tarball/master
        
        
        **********
        Quickstart
        **********
        
        .. code-block:: bash
        
            # create a new credentials database. Option: `-I` or `--init`
            pysswords --init
        
            # add new credentials. Option: `-a` or `--add`
            pysswords -a
        
            # get credential "github". Option: `-g` or `--get`
            pysswords -g github
        
            # remove credential "github". Option: `-r` or `--remove`
            pysswords -d github
        
            # edit credential "github". Option: `-e` or `--edit`
            pysswords -e github
        
            # search credentials with query "octocat". Option: `-s` or `--search`
            pysswords -s octocat
        
            # copy password from credential "github" into clipboard. Option: `-c` or `--clipboard`
            # this option have to be used with --get|-g option
            pysswords -c -g github
        
            # print all credentials as a table with hidden passwords
            pysswords
        
            # print all credentials and show passwords in plain text. Option: `--show-password`
            pysswords --show-password
        
            # shows help. Option `-h` or `--help`
            pysswords --help
        
        
        **************
        Under The Hood
        **************
        
        Encryption
        ==========
        
        Encryption is done with **GnuGPG** using `AES256 <http://en.wikipedia.org/wiki/Advanced_Encryption_Standard>`_. Take a look at `pysswords.crypt <https://github.com/marcwebbie/pysswords/blob/master/pysswords/crypt.py>`_ module to know more.
        
        Database Path
        =============
        
        The default database path is at ``~/.pysswords``. If you want to change the database path, add ``--database`` option to pysswords together with ``--init``.
        
        .. code-block:: bash
        
            pysswords --init --database "/path/to/database/"
        
        Database structure
        ==================
        
        Pysswords database is structured in a directory hierachy. Every credential is a directory named with credential name inside the database path.
        
        An empty database would look like this:
        
        .. code-block:: bash
        
           pysswords --database /tmp/pysswords --init
        
           tree /tmp/pysswords -la
           # /tmp/pysswords
           # └── .gnupg
           #     ├── pubring.gpg
           #     ├── random_seed
           #     ├── secring.gpg
           #     └── trustdb.gpg
        
        After adding a new credential the database would look like this:
        
        .. code-block:: bash
        
            pysswords --database /tmp/pysswords -a
            # Name: github
            # Login: octocat
            # Password: **********
            # Comments [optional]:
        
            tree /tmp/pysswords -la
            # /tmp/pysswords
            # ├── .gnupg
            # │   ├── pubring.gpg
            # │   ├── random_seed
            # │   ├── secring.gpg
            # │   └── trustdb.gpg
            # └── github
            #     ├── comments
            #     ├── login
            #     └── password
        
        
        ************
        Contributing
        ************
        
        + Fork the repository `<https://github.com/marcwebbie/pysswords/fork>`_
        + Write your tests on ``tests/test.py``
        + If everything is OK. push your changes and make a pull request. ;)
        
        
        ******************************************************************
        License (`MIT License <http://choosealicense.com/licenses/mit/>`_)
        ******************************************************************
        
        The MIT License (MIT)
        
        Copyright (c) 2014 Marc Webbie, http://github.com/marcwebbie
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        
        .. |version| image:: https://badge.fury.io/py/pysswords.svg
           :target: http://badge.fury.io/py/pysswords
           :alt: pypi version
        
        .. |unix| image:: https://travis-ci.org/marcwebbie/pysswords.svg
           :target: https://travis-ci.org/marcwebbie/pysswords
           :alt: Build
        
        .. |windows| image:: https://ci.appveyor.com/api/projects/status/5b7p1vo3y9x3y35t?svg=true
           :target: https://ci.appveyor.com/project/marcwebbie/pysswords
           :alt: Build on windows
        
        .. |coverage| image:: https://coveralls.io/repos/marcwebbie/pysswords/badge.png
           :target: https://coveralls.io/r/marcwebbie/pysswords
           :alt: Test Coverage
        
        .. |health| image:: https://landscape.io/github/marcwebbie/pysswords/master/landscape.svg
           :target: https://landscape.io/github/marcwebbie/pysswords/master
           :alt: Code Health
        
        ---
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security :: Cryptography
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
