<div align="center">
<h1>kryptospy</h1>
<strong>Encrypting texts with a password, with the impossibility of returning to the original text without the password.</strong>
<br><br>
</div>
[![Test on Ubuntu latest](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-linux.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-linux.yml)
[![Test on Windows latest](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-win.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-win.yml)
[![Test on MacOS latest](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-mac.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-mac.yml)
[![pypi-setup](https://github.com/yasserbdj96/kryptospy/actions/workflows/pypi-setup.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/pypi-setup.yml)
![Upload to PYPI](https://github.com/yasserbdj96/kryptospy/actions/workflows/pipup.yml/badge.svg)
[![Mirror and run GitLab CI](https://github.com/yasserbdj96/kryptospy/actions/workflows/push-gitLab.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/push-gitLab.yml)
[![Deploy static content to Pages](https://github.com/yasserbdj96/kryptospy/actions/workflows/pages.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/pages.yml)
[![CodeQL](https://github.com/yasserbdj96/kryptospy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/codeql-analysis.yml)
[![CodeFactor](https://www.codefactor.io/repository/github/yasserbdj96/kryptospy/badge)](https://www.codefactor.io/repository/github/yasserbdj96/kryptospy)
[![Supported Versions](https://img.shields.io/pypi/pyversions/kryptospy.svg)](https://pypi.org/project/kryptospy)
[![Visitors](https://visitor-badge.laobi.icu/badge?page_id=yasserbdj96.kryptospy&format=true)](https://github.com/yasserbdj96/kryptospy)
[![Open Source](https://img.shields.io/badge/Open%20Source-%E2%99%A5-red)](https://github.com/yasserbdj96/kryptospy)
[![Stars](https://img.shields.io/github/stars/yasserbdj96/kryptospy?color=red)](https://github.com/yasserbdj96/kryptospy)
[![Forks](https://img.shields.io/github/forks/yasserbdj96/kryptospy?color=red)](https://github.com/yasserbdj96/kryptospy)
[![Watching](https://img.shields.io/github/watchers/yasserbdj96/kryptospy?label=Watchers&color=red&style=flat-square)](https://github.com/yasserbdj96/kryptospy)
![GitHub contributors](https://img.shields.io/github/contributors/yasserbdj96/kryptospy)
![GitHub closed issues](https://img.shields.io/github/issues-closed/yasserbdj96/kryptospy)
![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/yasserbdj96/kryptospy)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/yasserbdj96/kryptospy)
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/yasserbdj96/kryptospy)
[![GitHub license](https://img.shields.io/github/license/yasserbdj96/kryptospy)](https://github.com/yasserbdj96/kryptospy)
[![Join the chat at https://gitter.im/yasserbdj96/kryptospy](https://badges.gitter.im/yasserbdj96/kryptospy.svg)](https://gitter.im/yasserbdj96/kryptospy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
<br>
<h2>Python Package Installation:</h2>
```
# install from pypi:
❯ pip install kryptospy
# local install:
❯ git clone https://github.com/yasserbdj96/kryptospy.git
❯ cd kryptospy
❯ sudo python setup.py install
# uninstall:
❯ pip uninstall kryptospy
```
<br>
<h2>Run without installation:</h2>
```
# Dwonload:
❯ git clone https://github.com/yasserbdj96/kryptospy.git
❯ cd kryptospy
# default run on any os:
❯ python3 run.py -c <CONDITION*> -p <PASSWORD*> -t <TEXT*>
# Run with Makefile:
❯ make run con="<CONDITION*>" pass="<PASSWORD*>" text="<TEXT*>"
# * = All inputs must be entered.
# PASSWORD = The password used for encrypt your text.
# TEXT = The text to be encrypted.
# CONDITION = The nature of the process is encryption or decryption "encode/decode".
```
<br>
<h2>Script Usage:</h2>
```python
from kryptospy import *
#For encryption
p1=kryptospy("<PASSWORD*>","<TEXT*>").enc()
print(p1)
#To decrypt
p2=kryptospy("<PASSWORD*>","<ENCRYPTED_TEXT*>").dec()
print(p2)
# * = All inputs must be entered.
```
<br>
<h2>Script Examples:</h2>
```python
from kryptospy import *
# Example:1
#For encryption
p1=kryptospy("123","Example:1").enc()
print(p1)
#To decrypt
p2=kryptospy("123",p1).dec()
print(p2)
```
<br>
<h2>Changelog History:</h2>
<a href="https://raw.githubusercontent.com/yasserbdj96/kryptospy/main/CHANGELOG">Click to See changelog History</a>
<br>
<h2>Development By:</h2>
Developer / Author: [yasserbdj96](https://github.com/yasserbdj96)
<br>
<h2>License:</h2>
<p>The content of this repository is bound by the following <a href="https://raw.githubusercontent.com/yasserbdj96/kryptospy/main/LICENSE">LICENSE</a>.</p>
<br>
<h2>Support:</h2>
<p>If you like `kryptospy` and want to see it improve furthur or want me to create intresting projects , You can buy me a coffee </p>
<div align="center">
<a href="https://ko-fi.com/yasserbdj96">
<img src="https://ko-fi.com/img/githubbutton_sm.svg" alt="kryptospy by yasserbdj96">
</a><br>
BTC: bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9<br>
</div>
<br><br>
<p align="center">
<samp>
<a href="https://yasserbdj96.github.io/">website</a> .
<a href="https://github.com/yasserbdj96">github</a> .
<a href="https://gitlab.com/yasserbdj96">gitlab</a> .
<a href="https://www.linkedin.com/in/yasserbdj96">linkedin</a> .
<a href="https://twitter.com/yasserbdj96">twitter</a> .
<a href="https://instagram.com/yasserbdj96">instagram</a> .
<a href="https://www.facebook.com/yasserbdj96">facebook</a> .
<a href="https://www.youtube.com/@yasserbdj96">youtube</a> .
<a href="https://pypi.org/user/yasserbdj96">pypi</a> .
<a href="https://hub.docker.com/u/yasserbdj96">docker</a> .
<a href="https://t.me/yasserbdj96">telegram</a> .
<a href="https://gitter.im/yasserbdj96/yasserbdj96">gitter</a> .
<a href="mailto:yasser.bdj96@gmail.com">e-mail</a> .
<a href="https://ko-fi.com/yasserbdj96">sponsor</a>
</samp>
</p>
Raw data
{
"_id": null,
"home_page": "",
"name": "kryptospy",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.x.x",
"maintainer_email": "",
"keywords": "python,encoding,protection,encryption,text,decoder,decoding,password,python3,coding,encode,decryption,yasserbdj96",
"author": "yasserbdj96",
"author_email": "yasser.bdj96@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/ba/23/13e0a62e91900c65c745428c4b68724d8449082e976d8c51d20975599c05/kryptospy-0.0.2.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n <h1>kryptospy</h1>\n <strong>Encrypting texts with a password, with the impossibility of returning to the original text without the password.</strong>\n <br><br>\n</div>\n\n[![Test on Ubuntu latest](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-linux.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-linux.yml)\n[![Test on Windows latest](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-win.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-win.yml)\n[![Test on MacOS latest](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-mac.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/python-app-on-mac.yml)\n[![pypi-setup](https://github.com/yasserbdj96/kryptospy/actions/workflows/pypi-setup.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/pypi-setup.yml)\n![Upload to PYPI](https://github.com/yasserbdj96/kryptospy/actions/workflows/pipup.yml/badge.svg)\n[![Mirror and run GitLab CI](https://github.com/yasserbdj96/kryptospy/actions/workflows/push-gitLab.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/push-gitLab.yml)\n[![Deploy static content to Pages](https://github.com/yasserbdj96/kryptospy/actions/workflows/pages.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/pages.yml)\n[![CodeQL](https://github.com/yasserbdj96/kryptospy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/yasserbdj96/kryptospy/actions/workflows/codeql-analysis.yml)\n[![CodeFactor](https://www.codefactor.io/repository/github/yasserbdj96/kryptospy/badge)](https://www.codefactor.io/repository/github/yasserbdj96/kryptospy)\n[![Supported Versions](https://img.shields.io/pypi/pyversions/kryptospy.svg)](https://pypi.org/project/kryptospy) \n[![Visitors](https://visitor-badge.laobi.icu/badge?page_id=yasserbdj96.kryptospy&format=true)](https://github.com/yasserbdj96/kryptospy)\n[![Open Source](https://img.shields.io/badge/Open%20Source-%E2%99%A5-red)](https://github.com/yasserbdj96/kryptospy)\n[![Stars](https://img.shields.io/github/stars/yasserbdj96/kryptospy?color=red)](https://github.com/yasserbdj96/kryptospy)\n[![Forks](https://img.shields.io/github/forks/yasserbdj96/kryptospy?color=red)](https://github.com/yasserbdj96/kryptospy)\n[![Watching](https://img.shields.io/github/watchers/yasserbdj96/kryptospy?label=Watchers&color=red&style=flat-square)](https://github.com/yasserbdj96/kryptospy)\n![GitHub contributors](https://img.shields.io/github/contributors/yasserbdj96/kryptospy)\n![GitHub closed issues](https://img.shields.io/github/issues-closed/yasserbdj96/kryptospy)\n![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/yasserbdj96/kryptospy)\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/yasserbdj96/kryptospy)\n![GitHub commit activity](https://img.shields.io/github/commit-activity/m/yasserbdj96/kryptospy)\n[![GitHub license](https://img.shields.io/github/license/yasserbdj96/kryptospy)](https://github.com/yasserbdj96/kryptospy)\n[![Join the chat at https://gitter.im/yasserbdj96/kryptospy](https://badges.gitter.im/yasserbdj96/kryptospy.svg)](https://gitter.im/yasserbdj96/kryptospy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n<br>\n<h2>Python Package Installation:</h2>\n\n```\n# install from pypi:\n\u276f pip install kryptospy\n\n# local install:\n\u276f git clone https://github.com/yasserbdj96/kryptospy.git\n\u276f cd kryptospy\n\u276f sudo python setup.py install\n\n# uninstall:\n\u276f pip uninstall kryptospy\n```\n\n<br>\n<h2>Run without installation:</h2>\n\n```\n# Dwonload:\n\u276f git clone https://github.com/yasserbdj96/kryptospy.git\n\u276f cd kryptospy\n\n# default run on any os:\n\u276f python3 run.py -c <CONDITION*> -p <PASSWORD*> -t <TEXT*>\n\n# Run with Makefile:\n\u276f make run con=\"<CONDITION*>\" pass=\"<PASSWORD*>\" text=\"<TEXT*>\"\n\n# * = All inputs must be entered.\n# PASSWORD = The password used for encrypt your text.\n# TEXT = The text to be encrypted.\n# CONDITION = The nature of the process is encryption or decryption \"encode/decode\".\n```\n\n<br>\n<h2>Script Usage:</h2>\n\n```python\nfrom kryptospy import *\n#For encryption\np1=kryptospy(\"<PASSWORD*>\",\"<TEXT*>\").enc()\nprint(p1)\n \n#To decrypt\np2=kryptospy(\"<PASSWORD*>\",\"<ENCRYPTED_TEXT*>\").dec()\nprint(p2)\n\n# * = All inputs must be entered.\n\n```\n\n<br>\n<h2>Script Examples:</h2>\n\n```python\nfrom kryptospy import *\n# Example:1\n#For encryption\np1=kryptospy(\"123\",\"Example:1\").enc()\nprint(p1)\n \n#To decrypt\np2=kryptospy(\"123\",p1).dec()\nprint(p2)\n\n```\n\n<br>\n<h2>Changelog History:</h2>\n<a href=\"https://raw.githubusercontent.com/yasserbdj96/kryptospy/main/CHANGELOG\">Click to See changelog History</a>\n\n\n<br>\n<h2>Development By:</h2>\n\nDeveloper / Author: [yasserbdj96](https://github.com/yasserbdj96)\n\n<br>\n<h2>License:</h2>\n<p>The content of this repository is bound by the following <a href=\"https://raw.githubusercontent.com/yasserbdj96/kryptospy/main/LICENSE\">LICENSE</a>.</p>\n\n<br>\n<h2>Support:</h2>\n<p>If you like `kryptospy` and want to see it improve furthur or want me to create intresting projects , You can buy me a coffee </p>\n<div align=\"center\">\n <a href=\"https://ko-fi.com/yasserbdj96\">\n <img src=\"https://ko-fi.com/img/githubbutton_sm.svg\" alt=\"kryptospy by yasserbdj96\">\n </a><br>\n BTC: bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9<br>\n</div>\n\n<br><br>\n\n<p align=\"center\">\n <samp>\n <a href=\"https://yasserbdj96.github.io/\">website</a> .\n <a href=\"https://github.com/yasserbdj96\">github</a> .\n <a href=\"https://gitlab.com/yasserbdj96\">gitlab</a> .\n <a href=\"https://www.linkedin.com/in/yasserbdj96\">linkedin</a> .\n <a href=\"https://twitter.com/yasserbdj96\">twitter</a> .\n <a href=\"https://instagram.com/yasserbdj96\">instagram</a> .\n <a href=\"https://www.facebook.com/yasserbdj96\">facebook</a> .\n <a href=\"https://www.youtube.com/@yasserbdj96\">youtube</a> .\n <a href=\"https://pypi.org/user/yasserbdj96\">pypi</a> .\n <a href=\"https://hub.docker.com/u/yasserbdj96\">docker</a> .\n <a href=\"https://t.me/yasserbdj96\">telegram</a> .\n <a href=\"https://gitter.im/yasserbdj96/yasserbdj96\">gitter</a> .\n <a href=\"mailto:yasser.bdj96@gmail.com\">e-mail</a> .\n <a href=\"https://ko-fi.com/yasserbdj96\">sponsor</a>\n </samp>\n</p>\n\n\n",
"bugtrack_url": null,
"license": "Apache Software License",
"summary": "Encrypting texts with a password, with the impossibility of returning to the original text without the password.",
"version": "0.0.2",
"split_keywords": [
"python",
"encoding",
"protection",
"encryption",
"text",
"decoder",
"decoding",
"password",
"python3",
"coding",
"encode",
"decryption",
"yasserbdj96"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0e077678303375008ad202bec63d983d46ffdb4f64cda980e51569af67d77742",
"md5": "3506bbf939153941c9109f61173dcd16",
"sha256": "ad64b7a2d798962e2172edcde78d01eb0d45d44b3cf81b8a37733cd9eb30ae00"
},
"downloads": -1,
"filename": "kryptospy-0.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3506bbf939153941c9109f61173dcd16",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.x.x",
"size": 9909,
"upload_time": "2023-01-29T23:59:27",
"upload_time_iso_8601": "2023-01-29T23:59:27.922038Z",
"url": "https://files.pythonhosted.org/packages/0e/07/7678303375008ad202bec63d983d46ffdb4f64cda980e51569af67d77742/kryptospy-0.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba2313e0a62e91900c65c745428c4b68724d8449082e976d8c51d20975599c05",
"md5": "0ed54abf02b9d51cc2c7ee33f72d5c11",
"sha256": "16c187e61ffc9679a2630639df70beccc62dd66ab6000398701e86fb1abd5ba3"
},
"downloads": -1,
"filename": "kryptospy-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "0ed54abf02b9d51cc2c7ee33f72d5c11",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.x.x",
"size": 10346,
"upload_time": "2023-01-29T23:59:29",
"upload_time_iso_8601": "2023-01-29T23:59:29.066413Z",
"url": "https://files.pythonhosted.org/packages/ba/23/13e0a62e91900c65c745428c4b68724d8449082e976d8c51d20975599c05/kryptospy-0.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-01-29 23:59:29",
"github": false,
"gitlab": false,
"bitbucket": false,
"lcname": "kryptospy"
}