ScrambledLibrary is a Python package that transforms sentences into new ones using three unique scrambling methods.
Install ScrambledLibrary using pip:
pip install git+https://github.com/The-Hipnotist/ScrambledLibrary.git
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))
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!
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
).
GitHub: @The-Hipnotist