Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.25 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.25 KB

PyCaesarCrypt

Build Status

PyCaesarCrypt is a demo repository for showing the usage of TravisCI with pytest and implements a python module to encrypt/decrypt things using the caesar chiffre and the special form ROT13.

Installation & Usage

git clone https://github.com/martinseener/pycaesarcrypt.git

From your python script import pycaesarcrypt using

from <path> import pycaesarcrypt

# Instantiate the object
pycc = pycaesarcrypt()
result = pycc.encrypt('Text', 14)

Contributing and License

If you want to help me out, you're very welcome.

  1. Check for open issues or open a new issue to start a discussion around a feature idea or a bug.
  2. Fork the repository on Github and make your changes on your own development branch (just branch off of master).
  3. Send a pull request (with the master branch as the target).

Changelog

See CHANGELOG.md

License

PyCaesarCrypt is available under the MIT license. See the LICENSE file for more info.