Skip to main content

AntiSpam

downloads version supported license

Bayesian anti-spam classifier written in Python.

PyPI: pypi.python.org/pypi/antispam

Installation

pip install antispam

Usage

Use the built-in training model provided by antispam:

import antispam

antispam.score("Cheap shoes for sale at DSW shoe store!")
# => 0.9657724517163143

antispam.isspam("Cheap shoes for sale at DSW shoe store!")
# => True

antispam.score("Hi mark could you please send me a copy of your machine learning homework? thanks")
# => 0.0008064840568731558

antispam.score("Hi mark could you please send me a copy of your machine learning homework? thanks")
# => False

Train your own modle.

import antispam

d = antispam.Detector("my_model.dat")

d.train("Super cheap octocats for sale at GitHub.", True)
d.train("Hi John, could you please come to my office by 3pm? Ding", False)

msg1 = "Cheap shoes for sale at DSW shoe store!"
d.score(msg1)
# => 0.9999947825633266

d.is_spam(msg1)
# => True

msg2 = "Hi mark could you please send me a copy of your machine learning homework? thanks"
d.score(msg2)
# => 4.021280114849398e-08

d.is_spam(msg2)
# => False

License

MIT Licenses

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

antispam-0.0.5.tar.gz (3.5 kB view details)

Uploaded Source

File details

Details for the file antispam-0.0.5.tar.gz.

File metadata

  • Download URL: antispam-0.0.5.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for antispam-0.0.5.tar.gz
Algorithm Hash digest
SHA256 8ea1d935129bb5bfde72411d989904ac22e2d1f64c17589916879e2fbf528d59
MD5 9646d6fece5ee6959fda6fd8ecb34ea6
BLAKE2b-256 70396b0482d60f5e60da7a939ad383371b24bd38597c0a4e403bff72cd5cbdf1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page