{ "info": { "author": "Alexandre G", "author_email": "alex.git@ralouf.fr", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Topic :: Security :: Cryptography", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==========\npwdmanager\n==========\n\nKeep your passwords safe and close\n\nThis is a command line tool to manage your passwords. Those are stored locally in an encrypted JSON formatted file. The\nencryption and decryption is performed by GPG_. Passwords unlocking is done using a master password.\n\nBenefits of using this program include :\n\n- use difficult and different passwords to secure your accounts\n- you don't have to trust third parties for storing your passwords : everything is stored locally\n- provide high end and reliable encryption with GPG_\n- it is open source : anybody can check the code\n\ninstallation\n------------\n\nWith pip or your favorite package manager::\n\n pip install pwdmanager\n pipenv install pwdmanager\n poetry add pwdmanager\n\nThat's it.\n\nIf you want to build the wheel yourself you have to have `poetry `_\ninstalled. Then change directory to the root of the sources and issue::\n\n poetry build\n\nThen you can install the wheel with your favorite package manager::\n\n pip install dist/pwdmanager-XXX-py3-none-any.whl\n pipenv install dist/pwdmanager-XXX-py3-none-any.whl\n poetry add pwdmanager --path=dist/pwdmanager-XXX-py3-none-any.whl\n\nrequirements\n------------\n\nYou need to have GPG_ installed.\n\n.. _GPG: https://gnupg.org/\n\ndatabase\n--------\n\nThe database is a local JSON file. It is encrypted. At first usage it will be initialised. The default location is\n``~/.pwddb`` but you can provide you own location.\n\nconcepts\n--------\n\nAn entry in basically a container for an account information. The password database is a list of entries. An entry has\nthe following attributes:\n\nname\n this is an id of the entry. Two entries cannot have the same name.\n\nlogin\n account login\n\npassword\n account password\n\nlogin alias\n a second or alternative account login\n\naliases\n one entry can have several aliases. Each alias is an id of the entry. Two entries cannot have the same alias.\n Useful to provide easier to match or remember names\n\ntags\n one entry can have several tags. Useful to categorize entries. You can search with tags\n\ncreation date\n entry creation date. Immutable.\n\nlast update date\n obvious\n\nusage\n-----\n::\n\n usage: pwdmanager [-h] [-d DATABASE] [-p MASTER_PASSWORD]\n {add,show,list,rm,update} ...\n\n positional arguments:\n {add,show,list,rm,update}\n\n optional arguments:\n -h, --help show this help message and exit\n -d DATABASE, --database DATABASE\n specify where the database is located\n -p MASTER_PASSWORD, --master-password MASTER_PASSWORD\n password to crypt and decrypt the database\n\n\nThere are 5 main commands:\n\nadd\n to add a new entry\n\nshow\n to list all the attributes of a particular entry, you have to give the exact name or alias of an entry\n\nlist\n to look for entries. Can be used without any parameter, in that case all entries will be listed. You can also provide\n a string, then all the entries with name or aliases containing this string will be listed. You can filter by tag also.\n\nrm\n to remove an entry. No confirmation asked, be careful.\n\nupdate\n to modify an entry\n\nFor all those commands, use the ``-h/--help`` flag to have details about parameters::\n\n pwdmanager add -h\n\n\nbe careful\n----------\n\n- Choose your master password wisely. Do not forget it or you won't be able to recover your database\n- When adding a password you specify it in the command. Thus it may be stored in the shell history. Therefore I strongly\n recommend to clean your history after adding passwords. On linux ``sed -i /^pwdmanager/d ~/.bash_history`` will do the trick\n in most cases.\n- When adding a password I recommend you surround it by single quotes because special characters may be interpreted\n by the shell\n- back your password database up\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bravefencermusashi/pwdmanager", "keywords": "", "license": "GPL-3.0", "maintainer": "Alexandre G", "maintainer_email": "alex.git@ralouf.fr", "name": "pwdmanager", "package_url": "https://pypi.org/project/pwdmanager/", "platform": "", "project_url": "https://pypi.org/project/pwdmanager/", "project_urls": { "Homepage": "https://github.com/bravefencermusashi/pwdmanager", "Repository": "https://github.com/bravefencermusashi/pwdmanager" }, "release_url": "https://pypi.org/project/pwdmanager/1.0.0/", "requires_dist": [ "python-gnupg (>=0.4.5,<0.5.0)" ], "requires_python": ">=3.7,<4.0", "summary": "command line tool to manage passwords", "version": "1.0.0" }, "last_serial": 5717560, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "a679b6930eeaf250231e6392d1d7333a", "sha256": "91afda1a2af409a467ad516c539d8a7e5ce119567f613f437407ef1e59ab65af" }, "downloads": -1, "filename": "pwdmanager-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a679b6930eeaf250231e6392d1d7333a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<4.0", "size": 20261, "upload_time": "2019-08-22T21:46:58", "url": "https://files.pythonhosted.org/packages/1d/4a/6ca05f94ed191148890a4a3e1eeaacee1e7aa21ec8495221e4fcf525913e/pwdmanager-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f083399dd0069e06901a4efbce364cd3", "sha256": "96ad7628d42868479912ad18e9d86657b0797841bc0fc8fbdad4daff6e11107b" }, "downloads": -1, "filename": "pwdmanager-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f083399dd0069e06901a4efbce364cd3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 21049, "upload_time": "2019-08-22T21:47:01", "url": "https://files.pythonhosted.org/packages/ef/a8/a2e3355d8bfcccab4653af1e7639c0ad38deb653e6fc23e7d26da640beeb/pwdmanager-1.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a679b6930eeaf250231e6392d1d7333a", "sha256": "91afda1a2af409a467ad516c539d8a7e5ce119567f613f437407ef1e59ab65af" }, "downloads": -1, "filename": "pwdmanager-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a679b6930eeaf250231e6392d1d7333a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<4.0", "size": 20261, "upload_time": "2019-08-22T21:46:58", "url": "https://files.pythonhosted.org/packages/1d/4a/6ca05f94ed191148890a4a3e1eeaacee1e7aa21ec8495221e4fcf525913e/pwdmanager-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f083399dd0069e06901a4efbce364cd3", "sha256": "96ad7628d42868479912ad18e9d86657b0797841bc0fc8fbdad4daff6e11107b" }, "downloads": -1, "filename": "pwdmanager-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f083399dd0069e06901a4efbce364cd3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 21049, "upload_time": "2019-08-22T21:47:01", "url": "https://files.pythonhosted.org/packages/ef/a8/a2e3355d8bfcccab4653af1e7639c0ad38deb653e6fc23e7d26da640beeb/pwdmanager-1.0.0.tar.gz" } ] }