Skip to main content

A Python interface to the Akismet spam-filtering service.

Project description

CI status image

A Python interface to the Akismet spam-filtering service.

Two API clients are available from this library:

  • akismet.SyncClient is an Akismet API client which performs synchronous (blocking) HTTP requests to the Akismet web service.

  • akismet.AsyncClient is an Akismet API client which performs asynchronous (async/await/non-blocking) HTTP requests to the Akismet web service.

Aside from one being sync and the other async, the two clients expose identical APIs, and implement all methods of the Akismet web API.

To use this library, you will need to obtain an Akismet API key and register a site for use with the Akismet web service; you can do this at <https://akismet.com>. Once you have a key and corresponding registered site URL to use with it, place them in the environment variables PYTHON_AKISMET_API_KEY and PYTHON_AKISMET_BLOG_URL, and they will be automatically detected and used.

You can then construct a client instance and call its methods. For creating a long-lived API client instance, it’s recommended that you use the validated_client() constructor method, which will automatically validate your API key with the Akismet web service. For example, to check a submitted forum post for spam:

import akismet

akismet_client = akismet.SyncClient.validated_client()

if akismet_client.comment_check(
    user_ip=submitter_ip,
    comment_content=submitted_content,
    comment_type="forum-post",
    comment_author=submitter_name
):
    # This piece of content was classified as spam; handle it appropriately.

Or using the asynchronous client:

import akismet

akismet_client = await akismet.AsyncClient.validated_client()

if await akismet_client.comment_check(
    user_ip=submitter_ip,
    comment_content=submitted_content,
    comment_type="forum-post",
    comment_author=submitter_name
):
    # This piece of content was classified as spam; handle it appropriately.

You can also use either client class as a context manager. This does not require the validated_client() constructor, because your API key is validated on entering the with block.

import akismet

with akismet.SyncClient() as akismet_client:
    if akismet_client.comment_check(
        user_ip=submitter_ip,
        comment_content=submitted_content,
        comment_type="forum-post",
        comment_author=submitter_name
    ):
        # This piece of content was classified as spam; handle it appropriately.

Or using the asynchronous client:

import akismet

async with akismet.AsyncClient() as akismet_client:
    if await akismet_client.comment_check(
        user_ip=submitter_ip,
        comment_content=submitted_content,
        comment_type="forum-post",
        comment_author=submitter_name
    ):
        # This piece of content was classified as spam; handle it appropriately.

See the documentation for full details.

The original version of this library was written by Michael Foord.

Project details


Download files

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

Source Distribution

akismet-24.5.0.tar.gz (53.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

akismet-24.5.0-py3-none-any.whl (26.3 kB view details)

Uploaded Python 3

File details

Details for the file akismet-24.5.0.tar.gz.

File metadata

  • Download URL: akismet-24.5.0.tar.gz
  • Upload date:
  • Size: 53.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.0

File hashes

Hashes for akismet-24.5.0.tar.gz
Algorithm Hash digest
SHA256 55c989098ffc87e49db317ab937806833505869313234be24a0225e59ed96b7a
MD5 4248942af99cbbc2dea838c1df2f398c
BLAKE2b-256 98d0244a055550f22d839ca1b46b8ae3cd07c49fdde12932f1ce8d9147ab9e35

See more details on using hashes here.

File details

Details for the file akismet-24.5.0-py3-none-any.whl.

File metadata

  • Download URL: akismet-24.5.0-py3-none-any.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.0

File hashes

Hashes for akismet-24.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 624db199db47e30680e889f898b76fe529e20f77cff8678388113fa9d742eb99
MD5 3ad791366be5ff77667046377a94389d
BLAKE2b-256 722caa84b2ceb7adca87ead2afaf6e54f02343d85dc6d075ecb8c965a20331fe

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