/ScrambledLibrary

A library implementation of a non-published repo called Scrambled, a program which takes a sentence and turns it into a completely new one using 3 methods.

Primary LanguagePythonOtherNOASSERTION

ScrambledLibrary

ScrambledLibrary is a Python package that transforms sentences into new ones using three unique scrambling methods.

Installation

Install ScrambledLibrary using pip:

pip install git+https://github.com/The-Hipnotist/ScrambledLibrary.git

Usage

from ScrambledLibrary.scrambled_library import deviled_scramble, sunnysideup_scramble, doubleyolk_scramble

text = "The quick brown fox jumps over the lazy dog"

print(sunnysideup_scramble(text))

Scrambling Methods

There are currently 3 you can use: Deviled, SunnySideUp, or Doubleyolk. To use them, just import the corresponding method. Each of them are different in it's own way, give each of them a try!

Optional File Output

Each method accepts an output_to_file parameter:

deviled_scramble(text, output_to_file=True)

This will save the result to a text file (e.g., deviled_output.txt).

Author

GitHub: @The-Hipnotist