Skip to main content

Detect AI-generated slop text using machine learning.

Project description

is-it-slop

Fast and accurate AI text detection using machine learning.

Python bindings for the is-it-slop AI text detection library, powered by Rust and ONNX Runtime.

This is the main inference library. For most users, this is all you need. If you want to access the preprocessing pipeline directly, see is-it-slop-preprocessing.

Features

  • Fast inference: Rust-backed ONNX runtime with optimized preprocessing
  • Pre-trained model: Embedded at compile time, no downloads required
  • Simple API: Single function call for predictions
  • Batch processing: Efficient multi-text inference
  • Text chunking: Handles variable-length documents (50-5000+ tokens)
  • Command-line interface: CLI included, no separate installation needed
  • Cross-platform: Linux, macOS (Apple Silicon), Windows

Installation

uv add is-it-slop

or using pip:

pip install is-it-slop

or run directly without installing:

uvx is-it-slop "Your text here"

Quick Start

Python API

from is_it_slop import is_this_slop

# Predict on single text
result = is_this_slop("Your text here")
print(result.classification)  # "Human" or "AI"
print(f"AI probability: {result.ai_probability:.2%}")

# Use custom threshold
result = is_this_slop("Your text here", threshold=0.7)
print(result.classification)

# Batch processing
from is_it_slop import is_this_slop_batch

texts = ["First text", "Second text", "Third text"]
results = is_this_slop_batch(texts)
for text, result in zip(texts, results):
    print(f"{text}: {result.classification} ({result.ai_probability:.1%})")

Command-Line Interface

The package includes a CLI that can be used after installation:

# Default: classification bar with confidence metrics
is-it-slop "Your text here"

# Classification label only
is-it-slop "Text" --label
# Output: Human

# Label with score
is-it-slop "Text" --label --score
# Output: Human (0.2340)

# Bare AI probability for scripting
is-it-slop "Text" --score
# Output: 0.2340

# Exit code mode (0=AI, 1=Human, 2=error)
is-it-slop "Text" --classify

# Full JSON output
is-it-slop "Text" --json

# JSON lines (one object per line, useful for streaming)
is-it-slop "Text" --jsonl

# Batch processing (auto-detects .json vs line-delimited)
is-it-slop -b texts.txt

# Custom threshold
is-it-slop "Text" --threshold 0.7

# Verbose: show model internals
is-it-slop "Text" --verbose

# Quiet: bar only, no metrics
is-it-slop "Text" --quiet

# Read from stdin
echo "Your text" | is-it-slop

# Get help
is-it-slop --help

API Reference

Functions

is_this_slop(text, threshold=None)

Predict whether a single text is AI-generated or human-written.

Parameters:

  • text (str): Input text string
  • threshold (float, optional): Classification threshold (0.0-1.0). If not provided, uses the default optimized threshold.

Returns: PredictionResult object

Example:

result = is_this_slop("This text was written by a human.")
print(result.classification)  # "Human" or "AI"
print(result.ai_probability)  # 0.0 to 1.0
print(result.human_probability)  # 0.0 to 1.0

is_this_slop_batch(texts, threshold=None)

Predict whether multiple texts are AI-generated or human-written.

Parameters:

  • texts (list[str]): List of text strings
  • threshold (float, optional): Classification threshold (0.0-1.0)

Returns: List of PredictionResult objects

Example:

results = is_this_slop_batch([
    "First document to check",
    "Second document to check",
    "Third document to check"
])

for i, result in enumerate(results):
    print(f"Text {i+1}: {result.classification}")

PredictionResult Object

Result object with classification and probabilities:

Attributes:

  • classification (str): Either "Human" or "AI"
  • human_probability (float): Probability of human-written text (0.0-1.0)
  • ai_probability (float): Probability of AI-generated text (0.0-1.0)
  • num_chunks (int): Number of text chunks processed (1 for short texts, more for long)
  • chunk_agreement (float): Agreement across chunks (0.5-1.0). 1.0 = all chunks agree

Note: human_probability + ai_probability == 1.0

String representation:

>>> result = is_this_slop("Some text")
>>> print(result)
Human (AI: 12.3%)

>>> repr(result)
'PredictionResult(human=0.877, ai=0.123, class=Human)'

Constants

CLASSIFICATION_THRESHOLD

The default threshold value used for classification. This threshold is optimized for overall F1 score based on validation data.

from is_it_slop import CLASSIFICATION_THRESHOLD

print(f"Default threshold: {CLASSIFICATION_THRESHOLD}")

MODEL_VERSION

The version of the embedded model.

from is_it_slop import MODEL_VERSION

