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: human-readable with probabilities and 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

# 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

# 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.0a2.tar.gz (120.4 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.0a2-cp314-cp314-win_amd64.whl (32.3 MB view details)

Uploaded CPython 3.14Windows x86-64

is_it_slop-0.6.0a2-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.0a2-cp314-cp314-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

is_it_slop-0.6.0a2-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.0a2-cp313-cp313-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

is_it_slop-0.6.0a2-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.0a2-cp312-cp312-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

is_it_slop-0.6.0a2-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.0a2-cp311-cp311-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

is_it_slop-0.6.0a2-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.0a2-cp310-cp310-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

is_it_slop-0.6.0a2-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.0a2.tar.gz.

File metadata

  • Download URL: is_it_slop-0.6.0a2.tar.gz
  • Upload date:
  • Size: 120.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2.tar.gz
Algorithm Hash digest
SHA256 54cd123a43206f8589d26065e55cfbd447babc4fe23d39bb85003f7c32ec8bf8
MD5 843b886a2edafcfe48578a3ee75bca79
BLAKE2b-256 5baa38b282aa0e5c58ed29bd8c74b9cfe7617b904112feeb1ef6b22d5d0550eb

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0e809a941965e5a80eec62d5a066c3ae5988c6b3b35065419abd1a55e1ca0207
MD5 d454c92ac240eeaaae8c10cb6e419e1e
BLAKE2b-256 32cf7f41166512e0aca4a81489daa4d795d4a2f1e76dec275f703402a7c2ae50

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf8365abd1d85ef709427be6b5bda676bc83e49ae07d3dd32780b2a73f877a36
MD5 41c635fb97122fbf77183e656c6488bd
BLAKE2b-256 6174b8960dcd2d78d932649e7ea48309ae6e90b87b3603c530ca58c2b37440cd

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8872b9e2458c8d35871e4a087b5aedfe7449949a4909eb8c5b38ebb71f87c28
MD5 b30c4180cb568f853a50b7532b3d2194
BLAKE2b-256 59d98f4ced4eef050d6add9a3c1573a4199cc0f0b5f9b9565e58f909f2bd90bf

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11329d756ff6042234c28c06f1a618923c8523deec7ff6013f21db87685c1e90
MD5 1ab6041a4670d0c5facf12c9fc57a499
BLAKE2b-256 78a5796883108357bce1d2ab6e591f56da780abd7e99b09ea52637df84785641

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4c167d9c9992a3b0f8f887de6461106d9afe81a3534a84e9f8dfef868b247f91
MD5 10632e74c56fddf5a13652405a386362
BLAKE2b-256 0bef63017a145445a903c51edd7b7ff2aad6764a124786f874272dbce6204695

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2e89207477a4e7aedd25a7d86e80cc677494134a69f593e5dcff503874abbe5
MD5 91a010730e7eff487c96ca32411b5fd7
BLAKE2b-256 d03839454eeb3557e303bda5db95e373010db9f30805bcca0ebf0fb35b39e2ea

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3eb39000bc09ba8fbf48d25f25789b06e0d83abce141472fca274ce288e359c5
MD5 70ddfeef6cc00c645b4824f391f05294
BLAKE2b-256 7abfb1f8f35b9355a52c32e9177d197586872537d9dec0a8b7f33e8140ce8c59

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21fdb3bd08e08e362dfefeaada04dc7050576b6b75dc470e13de131486e06849
MD5 cd7c5d5b4e8b008d0e264537ea9d3d4b
BLAKE2b-256 387f8b7fdf02d250258c9365686c66676d625d44119a79643c16939fc35b71b5

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75d5cc264bc2536537cc00f733f20544629c04c5845d1efac435abaede0578e5
MD5 55bbf53d3549da4af9256a5f17b4dc25
BLAKE2b-256 c04bd4868b27a48697f864851eddd2daf7b3d182ef828f84f3b9b8f02564b09a

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7d31bab9544267752727eb41e8e830a73a48efd15b92e836ec386a9bf41343d
MD5 1e5779525ecaa0c3d4b54109b47cab54
BLAKE2b-256 d6cce2f9ec7da8a678f5eaebe06d85df8e430cc52e175d38f95464c4737950e6

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9673c9d79b8fc8daa2bd43cd5d5d9ab3daa96988eb30f3bcf23b8c2612c05406
MD5 0a09fe7bdfd2e0385b1f132e1997788b
BLAKE2b-256 f2103703e88f4b315a407956edbf3756b270f4032c665ff91a3c4e46b387e59c

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09ddfdd81fa252e6915f271d49639817d1b2358d673048a10b9d7ef59eeb29d8
MD5 912549a5270cfa8dc08c86bbdc36230f
BLAKE2b-256 96bd69aee1330b2bd4ce5983b4fabb640158f0e9fc0070cd6b3d9601594f5261

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d14a4124dd18de68cc4749a984aba75fbdc50fe2a3711e1143143ae91f0afc16
MD5 b9abb763967ff7660286189204b3a378
BLAKE2b-256 3f85ddee8a48d61ae7fe9d1b1b381403ff1e756092d0dccd7662eb61421c3588

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 188f05f45c8a4112dd7e50195224fc68215f715cc33c184f305e1f3052543305
MD5 5aa521824f837c15217d834b0122d62a
BLAKE2b-256 2979ccf8d92f30e992c2202103533f72675ee97ed50d4d3a4d5024b2636b12ad

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e3f0a07e55a066cb422ed6c13770d6dbc4ba98fa7c112f1c04b82d5663fd5cd
MD5 672d02f0d383488b66f507d7e490ea66
BLAKE2b-256 762d7493d598e7db394ac90c0eb0521e8d5d39cec6e14619f8b49b685c204cad

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 615689e27507f7db5a30d3721f8ca0a1fa06619cec7958befd9d0c7823847fd5
MD5 54151de9c65dc1949e5b4f2940a31ac2
BLAKE2b-256 181c4b9c0036cf1761c7451b3fa5bd840b68a6b14b58de3d5e2f3ed31a0dbf44

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35e2ba101bdb9da2f553a8a7d44fd0228aacb12be6710e89daf7123767288aae
MD5 899d83d6f4de63bdc673ae732b74e0df
BLAKE2b-256 a4e3fe1e03d01a3ec5dfd58c2594543ad61ea8ba5709deccd97a852b768e7f7f

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba2a3f3ce01bfe0ae9bce96510effa3f71f58a463b1f3f9b82e37151ee4f65fc
MD5 97f44e257ae7d463d31ec039492d2acd
BLAKE2b-256 ef8786b87a7957bce339632d723032eadd2ce3f1430ecee9c5b8a96f63da0261

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 34.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09aaa2996bf97e42fc2f75a1df299ed875cf3aa0b6a6f6d0a77be98415d4aad0
MD5 b6eeba9c6063b7547bb751911b1a5f64
BLAKE2b-256 3a346a878e42d3548378717689ce0d0685ea106d67413dd361567edecce74060

See more details on using hashes here.

File details

Details for the file is_it_slop-0.6.0a2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.6.0a2-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.8 {"installer":{"name":"uv","version":"0.11.8","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.0a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d44bd723f4c7aeda4b0978481e61aab83e5b784984bfec530a4bf2269433d4f1
MD5 229748f77f6b14eac75c763713161c73
BLAKE2b-256 269f1369d45bad508b7c56e393d0e9b1ce7ce239cc276a41d92eaec78baa292b

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