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
- Host: GitHub
- URL: https://github.com/lynn/reclue
- Owner: lynn
- License: mit
- Created: 2020-08-18T15:29:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-18T15:41:01.000Z (almost 5 years ago)
- Last Synced: 2025-02-14T08:17:19.941Z (3 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```