pw-stats


Namepw-stats JSON
Version 2.0.1 PyPI version JSON
download
home_pagehttps://ari-web.xyz/gh/pw_stats
Summaryvalidation of passwords and their statistics in python, modern, async and cached rewrite of https://pypi.org/project/password-strength/
upload_time2023-08-16 16:44:32
maintainer
docs_urlNone
authorAri Archer
requires_python
licenseGPLv3+
keywords password strength statistics passwords security validation async modern stats entropy caching
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pw_stats

> validation of passwords and their statistics in python, modern, async and cached rewrite of https://pypi.org/project/password-strength/

# credits

-   <https://pypi.org/project/password-strength/> for the original idea

# installation

```sh
$ pip install pw-stats
```

# usage

```py
import pw_stats
import asyncio

pw: pw_stats.PasswordStats = pw_stats.PasswordStats("b4c0n_4nd-3ggz")

# check pw object for all the statistics

print(asyncio.run(pw.natural_strength()))  # await it in an async function to run it non-blocking :)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://ari-web.xyz/gh/pw_stats",
    "name": "pw-stats",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "password,strength,statistics,passwords,security,validation,async,modern,stats,entropy,caching",
    "author": "Ari Archer",
    "author_email": "ari.web.xyz@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "# pw_stats\n\n> validation of passwords and their statistics in python, modern, async and cached rewrite of https://pypi.org/project/password-strength/\n\n# credits\n\n-   <https://pypi.org/project/password-strength/> for the original idea\n\n# installation\n\n```sh\n$ pip install pw-stats\n```\n\n# usage\n\n```py\nimport pw_stats\nimport asyncio\n\npw: pw_stats.PasswordStats = pw_stats.PasswordStats(\"b4c0n_4nd-3ggz\")\n\n# check pw object for all the statistics\n\nprint(asyncio.run(pw.natural_strength()))  # await it in an async function to run it non-blocking :)\n```\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "validation of passwords and their statistics in python, modern, async and cached rewrite of https://pypi.org/project/password-strength/",
    "version": "2.0.1",
    "project_urls": {
        "Homepage": "https://ari-web.xyz/gh/pw_stats"
    },
    "split_keywords": [
        "password",
        "strength",
        "statistics",
        "passwords",
        "security",
        "validation",
        "async",
        "modern",
        "stats",
        "entropy",
        "caching"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "544a84e2556e13bf60a6acc5a4ff85b85c94543f8506dcd86feffd1ad4a82eb4",
                "md5": "e15ec49a9a929d1068dc8e53e483034d",
                "sha256": "46da8fcabcf69d2bf8d2f82b4e48a6775fc33772cc95210ca687dfd59ea4f090"
            },
            "downloads": -1,
            "filename": "pw_stats-2.0.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e15ec49a9a929d1068dc8e53e483034d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 16626,
            "upload_time": "2023-08-16T16:44:32",
            "upload_time_iso_8601": "2023-08-16T16:44:32.189508Z",
            "url": "https://files.pythonhosted.org/packages/54/4a/84e2556e13bf60a6acc5a4ff85b85c94543f8506dcd86feffd1ad4a82eb4/pw_stats-2.0.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-16 16:44:32",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pw-stats"
}
        
Elapsed time: 0.11078s