A SMS spam classifier created for the Data Mining class on UNIVERSIDADE FEDERAL DE SANTA CATARINA
The project aims to be a tool for SMS classification on the server side.
To build the safe_sms library, enter the project root and paste the following command:
python setup.py sdist bdist_wheel
To check if the build worked as expected, you can run the following command:
twine check dist/*
To install the lib you need first to build the library. Once it's built, run the following command to install:
pip install dist/safe_sms-<current_version>-py3-none-any.whl
once it's installed, you can open python terminal and import the lib by typing:
from safe_sms import classifier
classifier.predict("that's an text example")