Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.
BSD 3-Clause "New" or "Revised" License
8.76k
stars
1.58k
forks
source link
Incorrect plural of quiz (gives quizs not quizzes) #271
Open
tringham opened 5 years ago
In [2]: pattern.en.pluralize("quiz") Out[2]: 'quizs'
Should be quizzes - as the singularize method does know
In [3]: pattern.en.singularize("quizzes") Out[3]: 'quiz'