print(f"Model version: {MODEL_VERSION}")

How It Works

  1. Text Cleaning: Normalizes HTML entities, encoding artifacts, and whitespace
  2. Tokenization: Uses tiktoken (o200k_base) BPE encoding
  3. Chunking: Splits long texts into 150-token overlapping chunks
  4. Vectorization: TF-IDF with 2-4 token n-grams
  5. Inference: ONNX Runtime with LogisticRegression model
  6. Aggregation: Combines chunk predictions using weighted mean

This pipeline ensures consistent preprocessing between training and inference.

Alternative: Standalone Rust CLI

If you need faster startup time or want a standalone binary without Python, you can install the Rust CLI separately:

cargo install is-it-slop --features cli

The standalone Rust binary has slightly faster startup but requires the Rust toolchain to install. The Python package CLI provides the same functionality and is easier to install.

Platform Support

Pre-built wheels available for:

  • Linux: x86_64, aarch64 (manylinux_2_28)
  • macOS: Apple Silicon (ARM64)
  • Windows: x86_64

License

MIT

Links

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

is_it_slop-0.6.3.tar.gz (128.1 kB view details)

Uploaded Source

Built Distributions

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

is_it_slop-0.6.3-cp314-cp314-win_amd64.whl (32.3 MB view details)

Uploaded CPython 3.14Windows x86-64

is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

is_it_slop-0.6.3-cp314-cp314-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

is_it_slop-0.6.3-cp313-cp313-win_amd64.whl (32.3 MB view details)

Uploaded CPython 3.13Windows x86-64

is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

is_it_slop-0.6.3-cp313-cp313-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

is_it_slop-0.6.3-cp312-cp312-win_amd64.whl (32.3 MB view details)

Uploaded CPython 3.12Windows x86-64

is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

is_it_slop-0.6.3-cp312-cp312-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

is_it_slop-0.6.3-cp311-cp311-win_amd64.whl (32.3 MB view details)

Uploaded CPython 3.11Windows x86-64

is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

is_it_slop-0.6.3-cp311-cp311-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

is_it_slop-0.6.3-cp310-cp310-win_amd64.whl (32.3 MB view details)

Uploaded CPython 3.10Windows x86-64

is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

is_it_slop-0.6.3-cp310-cp310-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file is_it_slop-0.6.3.tar.gz.

File metadata

  • Download URL: is_it_slop-0.6.3.tar.gz
  • Upload date:
  • Size: 128.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3.tar.gz
