{ "cells": [ { "cell_type": "markdown", "id": "b71a1322", "metadata": {}, "source": [ "# Get started with `tanaos-spam-detection-v1`" ] }, { "cell_type": "markdown", "id": "23bacd31", "metadata": {}, "source": [ "Use the [Artifex library](https://github.com/tanaos/artifex). Install it with\n", "\n", "```bash\n", "pip install artifex\n", "```" ] }, { "cell_type": "code", "execution_count": null, "id": "814ab3a8", "metadata": { "vscode": { "languageId": "plaintext" } }, "outputs": [], "source": [ "from artifex import Artifex\n", "\n", "spam_detection = Artifex().spam_detection()\n", "\n", "print(spam_detection(\"You won an IPhone 16! Click here to claim your prize.\"))" ] } ], "metadata": { "language_info": { "name": "python" } }, "nbformat": 4, "nbformat_minor": 5 }