Word matrix generator that creates the word matrix in a way to have multiple words in one 5x5 matrix.
Project description
Crossy words: word matrix
Library that generates the word matrix in a way to have multiple words in one 5x5 matrix.
Available methods
getMatrix(lang="en")
Parametrs:
- lang - language of words in the matrix. Values: "en", "ru". By default - "en".
Result:
- a list of lists representing a 5x5 matrix
- a dictionary of coordinates of specific word {word: [coordinates in matrix]}
printMatrix(matrix)
- prints generated matrix
printWords(matrix)
- prints generated words with coordinates of letters in the matrix
Installation
pip install crossywords
Example
import crossy-words as cw
matrix, words = cw.getMatrix("en") # getting a matrix and words in it
cw.printMatrix(matrix) # printing matrix
print()
cw.printWords(words) # printing words in it
Output:
t a t s o
r h l k b
s o w k t
g a n h n
e t h i a
think - [[4, 1], [4, 2], [4, 3], [3, 4], [2, 3]]
thank - [[2, 4], [3, 3], [4, 4], [3, 4], [2, 3]]
own - [[2, 1], [2, 2], [3, 2]]
show - [[2, 0], [1, 1], [2, 1], [2, 2]]
talk - [[0, 2], [0, 1], [1, 2], [1, 3]]
start - [[0, 3], [0, 2], [0, 1], [1, 0], [0, 0]]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
crossywords-0.0.1.tar.gz
(4.7 kB
view hashes)
Built Distribution
Close
Hashes for crossywords-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22d838edb0a7d34adb9f05633bc4ba252998ea42d09bb45295e8d175d388f13c |
|
MD5 | 8a440441f0831f3974e3f46da874b670 |
|
BLAKE2b-256 | 8822cc4ecfdfe427424c4dbc6950ae2152fd99c6c2ec8849ef36105994bb0830 |