Added
- The `RandomWord` class which offers:
- Random word filtering by starting and ending letters, parts of speech, and
lengths.
- The `filter` method for filtering words.
- The `random_words` method to get a list of words.
- The `word` method to generate a random word.
- The `RandomSentence` method to generate random sentences (same as
`random_sentence` class in previous release).
- A documentation on Readthedocs.
Changed
- Changed the command line interface to be more efficient and styled it with the
help of Rich.
Removed
- The `random_word` class (wasn't pep 8 compliant, older functionality was
refactored into the `RandomWord` class).
- The `random_sentence` class was removed and renamed to the `RandomSentence`
class.