passme


Namepassme JSON
Version 1.2.1 PyPI version JSON
download
home_pageNone
SummaryPassword management with command line
upload_time2024-08-27 19:05:36
maintainerNone
docs_urlNone
authorKatsutoshi Seki
requires_python>=3.6
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Passme

Passme is a password management tool with command line or web browzer. It helps you generate strong passwords for many sites. It generates password every time from a site-specific seed (sitekey) stored in the configuration file (sitekey file) and a master password that you memorize and type every time.

## Features

- Easy to use from command line. Best fit for programmers.
- HTML file can be created to generate the passwords from your mobile devices.
- Site-specific seeds are stored in a single text file and can be managed easily.

## Basic usage

```
> passme google
Master password: (input master password)
OT9BD5h6cHmWlN
Password copied to clipboard.
```

## Use as a Python library

```
import passme
master = input('Input master password: ')
password = passme.readpass('google', master)
print('Google password: ' + password)
```

## Full document

- See [full document](https://github.com/sekika/passme/blob/master/doc/README.rst)
- [Tutorial movie](https://youtu.be/6DXPhyYhYsE)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "passme",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Katsutoshi Seki",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/a7/b8/78ecdcec4b9e56288fcd371e6b5d3615a84e94d3bae4b43dfb1f6098f706/passme-1.2.1.tar.gz",
    "platform": null,
    "description": "# Passme\n\nPassme is a password management tool with command line or web browzer. It helps you generate strong passwords for many sites. It generates password every time from a site-specific seed (sitekey) stored in the configuration file (sitekey file) and a master password that you memorize and type every time.\n\n## Features\n\n- Easy to use from command line. Best fit for programmers.\n- HTML file can be created to generate the passwords from your mobile devices.\n- Site-specific seeds are stored in a single text file and can be managed easily.\n\n## Basic usage\n\n```\n> passme google\nMaster password: (input master password)\nOT9BD5h6cHmWlN\nPassword copied to clipboard.\n```\n\n## Use as a Python library\n\n```\nimport passme\nmaster = input('Input master password: ')\npassword = passme.readpass('google', master)\nprint('Google password: ' + password)\n```\n\n## Full document\n\n- See [full document](https://github.com/sekika/passme/blob/master/doc/README.rst)\n- [Tutorial movie](https://youtu.be/6DXPhyYhYsE)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Password management with command line",
    "version": "1.2.1",
    "project_urls": {
        "Homepage": "https://github.com/sekika/passme/blob/master/doc/README.rst",
        "Source": "https://github.com/sekika/passme"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a58534b7a28bc5c8f912e6b07d32a6fb602bc2b4d23721b14c84c0e4f87bf363",
                "md5": "a086578bf8e13fb5229139e82917b27b",
                "sha256": "ca0d4e2974f95afb43a1fd2752826c338d4b54e4fd96a59922d7abd24364ee71"
            },
            "downloads": -1,
            "filename": "passme-1.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a086578bf8e13fb5229139e82917b27b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 9379,
            "upload_time": "2024-08-27T19:05:34",
            "upload_time_iso_8601": "2024-08-27T19:05:34.330334Z",
            "url": "https://files.pythonhosted.org/packages/a5/85/34b7a28bc5c8f912e6b07d32a6fb602bc2b4d23721b14c84c0e4f87bf363/passme-1.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7b878ecdcec4b9e56288fcd371e6b5d3615a84e94d3bae4b43dfb1f6098f706",
                "md5": "f629f1fa7dfd0e486833a3ee4f4c6355",
                "sha256": "e618d2b4dc94a2708ec267493c8d869c743c6592d85fd30832d42fe65e7a37ec"
            },
            "downloads": -1,
            "filename": "passme-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f629f1fa7dfd0e486833a3ee4f4c6355",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 62306,
            "upload_time": "2024-08-27T19:05:36",
            "upload_time_iso_8601": "2024-08-27T19:05:36.081135Z",
            "url": "https://files.pythonhosted.org/packages/a7/b8/78ecdcec4b9e56288fcd371e6b5d3615a84e94d3bae4b43dfb1f6098f706/passme-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-27 19:05:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sekika",
    "github_project": "passme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "passme"
}
        
Elapsed time: 0.68429s