├── .gitignore ├── Arial Bold.ttf ├── Pipfile.lock ├── README.md ├── __init__.py ├── xword_example_large.png ├── xword_example_small.png └── xword_generator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janeymunoz/crossword_generator/HEAD/.gitignore -------------------------------------------------------------------------------- /Arial Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janeymunoz/crossword_generator/HEAD/Arial Bold.ttf -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janeymunoz/crossword_generator/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janeymunoz/crossword_generator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xword_example_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janeymunoz/crossword_generator/HEAD/xword_example_large.png -------------------------------------------------------------------------------- /xword_example_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janeymunoz/crossword_generator/HEAD/xword_example_small.png -------------------------------------------------------------------------------- /xword_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janeymunoz/crossword_generator/HEAD/xword_generator.py --------------------------------------------------------------------------------