Metadata-Version: 2.1
Name: offensivetext
Version: 1.3.9
Summary: Filter out racism, sexism and sexual content with pretrained models
Home-page: https://github.com/MehmetMuratKafadaroglu/offensivetext
Author: Mehmet Kafadaroglu
Author-email: mehmetkafadaroglu@gmail.com
License: BSD 2-clause
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
Requires-Dist: sklearn
Requires-Dist: scikit-learn
Requires-Dist: numpy
Requires-Dist: nltk
Requires-Dist: pandas
Requires-Dist: scipy
Requires-Dist: matplotlib

#Usage:
```python
from offensivetext.text_classify import *
classifier = RacismFilter()
prediction = classifier('people are bad', 'drugs are good')
print(prediction)
```

