pycipher


Namepycipher JSON
Version 0.5.2 PyPI version JSON
download
home_pagehttps://github.com/jameslyons/pycipher
SummarySeveral simple cipher algorithms
upload_time2016-07-14 05:12:51
maintainer
docs_urlNone
authorJames Lyons
requires_pythonNone
licenseUNKNOWN
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pycipher
========

Common classical ciphers implemented in Python.
Documentation is available at http://pycipher.readthedocs.io/en/master/ .

Install
-------

::

    pip install git+git://github.com/jameslyons/pycipher


Example usage
-------------

::

    >>> from pycipher import ADFGVX
    >>> adfgvx = ADFGVX(key='PH0QG64MEA1YL2NOFDXKR3CVS5ZW7BJ9UTI8', keyword='GERMAN')
    >>> adfgvx.encipher("Hello world!")
    'FVFDAGXAFFFFGFAGADFG'
    >>> adfgvx.decipher(_)
    'HELLOWORLD'


Feedback
--------

The code is hosted on GitHub: https://github.com/jameslyons/pycipher

If you find any bugs make an issue or create a pull request.

To run the test suite::

    python setup.py test
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jameslyons/pycipher",
    "name": "pycipher",
    "maintainer": "",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "",
    "keywords": "",
    "author": "James Lyons",
    "author_email": "james.lyons0@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/44/8f/765d9889f76b21bf5327bea518786647e48bec1295a2478dd54e8efdb85d/pycipher-0.5.2.zip",
    "platform": "UNKNOWN",
    "description": "pycipher\r\n========\r\n\r\nCommon classical ciphers implemented in Python.\r\nDocumentation is available at http://pycipher.readthedocs.io/en/master/ .\r\n\r\nInstall\r\n-------\r\n\r\n::\r\n\r\n    pip install git+git://github.com/jameslyons/pycipher\r\n\r\n\r\nExample usage\r\n-------------\r\n\r\n::\r\n\r\n    >>> from pycipher import ADFGVX\r\n    >>> adfgvx = ADFGVX(key='PH0QG64MEA1YL2NOFDXKR3CVS5ZW7BJ9UTI8', keyword='GERMAN')\r\n    >>> adfgvx.encipher(\"Hello world!\")\r\n    'FVFDAGXAFFFFGFAGADFG'\r\n    >>> adfgvx.decipher(_)\r\n    'HELLOWORLD'\r\n\r\n\r\nFeedback\r\n--------\r\n\r\nThe code is hosted on GitHub: https://github.com/jameslyons/pycipher\r\n\r\nIf you find any bugs make an issue or create a pull request.\r\n\r\nTo run the test suite::\r\n\r\n    python setup.py test",
    "bugtrack_url": null,
    "license": "UNKNOWN",
    "summary": "Several simple cipher algorithms",
    "version": "0.5.2",
    "project_urls": {
        "Download": "UNKNOWN",
        "Homepage": "https://github.com/jameslyons/pycipher"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "448f765d9889f76b21bf5327bea518786647e48bec1295a2478dd54e8efdb85d",
                "md5": "226207ee9d3fc43220457a94735ed0be",
                "sha256": "e5b3b3ef734604da09e1642f9c496a75df850668aee5b18818a3988eec4cd71b"
            },
            "downloads": -1,
            "filename": "pycipher-0.5.2.zip",
            "has_sig": false,
            "md5_digest": "226207ee9d3fc43220457a94735ed0be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 45497,
            "upload_time": "2016-07-14T05:12:51",
            "upload_time_iso_8601": "2016-07-14T05:12:51.907436Z",
            "url": "https://files.pythonhosted.org/packages/44/8f/765d9889f76b21bf5327bea518786647e48bec1295a2478dd54e8efdb85d/pycipher-0.5.2.zip",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2016-07-14 05:12:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jameslyons",
    "github_project": "pycipher",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pycipher"
}
        
Elapsed time: 0.31165s