Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/conorsheehan1/caesar_cipher
Desktop app using tkinter to generate caesar ciphers
https://github.com/conorsheehan1/caesar_cipher
caesar-cipher cipher github-actions pipenv python tkinter
Last synced: about 1 month ago
JSON representation
Desktop app using tkinter to generate caesar ciphers
- Host: GitHub
- URL: https://github.com/conorsheehan1/caesar_cipher
- Owner: ConorSheehan1
- License: mit
- Created: 2016-07-21T20:31:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-23T16:26:43.000Z (10 months ago)
- Last Synced: 2024-04-13T16:04:10.722Z (9 months ago)
- Topics: caesar-cipher, cipher, github-actions, pipenv, python, tkinter
- Language: Python
- Homepage:
- Size: 66.4 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![Build Status](https://github.com/ConorSheehan1/caesar_cipher/workflows/ci/badge.svg)](https://github.com/ConorSheehan1/caesar_cipher/actions/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Python version](https://img.shields.io/badge/dynamic/yaml?url=https://raw.githubusercontent.com/ConorSheehan1/caesar_cipher/master/.github/workflows/ci.yml&label=python&query=$.jobs.build.strategy.matrix.python)](https://github.com/ConorSheehan1/caesar_cipher/blob/master/.github/workflows/ci.yml#L13)# Requirements
1. To run the app, all you need is python3 and tkinter. You can download them here: [https://www.python.org/downloads/](https://www.python.org/downloads/)# Usage
Run ```python3 src/ui.py```. You should see something like this:
![UI image](.github/images/Capture.PNG)The program ignores everything other than characters in the Latin alphabet ```[a-zA-Z]```.
It is possible to shift the text either direction. For example shifting text back 1 letter is equivalent to moving the text forward 25 letters. This also makes it easier to reverse ciphers. If you already know how many letters a piece of text is shifted forward, put a minus in front of that number to unscramble the text.
![UI image](.github/images/reverse.PNG)# Development
Installation:
```
pip install pipenv
pipenv install --dev
```Tests:
```pipenv run tests```Linter:
```pipenv run lint```