https://github.com/tigger04/rhyme-cli
Get words that rhyme, in English, on the CLI (written in Python)
https://github.com/tigger04/rhyme-cli
Last synced: about 1 month ago
JSON representation
Get words that rhyme, in English, on the CLI (written in Python)
- Host: GitHub
- URL: https://github.com/tigger04/rhyme-cli
- Owner: tigger04
- License: mit
- Created: 2024-08-04T11:04:07.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-01-05T00:25:48.000Z (4 months ago)
- Last Synced: 2025-03-06T12:11:24.443Z (about 2 months ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+TITLE: rhyme.py
#+SUBTITLE: Get a list of words that rhyme in English, a CLI utilityThere's a bash script here that uses the Datamuse API, and a Python script using the CMU Pronouncing Dictionary. The Python script has fairly mixed results.
* Python script Installation
#+begin_src sh
git clone https://github.com/tigger04/rhyme-cli.git rhyme-cli
cd rhyme-cli
python3 -m virtualenv .
python3 -m pip install -r requirements.txt
#+end_src* Bash script requirements
- jq
- curl* Usage
#+begin_src shrhyme [word]
# or
rhyme.py [word]
#+end_src