An open API service indexing awesome lists of open source software.

https://github.com/lynn/reclue

A Python script for editing the clues of .puz format crosswords
https://github.com/lynn/reclue

Last synced: about 1 month ago
JSON representation

A Python script for editing the clues of .puz format crosswords

Awesome Lists containing this project

README

        

# reclue.py

A Python command-line tool for editing the clues of `.puz` format crosswords.

It needs Python 3.6 or higher, and [puzpy](https://github.com/alexdej/puzpy) by Alex Dejarnatt. (`pip install puzpy`)

## Usage

```bash
# Extract clues from a puzzle:
./reclue.py extract my.puz > clues.txt

# Edit them:
nano clues.txt

# Inject the edited clues:
./reclue.py inject my.puz clues.txt > reclued.puz
```