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.11.0.tar.gz (54.1 kB view details)

Uploaded Source

Built Distribution

akismet-24.11.0-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: akismet-24.11.0.tar.gz
  • Upload date:
  • Size: 54.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.0

File hashes

Hashes for akismet-24.11.0.tar.gz
Algorithm Hash digest
SHA256 1fefa05e6500a8b41c43bd1dbff8e04a6c76cc16d217981075d70673731244bd
MD5 41732a61002d17f2ef1c48b6094133af
BLAKE2b-256 227007334f7a486adcdf104f1a9e410ee55ef319e8b15bd1d729a4fe411da5f2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: akismet-24.11.0-py3-none-any.whl
  • Upload date:
  • Size: 25.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.0

File hashes

Hashes for akismet-24.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bee9e9b6b2a8a87c7b41feb9f3c855e3a33fe2923696cfef685da87abf662dee
MD5 177db3ec4877451ff47f9ae1f4d57e26
BLAKE2b-256 5397db5cc80072d74820a0f366fcb28a9a3bcb0144b59abafe48a3035d7bee1b

See more details on using hashes here.

Provenance

Supported by

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