Make awesome Word Search puzzles.
Project description
Word-Search-Generator
Word-Search-Generator is a Python module for generating fun Word Search Puzzles.
Like most of my programming endeavors, Word-Search-Generator was born out of necessity. I needed an easy way to generate a bunch of word search puzzles for kid's food menus at the day job.
🤦♂️ Does the world need this? Probably not.
⏰ Did I spend way too much time on it? Yep!
✅ Does it come in handy? Heck yeah!
👍 Did I have fun making it? Absofreakinglutly!
Installation
Install Word-Search-Generator with pip
:
$ pip install word-search-generator
Usage
Just import the WordSearch class from the package, supply it with a list of words and you're set. 🧩
from word_search_generator import WordSearch
puzzle = WordSearch("dog, cat, pig, horse, donkey, turtle, goat, sheep")
👀 Wanna see it? puzzle.show()
** WORD SEARCH **
B T Z L K J C G E H
X O N D G S W X M B
W H P V O E H Q D N
K G D I S G D C J G
C J Y R G W F A H O
M K O X N U K T F A
C H T U R T L E I T
D O N K E Y H C R M
V R T U X G O L W H
H J D G S H E E P Y
Find these words: CAT, DOG, DONKEY, GOAT, HORSE, PIG, SHEEP, TURTLE
* Words can go NE, E, SE, and S.
Puzzle words can be provided as a string variable or directly as above. Words can be separated by spaces, commas, or new lines and Word-Search-Generator will sort them out for you.
🤷♂️ Can't finding all the words? Try, puzzle.key
.
{'TURTLE': {'start': (7, 3), 'dir': 'E'},
'PIG': {'start': (3, 3), 'dir': 'SE'},
'HORSE': {'start': (7, 2), 'dir': 'NE'},
'GOAT': {'start': (4, 10), 'dir': 'S'},
'DOG': {'start': (2, 4), 'dir': 'SE'},
'DONKEY': {'start': (8, 1), 'dir': 'E'},
'SHEEP': {'start': (10, 5), 'dir': 'E'},
'CAT': {'start': (4, 8), 'dir': 'S'}}
You can also show the key with the puzzle with puzzle.show(key=True)
.
** WORD SEARCH **
B T Z L K J C G E H
X O N D G S W X M B
W H P V O E H Q D N
K G D I S G D C J G
C J Y R G W F A H O
M K O X N U K T F A
C H T U R T L E I T
D O N K E Y H C R M
V R T U X G O L W H
H J D G S H E E P Y
Find these words: CAT, DOG, DONKEY, GOAT, HORSE, PIG, SHEEP, TURTLE
* Words can go NE, E, SE, and S.
Answer Key: CAT S @ (4, 8), DOG SE @ (2, 4), DONKEY E @ (8, 1), GOAT S @ (4, 10), HORSE NE @ (7, 2), PIG SE @ (3, 3), SHEEP E @ (10, 5), TURTLE E @ (7, 3)
ℹ️ The answer key uses a 1-based index as that's more familiar with non-programmers. First number is the row, second is the column. Directions are cardinal from first letter to last.
🍰 Too easy? Up the difficulty level with puzzle.level = 3
.
** WORD SEARCH **
Q B O I U A D G I P S I L N
V G U Z G O N C V C O Q D T
R I S B G O D U W M G V K R
K X O H W P A Z D J U H E T
H T B K R Y K T O X N O L Y
F I G E P D Q Z N W Y R T A
T B R H W R M U K O J S R S
O S X N F I J W E N X E U W
G A U S X T G N Y V A F T Y
I T O W J I V P A T J G O W
O B I Y D S E C L W C V T R
I H E O Q E P F J A K H C I
F Y W Z H Z Y L T L R U T A
I Z U S T M Q V O K W F E F
Find these words: CAT, DOG, DONKEY, GOAT, HORSE, PIG, SHEEP, TURTLE
* Words can go N, NE, E, SE, S, SW, W, and NW.
😓 Too hard? Go the easy route with puzzle.level = 1
.
Settings
Word-Search-Generator offers two main options for puzzle generation, level
and size
.
# Set the difficulty level to 2
puzzle.level = 2
# Set the puzzle size to 25
puzzle.size = 25
It's easy to set setting when creating a puzzle too...
words = "dog, cat, pig, horse, donkey, turtle, goat, sheep"
puzzle = WordSearch(words, level=3, size=25)
⚠️ Anytime puzzle settings are adjusted, an entirely new puzzle will be generated!
Difficulty Level
The difficulty level controls whether words can go forward or backward, the cardinal direction they can go, and the size of the puzzle (unless size
is explicitly set). Difficulty level defaults to 2.
- Level 1 (Easy): Words can go forward in directions EAST (E), or SOUTH (S). Puzzle size is small by default.
- Level 2 (Intermediate): Words can go forward in directions NORTHEAST (NE), EAST (E), SOUTHEAST (SE), or (S). Puzzle size is medium by default.
- Level 3 (Expert): Words can go forward and backward in directions NORTH (N), NORTHEAST (NE), EAST (E), SOUTHEAST (SE), SOUTH (S), SOUTHWEST (SW), WEST (W), or NORTHWEST (NW). Puzzle size is large by default.
Puzzle Size
By default, the puzzle (characters) size is determined by the amount of words provided and the difficulty level. Need a puzzle an exact size, override the default with puzzle.size = x
(integer >= 10). All puzzles are square so size` will be the width and height.
** WORD SEARCH **
P I G O Z D U M Y D A F C N
T F L Q T P X I Q O W L A W
B P D K U Y M W Z N G S T B
L C L O R O Q G A K O H U P
M G S Z T J R N U E A E M H
Y T R I L W E Q S Y T E F N
I N K U E X D C U D X P B A
B F B F P V K I J P O E Y S
A L N I L H F G R S W Q M R
X Y Q E S C V W B E J X F K
Z D S T A J E X U C Y M I J
L I H G X W U N S D O G K E
S W D W C D G K A U N B T H
P M F V T W J L H O R S E P
Find these words: CAT, DOG, DONKEY, GOAT, HORSE, PIG, SHEEP, TURTLE
* Words can go E, and S.
⚠️ All provided words may not fit a specified puzzle size!
Editing Puzzle Words
Word-Search-Generator makes it easy to edit the words in the current puzzle.
🤦♂️ Leave out a word?
puzzle.add_words("new, words, to, add")
❌ Need to remove a word?
puzzle.remove_words("words, to, delete")
🗑 Wanna replace all words?
puzzle.replace_words("replace, current, words, with, new, words")
⚠️ When words are added, removed, or replaced, an entirely new puzzle will be generated!
Saving Puzzles
Word-Search-Generator can save puzzles as PDF and CSV files.
💾 Save a PDF to a specific directory with default filename.
puzzle.save(path="~/Desktop", format='pdf')
'.../Desktop/Word Search 2021-01-01T000000.pdf'
💾 Save a CSV with to the current directory with a specific filename.
puzzle.save(path="puzzle.csv", format='csv')
'.../projects/word-search/puzzle.csv'
ℹ️ Using the Word-Search-Generator CLI Integration and redirections in your terminal you can also save the puzzle to a text file.
$ word-search -w dog, cat, pig, horse -k > puzzle.txt
📁 View Sample Files: Word-Search PDF, Word-Search CSV, Word-Search TXT
CLI Integration
Word-Search-Generator works in your terminal too! 🙌
$ word-search -h
usage: word-search [-h] [-w WORDS [WORDS ...]] [-l {1,2,3}] [-s SIZE] [-k] [-t] [-e {csv,pdf}] [-p PATH]
Generate a Word Search Puzzles!
optional arguments:
-h, --help show this help message and exit
-w WORDS [WORDS ...], --words WORDS [WORDS ...]
words to hide in the puzzle
-l {1,2,3}, --level {1,2,3}
difficulty level (1) beginner, (2) intermediate, (3) expert
-s SIZE, --size SIZE puzzle size >=10
-k, --key show answer key
-t, --tabs use tabs as character separator
-e {csv,pdf}, --export {csv,pdf}
export puzzle as 'csv' or 'pdf' file
-p PATH, --path PATH export path for '-e', '--export' flag
💻 Generate a puzzle.
$ word-search -w works, in, the, terminal, too
💻 Generate a puzzle 20 characters wide with difficulty level 1.
$ word-search -w works, in, the, terminal, too -l 1 -s 20
💻 Generate a puzzle and save as a pdf.
$ word-search -w works, in, the, terminal, too -e pdf -p ~/Desktop
💻 Generate a puzzle and save as a csv.
$ word-search -w works, in, the, terminal, too -e csv -p ~/Desktop/puzzle.csv
ℹ️ You can also use words from a file...
$ word-search -w "$(cat words.txt)"
** WORD SEARCH **
D Y J I A L K N U I X I
E F K S E P A R A T E U
I W U W M T F X L D P S
Z O L F S A R Z E C Y O
Y N V B R P J G Y R J F
D B G K V O B K A Q O B
X M F N Y R M S J Z H W
I J K E F V D A X T U X
X Q C Y X R T I E W D V
Z N V T O B S L X R K C
Q Y U W C L I T V A J B
N P R L Y F G R Q G O R
Find these words: FILE, FROM, SEPARATE, WORDS
* Words can go NE, E, SE, and S.
Resources
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file word-search-generator-1.0.0.tar.gz
.
File metadata
- Download URL: word-search-generator-1.0.0.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cab5e1c459d48ec76d5daf6f5c1f047da978b496ae4781c1e8207aac416d50be |
|
MD5 | 8061b7008d088fc85b13dbb6a6a152b6 |
|
BLAKE2b-256 | 45dd1d51c69cb88727e9a427b3d6b7567af001b363ca498175e327308f2d2f3c |
File details
Details for the file word_search_generator-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: word_search_generator-1.0.0-py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bcf8f74437c225043d2b14e4d3f3124bd01874215196f5f11abc558f2e618ca |
|
MD5 | 6694885f8290ca35e22ecae52dcacf8b |
|
BLAKE2b-256 | 595dfd644dfc9abe8e057dd2d9403b58270c6f7fd394b2e07e5c6dad5824ff3f |