Algorithm Hash digest
SHA256 daa1942acc44c05584e84ecdaf70959b38a6dbd07af8618676ac6a53d050db92
MD5 495fb02820e82139f8df975812e3d6c9
BLAKE2b-256 629e10c7bbf2461ba34a411f464965415d2dbbe9770e14facc83f8b366aeb6ff

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 32.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6532622888a6e82d1e6a38afcb1815b4d5f6ce22a977de46a48cebee3ece547f
MD5 dfed37f84e4f14e1799b81beadb47de9
BLAKE2b-256 ccb0b874b9698c458e30041410feae6a1d3e434e4efc97d87804b4ac8aca355a

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ed5676242604c51ca39f9594e7bcc0b6b792092b37d827f9cc2f3d261a983c7
MD5 bc9bc9e72007a1620222b871759ab075
BLAKE2b-256 afa13179cae145cb108296b01f7e888f6d2d6f2656169b389e645d2ff198f458

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8be3b40136425967c0f858fac1cfd1cb57921ac922d25280d1aabb8463d2050e
MD5 e624904f0750fd6edde7237d617b5910
BLAKE2b-256 0ffc1a61e6bf322692eebba2b42b4977871a4761b61794ea8871e811eabf66ed

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.4 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f17b41ac7e3df95f1dec19bb3fcbc251533fa3b1fae71cb70b8a71417f878159
MD5 9a04ea3cfa573fe373f65496efdccf18
BLAKE2b-256 2e5a5b937cf3efeec64cdc71ac15bf0c9ef609051bda14e2ed39d0cfa80f9525

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 32.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc4bf503bde4215ff2aedf46aa7d603c1fbdae8d16cc4d199bbfda4fdc186200
MD5 bf40f4858b8c371fde545e78e2c034a6
BLAKE2b-256 7dbc89ceb512e6c8672deb96d336ce815dc0287b1953873fe7b2ea80cdfc4dc8

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 673da1b725ddf12baab3fdad86e616aa58d731c2ea4241d6b7aa1c6d8fee5958
MD5 c9ee6b91e25388c74c579f9a98fe6e4c
BLAKE2b-256 d6d2ee49fe5a932e87be3291ac94e2d50e6e18983af378764c67cb0cddc35cd5

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40d224f89f1211e4d14ea6d5c6eb982d3e8c6487b2680cef18cd92e0c37690a2
MD5 010f41f6c8f26d3b67f1e87cc7bc48d8
BLAKE2b-256 e8e2b6121a16b6848d28c2458bb1e88948f8e00d00452166493ff034fedae01d

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.4 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e986fb07388f64eb1be4e33a631b557611d76a176f9080cbd8c95e5a94221d6
MD5 25f41afac1434aca0361e2eacf72a2df
BLAKE2b-256 61c7b59af19e4de94572c04f579c52de3ad990d7c3af358fb4fda3296366298d

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 32.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb4338f53d32781d36bbba02fa522ec3d11ce56b67308942b916d08da9873413
MD5 86b94e40554b1f386ad1a51f5ce8d8f7
BLAKE2b-256 4f6b86936d4fbff1ea103b17b80ab647efd1020609c5f4e6c5bbae1572c2b171

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1af669b8ef38aec333a816c6c8fdc5f837ac32317cac05ffa3a859448df09757
MD5 87f61c012d2ffae675ef1c48864056e5
BLAKE2b-256 0952d27dc1de422b6a103f4a58d4342840234596e1c41fba337ddc2c9f67eb5e

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db71667bc7cf85fdb1fe38f90dcc52a4c78b499e635ce86d8f3470c02bddbd02
MD5 098c23f930468f68da7fed920f0bcb55
BLAKE2b-256 4ecb13a7abaa8211b041f67f9a8299b892cf5fd0fd200e65124d66da7ab828de

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.4 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9f93d9fd2785681fa51afa15b7e4e3612426ddd145150c7b3078cb9986b439d
MD5 8cf02695ce3087711d3fa765d5e377f3
BLAKE2b-256 b274f3146cd7e4313b5843d55a3e5536d39b52e1a38897a69c6de7642e80f985

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 32.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 151948e79663da8d5721ec1971587791f477f416fac0825c1607c3e0882227c8
MD5 eecbe722db9b7a592c7cfdc98eafd864
BLAKE2b-256 b1a4a4cb2cd470fd6b2e6ee9aa178806f7a428399e7295a067d42c8602ee0d02

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59e3d3f20ef2f9f60a588ce46ce08d496bde24985397e817fd0db8d82fa5f2dc
MD5 3f3255897a645fc33813ef97d26f53d9
BLAKE2b-256 b7ee9d061752caa5d8d88366cd5176df40ac5f2259a451547a69f60bc2355bbd

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6cdcdd75eca8fc3cad43da6871df6c3a6f367b8dcd08d1f334b7259cfa02fd8b
MD5 821e232d926f7146e1c888d06fd5c148
BLAKE2b-256 1af6dfce7e816324fb2aee278d693f652363ef52a9de9508edcddd38cc45c24b

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.4 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbe7bd8f31dd81fae0d60132cfe70b32c6079e3f6d8ee0d7d7c6c574cf047e52
MD5 7ed3cb66d6d3dee1fd03038ab897a079
BLAKE2b-256 2a0fe5d81b3258709fd440078477466d208554965f9b787690fa4ef7bcc37fae

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 32.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ff86d9344dbb67aaa0f53605a37f8dbb280525093971c9e317b9ff4749c0ab6
MD5 8541b65d1fc3aaf64f1c2888ca0dd9d5
BLAKE2b-256 011a58fad28869178b9f9ad37e1052e7bcd6aca9d670c6c6c2e128c66e5a926b

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c6ee90bae7dd823221997ba65734b1fc25ac19af413456b25b80a341bca5784
MD5 ce99cda5f943dd790f7cc4563a16a487
BLAKE2b-256 9169281cd37b73e1a3898b111cbb4d616827028d0c55cd939ab2d85d6891ff76

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6551dbb28a773a94a6ebaa185dcd9480150d4eed2a4bf27054ee1134cf89c0b0
MD5 e826c665311d9a871ca7a84e086a5849
BLAKE2b-256 729ab914e5e368f00e35ed0ff1971430f89eeb5ffb3fe71a15c7ad4fab3bbc3a

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.4 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for is_it_slop-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f47eb9f4fa6c25a25651e695d3f3487745c87207bb43ad3895ca1753f97a769
MD5 5cd33d7a67a530b7f296a9490f4333f3
BLAKE2b-256 1ccd4b90e1c729d51f58a31ebfbd32d88d85b6f7cd1b8c310354f6d1190673d3

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