Skip to content

Tools for finding rhymes and making poems

Notifications You must be signed in to change notification settings

qpwo/python-rhyme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Rhyme

screenshot

This is a simple set of tools for grabbing words with a certain number of syllables or words that rhyme, etc.

Example program example.py that uses code:

import rhyme

print(rhyme.makeLimerick().lower())

print("Beware of the devil.")
for word in rhyme.getRhymes("DEVIL"):
  print("He will make you " + word.lower() + '.')

Then of course you can run it with python3 example.py in a terminal.

rhyme.py is self-documenting.

Phonetic dictionary obtained from here.

About

Tools for finding rhymes and making poems

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages