agentfud-password-manager


Nameagentfud-password-manager JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/AgentFUD/agentfud-password-manager
SummaryAgentFUD Password Manager
upload_time2024-08-15 17:33:24
maintainerNone
docs_urlNone
authorAgentFUD
requires_python>=3.1
licenseNone
keywords python python3 password manager command line
VCS
bugtrack_url
requirements click pycryptodome pyperclip rich SQLAlchemy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AgentFUD Password Manager #

This software is a proof of concept implenetation of a secure password storage.
It creates a single sqlite file which you can carry with you and even store it publicly,
no one will ever be able to decrypt your passwords without knowing your master password.

### Installation ###

```shell
pip install agentfud_password_manager
```

### Usage ###
```shell
bash$ af-password-manager
Usage: af-password-manager [OPTIONS] COMMAND [ARGS]...

  Welcome to AgentFUD Password Manager! A cli tool for managing your passwords

Options:
  --help  Show this message and exit.

Commands:
  add       Adding a new entry to the database
  delete    Deletes an entry
  generate  Generates a random password
  get       Decrypts the password and copies it to the clipboard
  info      AgentFUD Password Manager version and project info
  init      Initialization of the password manager
  list      Lists all the entries
```

- First initialize a new database if you don't have it (passwords.sqlite will be created)
```shell
bash$ af-password-manager init
```
It will ask for a master password. Keep it in mind that this is the key for everything, without it you won't be able to read or create new entries.

All the commands have help so the easiest way to explore what it can do is by typing --help after the command, for example:
```shell
bash$ af-password-manager add --help
Usage: af-password-manager add [OPTIONS]

  Adding a new entry to the database

Options:
  -su, --site-url TEXT    URL of the site where you want to log in
  -u, --username TEXT     User name
  -e, --email TEXT        Email address
  -p, --password TEXT     Password
  --master_password TEXT
  --help                  Show this message and exit.
```

Adding a new item is easy if you already signed for a service and you know the password.
```shell
bash$ af-password-manager add -su yoursite.com -e your@mail.com -p MySecretPassword33
```

If you don't have a password for a service the app can generate one for you. Simply just leave out the -p option
```shell
bash$ af-password-manager add -su yoursite.com -e your@mail.com
```

Getting one item is easy. first call the list, grab the id, then feed it to the ***get*** command
```shell
bash$ af-password-manager get -i 33
```
Remember, it won't print out to the screen, simply it copies to your clipboard.

### Development install ###
```shell
bash$ git@github.com:AgentFUD/agentfud-password-manager.git
bash$ cd agentfud-password-manager
bash$ python3 -m venv ./venv
bash$ source ./venv/bin/activate
bash$ pip install -r requirements.txt
bash$ pip install --editable .
```

