Skip to main content

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.3.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

crossywords-0.0.3-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page