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

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)

Awesome Lists containing this project

README

        

#+TITLE: rhyme.py
#+SUBTITLE: Get a list of words that rhyme in English, a CLI utility

There'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 sh

rhyme [word]

# or

rhyme.py [word]

#+end_src