Enjoy!

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/AgentFUD/agentfud-password-manager",
    "name": "agentfud-password-manager",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.1",
    "maintainer_email": null,
    "keywords": "python, python3, Password manager, command line",
    "author": "AgentFUD",
    "author_email": "agentfud@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/f4/18/9169dbf7c0a79eb126502911f1b92606e9fd64bc72cea9d42fc44c8b329c/agentfud_password_manager-0.0.4.tar.gz",
    "platform": null,
    "description": "# AgentFUD Password Manager #\n\nThis software is a proof of concept implenetation of a secure password storage.\nIt creates a single sqlite file which you can carry with you and even store it publicly,\nno one will ever be able to decrypt your passwords without knowing your master password.\n\n### Installation ###\n\n```shell\npip install agentfud_password_manager\n```\n\n### Usage ###\n```shell\nbash$ af-password-manager\nUsage: af-password-manager [OPTIONS] COMMAND [ARGS]...\n\n  Welcome to AgentFUD Password Manager! A cli tool for managing your passwords\n\nOptions:\n  --help  Show this message and exit.\n\nCommands:\n  add       Adding a new entry to the database\n  delete    Deletes an entry\n  generate  Generates a random password\n  get       Decrypts the password and copies it to the clipboard\n  info      AgentFUD Password Manager version and project info\n  init      Initialization of the password manager\n  list      Lists all the entries\n```\n\n- First initialize a new database if you don't have it (passwords.sqlite will be created)\n```shell\nbash$ af-password-manager init\n```\nIt will ask for a master password. Keep it in mind that this is the key for everything, without it you won't be able to read or create new entries.\n\nAll the commands have help so the easiest way to explore what it can do is by typing --help after the command, for example:\n```shell\nbash$ af-password-manager add --help\nUsage: af-password-manager add [OPTIONS]\n\n  Adding a new entry to the database\n\nOptions:\n  -su, --site-url TEXT    URL of the site where you want to log in\n  -u, --username TEXT     User name\n  -e, --email TEXT        Email address\n  -p, --password TEXT     Password\n  --master_password TEXT\n  --help                  Show this message and exit.\n```\n\nAdding a new item is easy if you already signed for a service and you know the password.\n```shell\nbash$ af-password-manager add -su yoursite.com -e your@mail.com -p MySecretPassword33\n```\n\nIf you don't have a password for a service the app can generate one for you. Simply just leave out the -p option\n```shell\nbash$ af-password-manager add -su yoursite.com -e your@mail.com\n```\n\nGetting one item is easy. first call the list, grab the id, then feed it to the ***get*** command\n```shell\nbash$ af-password-manager get -i 33\n```\nRemember, it won't print out to the screen, simply it copies to your clipboard.\n\n### Development install ###\n```shell\nbash$ git@github.com:AgentFUD/agentfud-password-manager.git\nbash$ cd agentfud-password-manager\nbash$ python3 -m venv ./venv\nbash$ source ./venv/bin/activate\nbash$ pip install -r requirements.txt\nbash$ pip install --editable .\n```\n\nEnjoy!\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "AgentFUD Password Manager",
    "version": "0.0.4",
    "project_urls": {
        "Homepage": "https://github.com/AgentFUD/agentfud-password-manager"
    },
    "split_keywords": [
        "python",
        " python3",
        " password manager",
        " command line"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09d4363a0e88a182127709d892a4aa0b2830fb8ed3fb782c955a68e9f5b2a6c3",
                "md5": "65915fe7000855556f792f7a49fb3315",
                "sha256": "d22490ed85a47d2f51b995d2503d0da53cc087a2ecf77e5e09c69e66de71fbb8"
            },
            "downloads": -1,
            "filename": "agentfud_password_manager-0.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "65915fe7000855556f792f7a49fb3315",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.1",
            "size": 10014,
            "upload_time": "2024-08-15T17:33:22",
            "upload_time_iso_8601": "2024-08-15T17:33:22.639524Z",
            "url": "https://files.pythonhosted.org/packages/09/d4/363a0e88a182127709d892a4aa0b2830fb8ed3fb782c955a68e9f5b2a6c3/agentfud_password_manager-0.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4189169dbf7c0a79eb126502911f1b92606e9fd64bc72cea9d42fc44c8b329c",
                "md5": "8cebda2386c597aed7ebd4bc7703f8bb",
                "sha256": "e5f27430771de24f6e0a334940ea91ffca93e91e8b69f315bf10b1d8a80e9476"
            },
            "downloads": -1,
            "filename": "agentfud_password_manager-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "8cebda2386c597aed7ebd4bc7703f8bb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.1",
            "size": 7806,
            "upload_time": "2024-08-15T17:33:24",
            "upload_time_iso_8601": "2024-08-15T17:33:24.483526Z",
            "url": "https://files.pythonhosted.org/packages/f4/18/9169dbf7c0a79eb126502911f1b92606e9fd64bc72cea9d42fc44c8b329c/agentfud_password_manager-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-15 17:33:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "AgentFUD",
    "github_project": "agentfud-password-manager",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "click",
            "specs": [
                [
                    "==",
                    "8.1.7"
                ]
            ]
        },
        {
            "name": "pycryptodome",
            "specs": [
                [
                    "==",
                    "3.20.0"
                ]
            ]
        },
        {
            "name": "pyperclip",
            "specs": [
                [
                    "==",
                    "1.9.0"
                ]
            ]
        },
        {
            "name": "rich",
            "specs": [
                [
                    "==",
                    "13.7.1"
                ]
            ]
        },
        {
            "name": "SQLAlchemy",
            "specs": [
                [
                    "==",
                    "2.0.32"
                ]
            ]
        }
    ],
    "lcname": "agentfud-password-manager"
}
        
Elapsed time: 8.72668s