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 crossywords 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.4.tar.gz
(4.7 kB
view hashes)
Built Distribution
Close
Hashes for crossywords-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b42f69ea13b83d0f4c1906ea8d10b03d6dcd14617d987598c3cd7edc1a02577f |
|
MD5 | 6ccff8eba6f6803416a7e769b7c247ef |
|
BLAKE2b-256 | 7286dfef82c5069d080b2440a316c3792cfc71cf4d526516bce74c492c495adf |