Metadata-Version: 2.1
Name: PyWordSearch
Version: 1.0.0
Summary: A python package that solves word searches.
Home-page: https://github.com/clarkthepooh/pysearch/
Author: Clark Mattoon
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# PySearch

A Python package that solves word searches

## Usage

Create Word search, add words, dolve

'''
search = '''(multiline string of letters, aka the actual word search)'''

words = [list of words]

my_search = PySearch.WordSearch(search)
my_search.Words(words)
final_search = my_search.solve()

for x in final_search:
	print(x)
'''

