# Smart Passwords Library <sup>v0.5.3</sup>
***
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/smartpasslib?label=pypi%20downloads)](https://pypi.org/project/smartpasslib/)
![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/smartpasslib)
[![PyPI](https://img.shields.io/pypi/v/smartpasslib)](https://pypi.org/project/smartpasslib)
[![GitHub](https://img.shields.io/github/license/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/blob/master/LICENSE)
[![PyPI - Format](https://img.shields.io/pypi/format/smartpasslib)](https://pypi.org/project/smartpasslib)
***
## Short Description:
___smartpasslib___ - Cross-platform library for generating smart passwords.
This library allows you to generate smart passwords.
Smart passwords are passwords that are not stored anywhere, but are generated "on the fly".
Examples of applications created using this unique technology:
- [Smart Password Generator (Console)](https://github.com/smartlegionlab/clipassgen/)
- [Smart Password Manager (Console)](https://github.com/smartlegionlab/clipassman/)
- [Smart Password Manager (Telegram Bot)](https://t.me/smartpasswordmanagerbot)
- [Smart Password Manager (Desktop)](https://github.com/smartlegionlab/smart_password_manager_desktop/)
***
Author and developer: ___A.A. Suvorov.___
***
## Supported:
- Linux: All.
- Windows: 7/8/10/11?.
- Termux (Android).
***
## What is news:
smartpasslib v0.5.3
- Moving the library to the old "historical" repository
- Minor improvements
- Minor fixes
*******
## Help:
`pip install smartpasslib`
```python
from smartpasslib import SmartPasswordMaster
login = 'login'
secret = 'secret'
length = 15
smart_password_master = SmartPasswordMaster()
smart_password = smart_password_master.generate_smart_password(login=login, secret=secret, length=length)
smart_password2 = smart_password_master.generate_smart_password(login=login, secret=secret, length=length)
check_passwords = smart_password == smart_password2 # True
key = smart_password_master.generate_public_key(login, secret)
check_data = smart_password_master.check_public_key(login, secret, key) # True
check_data2 = smart_password_master.check_public_key(login, 'secret2', key) # False
```
### Information for developers:
- `python setup.py sdist bdist_wheel`
- `twine upload dist/*`
```
***
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***
Licensed under the terms of the BSD 3-Clause License
(see LICENSE for details).
Copyright © 2018-2024, A.A. Suvorov
All rights reserved.
Raw data
{
"_id": null,
"home_page": "https://github.com/smartlegionlab",
"name": "smartpasslib",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "smart password, smart pass gen, smart password generator, smartpasslib, smartlegionlab",
"author": "A.A. Suvorov",
"author_email": "smartlegiondev@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/d3/e0/096c1dc04f90713feb7e2a9b50de5fcd3286a820522bbb20f6576d02e0eb/smartpasslib-0.5.3.tar.gz",
"platform": null,
"description": "# Smart Passwords Library <sup>v0.5.3</sup>\n\n***\n\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/smartpasslib?label=pypi%20downloads)](https://pypi.org/project/smartpasslib/)\n![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/smartpasslib)\n[![PyPI](https://img.shields.io/pypi/v/smartpasslib)](https://pypi.org/project/smartpasslib)\n[![GitHub](https://img.shields.io/github/license/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/blob/master/LICENSE)\n[![PyPI - Format](https://img.shields.io/pypi/format/smartpasslib)](https://pypi.org/project/smartpasslib)\n\n***\n\n## Short Description:\n___smartpasslib___ - Cross-platform library for generating smart passwords.\n\nThis library allows you to generate smart passwords. \nSmart passwords are passwords that are not stored anywhere, but are generated \"on the fly\".\nExamples of applications created using this unique technology:\n\n- [Smart Password Generator (Console)](https://github.com/smartlegionlab/clipassgen/) \n- [Smart Password Manager (Console)](https://github.com/smartlegionlab/clipassman/)\n- [Smart Password Manager (Telegram Bot)](https://t.me/smartpasswordmanagerbot)\n- [Smart Password Manager (Desktop)](https://github.com/smartlegionlab/smart_password_manager_desktop/)\n\n***\n\nAuthor and developer: ___A.A. Suvorov.___\n\n***\n\n## Supported:\n\n- Linux: All.\n- Windows: 7/8/10/11?.\n- Termux (Android).\n\n***\n\n## What is news:\n\nsmartpasslib v0.5.3\n\n- Moving the library to the old \"historical\" repository\n- Minor improvements\n- Minor fixes\n\n*******\n\n## Help:\n\n`pip install smartpasslib`\n\n```python\nfrom smartpasslib import SmartPasswordMaster\n\n\nlogin = 'login'\nsecret = 'secret'\nlength = 15\n\nsmart_password_master = SmartPasswordMaster()\n\nsmart_password = smart_password_master.generate_smart_password(login=login, secret=secret, length=length)\nsmart_password2 = smart_password_master.generate_smart_password(login=login, secret=secret, length=length)\n\ncheck_passwords = smart_password == smart_password2 # True\n\nkey = smart_password_master.generate_public_key(login, secret)\n\ncheck_data = smart_password_master.check_public_key(login, secret, key) # True\ncheck_data2 = smart_password_master.check_public_key(login, 'secret2', key) # False\n\n```\n\n### Information for developers:\n\n- `python setup.py sdist bdist_wheel`\n- `twine upload dist/*`\n\n```\n\n***\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n***\n\n Licensed under the terms of the BSD 3-Clause License\n (see LICENSE for details).\n Copyright \u00a9 2018-2024, A.A. Suvorov\n All rights reserved.\n",
"bugtrack_url": null,
"license": "BSD 3-Clause License",
"summary": "'Cross-platform library for generating smart passwords.'",
"version": "0.5.3",
"project_urls": {
"Documentation": "https://github.com/smartlegionlab/smartpasslib/blob/master/README.md",
"Homepage": "https://github.com/smartlegionlab",
"Release notes": "https://github.com/smartlegionlab/smartpasslib/releases"
},
"split_keywords": [
"smart password",
" smart pass gen",
" smart password generator",
" smartpasslib",
" smartlegionlab"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5713b22737d9c51ee63076098e49d6670e322d040ba6ecca532f12162a71f696",
"md5": "ae1fc543e7be8a993d973dc7b6b26c75",
"sha256": "40da874493b1957e3a11409bce0d14c555e48f5cd3dd6e88e14b5dc854a090bd"
},
"downloads": -1,
"filename": "smartpasslib-0.5.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ae1fc543e7be8a993d973dc7b6b26c75",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 6894,
"upload_time": "2024-10-28T11:42:17",
"upload_time_iso_8601": "2024-10-28T11:42:17.208372Z",
"url": "https://files.pythonhosted.org/packages/57/13/b22737d9c51ee63076098e49d6670e322d040ba6ecca532f12162a71f696/smartpasslib-0.5.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3e0096c1dc04f90713feb7e2a9b50de5fcd3286a820522bbb20f6576d02e0eb",
"md5": "5d0c16d396ff859e8ec8c02af0e7eb99",
"sha256": "ec773e71dac1ab61256f90115fbcaa02ac4efaa9d2d6f671da947f05745400ce"
},
"downloads": -1,
"filename": "smartpasslib-0.5.3.tar.gz",
"has_sig": false,
"md5_digest": "5d0c16d396ff859e8ec8c02af0e7eb99",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 5853,
"upload_time": "2024-10-28T11:42:18",
"upload_time_iso_8601": "2024-10-28T11:42:18.764838Z",
"url": "https://files.pythonhosted.org/packages/d3/e0/096c1dc04f90713feb7e2a9b50de5fcd3286a820522bbb20f6576d02e0eb/smartpasslib-0.5.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-28 11:42:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "smartlegionlab",
"github_project": "smartpasslib",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "smartpasslib"
}