rex-password-manager


Namerex-password-manager JSON
Version 3.7.9 PyPI version JSON
download
home_pageNone
SummaryA powerful terminal password manager using AES encryption and python
upload_time2024-04-24 08:01:33
maintainerNone
docs_urlNone
authorNone
requires_python>=3.0
licenseMIT License Copyright (c) 2023 Nithin 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.
keywords aes encryption passphrase password password manager python terminal typer
VCS
bugtrack_url
requirements pycryptodome pydantic typer rich pyperclip bcrypt
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Rex
> A powerful password manager using AES and python.

## Description

Rex is a password manager that is both powerful and easy to use.
It is implemented in Python and uses advanced encryption standards (AES) to encrypt your passphrase.
All the passphrases are stored in a JSON file in your home directory.

## Installation
> Installing Rex requires python-3 or above.

To install Rex through pip run this on windows:
```powershell
pip install rex-password-manager
```

or if your using Linux operating system run this:
```bash
pip3 install rex-password-manager
```

## Usage

### Initialize a new database in Rex
This command creates a JSON file in your home directory to store all your passphrases.
It will prompt you to enter a master passphrase, which will be hashed and stored in the JSON file.
```powershell
rex init
```

### Add new passphrase using Rex
This command creates an account with the name provided as the first argument to the command.
This command will also prompts for the master passphrase and the account passphrase.
The account passphrase is encrypted using advanced encryption standards (AES) and then stored in the JSON file located in your home directory.
```powershell
rex add <name>
```

To overwrite an existing account with the same name, use the `--overwrite` flag while using this command.
```powershell
rex add --overwrite <name>
```

### Retrieve a passphrases using Rex
This command retrieves the passphrase attached to the name provided as the first argument to the command.
```powershell
rex get <name>
```

By default, this command prints out the account passphrases but you can use the `--copy` flag to copy the passphrase to your clipboard.
```powershell
rex get --copy <name>
```

### Remove a passphrase from database using Rex
This command removes an existing account with the name provided as the first argument to the command.
```powershell
rex remove <name>
```

### List account names using Rex
This command prints all the existing account names in the JSON file.
```powershell
rex list
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rex-password-manager",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.0",
    "maintainer_email": null,
    "keywords": "AES encryption, passphrase, password, password manager, python, terminal, typer",
    "author": null,
    "author_email": "Nithin <cromizonebolt@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/6a/6a/af8b6c85327a298bc1f232c9204fa799f0f976e16369902966549c0b5764/rex_password_manager-3.7.9.tar.gz",
    "platform": null,
    "description": "# Rex\n> A powerful password manager using AES and python.\n\n## Description\n\nRex is a password manager that is both powerful and easy to use.\nIt is implemented in Python and uses advanced encryption standards (AES) to encrypt your passphrase.\nAll the passphrases are stored in a JSON file in your home directory.\n\n## Installation\n> Installing Rex requires python-3 or above.\n\nTo install Rex through pip run this on windows:\n```powershell\npip install rex-password-manager\n```\n\nor if your using Linux operating system run this:\n```bash\npip3 install rex-password-manager\n```\n\n## Usage\n\n### Initialize a new database in Rex\nThis command creates a JSON file in your home directory to store all your passphrases.\nIt will prompt you to enter a master passphrase, which will be hashed and stored in the JSON file.\n```powershell\nrex init\n```\n\n### Add new passphrase using Rex\nThis command creates an account with the name provided as the first argument to the command.\nThis command will also prompts for the master passphrase and the account passphrase.\nThe account passphrase is encrypted using advanced encryption standards (AES) and then stored in the JSON file located in your home directory.\n```powershell\nrex add <name>\n```\n\nTo overwrite an existing account with the same name, use the `--overwrite` flag while using this command.\n```powershell\nrex add --overwrite <name>\n```\n\n### Retrieve a passphrases using Rex\nThis command retrieves the passphrase attached to the name provided as the first argument to the command.\n```powershell\nrex get <name>\n```\n\nBy default, this command prints out the account passphrases but you can use the `--copy` flag to copy the passphrase to your clipboard.\n```powershell\nrex get --copy <name>\n```\n\n### Remove a passphrase from database using Rex\nThis command removes an existing account with the name provided as the first argument to the command.\n```powershell\nrex remove <name>\n```\n\n### List account names using Rex\nThis command prints all the existing account names in the JSON file.\n```powershell\nrex list\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Nithin  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.",
    "summary": "A powerful terminal password manager using AES encryption and python",
    "version": "3.7.9",
    "project_urls": {
        "Homepage": "https://github.com/Cromizone/rex",
        "Issues": "https://github.com/Cromizone/rex/issues"
    },
    "split_keywords": [
        "aes encryption",
        " passphrase",
        " password",
        " password manager",
        " python",
        " terminal",
        " typer"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "884b68575b7973c42c7746210af85a8586f0d70a8740447409a20b5e92179bb1",
                "md5": "760eb0ba616f4c3134da94a6fb6ae1aa",
                "sha256": "0e427f38d24722850dad2c84418e1757ba53b2ae909b668be0b2c0ae1dfd0506"
            },
            "downloads": -1,
            "filename": "rex_password_manager-3.7.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "760eb0ba616f4c3134da94a6fb6ae1aa",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.0",
            "size": 6780,
            "upload_time": "2024-04-24T08:01:31",
            "upload_time_iso_8601": "2024-04-24T08:01:31.122399Z",
            "url": "https://files.pythonhosted.org/packages/88/4b/68575b7973c42c7746210af85a8586f0d70a8740447409a20b5e92179bb1/rex_password_manager-3.7.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a6aaf8b6c85327a298bc1f232c9204fa799f0f976e16369902966549c0b5764",
                "md5": "b23749f33a5def98d954354628badbb5",
                "sha256": "2f900da50300a415b56ff9b70a09d6dad4610e45cf3b4d62a2a3385e47be1b15"
            },
            "downloads": -1,
            "filename": "rex_password_manager-3.7.9.tar.gz",
            "has_sig": false,
            "md5_digest": "b23749f33a5def98d954354628badbb5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.0",
            "size": 6249,
            "upload_time": "2024-04-24T08:01:33",
            "upload_time_iso_8601": "2024-04-24T08:01:33.321923Z",
            "url": "https://files.pythonhosted.org/packages/6a/6a/af8b6c85327a298bc1f232c9204fa799f0f976e16369902966549c0b5764/rex_password_manager-3.7.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-24 08:01:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Cromizone",
    "github_project": "rex",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "pycryptodome",
            "specs": [
                [
                    ">=",
                    "3.20.0"
                ]
            ]
        },
        {
            "name": "pydantic",
            "specs": [
                [
                    ">=",
                    "2.5.3"
                ]
            ]
        },
        {
            "name": "typer",
            "specs": [
                [
                    ">=",
                    "0.9.0"
                ]
            ]
        },
        {
            "name": "rich",
            "specs": [
                [
                    ">=",
                    "13.7.0"
                ]
            ]
        },
        {
            "name": "pyperclip",
            "specs": [
                [
                    ">=",
                    "1.8.2"
                ]
            ]
        },
        {
            "name": "bcrypt",
            "specs": [
                [
                    ">=",
                    "4.0.1"
                ]
            ]
        }
    ],
    "lcname": "rex-password-manager"
}
        
Elapsed time: 0.22654s