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 train custom models or 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)
  • Cross-platform: Linux, macOS (Apple Silicon), Windows

Installation

uv add is-it-slop

or using pip:

pip install is-it-slop

Quick Start

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%})")

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)

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.

Performance Characteristics

  • Short texts (< 150 tokens): Single chunk, instant inference
  • Medium texts (150-1000 tokens): ~2-7 chunks, efficient batch processing
  • Long texts (1000+ tokens): Automatically chunked and aggregated

The Rust implementation provides significant speedup over pure Python:

  • 5-10x faster preprocessing (tokenization, vectorization)
  • Parallel batch processing
  • Zero-copy operations where possible

Command-Line Interface

For CLI usage, install the Rust binary:

cargo install is-it-slop --features cli
# Basic usage
is-it-slop "Your text here"

# JSON output
is-it-slop "Your text here" --format json

# Classification only (0 or 1)
is-it-slop "Your text here" --format class

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.5.0b7.tar.gz (93.9 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.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (40.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

is_it_slop-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (41.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

is_it_slop-0.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl (41.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

is_it_slop-0.5.0b7-cp314-cp314-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.14Windows x86-64

is_it_slop-0.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

is_it_slop-0.5.0b7-cp314-cp314-manylinux_2_28_aarch64.whl (41.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

is_it_slop-0.5.0b7-cp314-cp314-macosx_11_0_arm64.whl (40.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

is_it_slop-0.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl (41.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

is_it_slop-0.5.0b7-cp313-cp313-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.13Windows x86-64

is_it_slop-0.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

is_it_slop-0.5.0b7-cp313-cp313-manylinux_2_28_aarch64.whl (41.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

is_it_slop-0.5.0b7-cp313-cp313-macosx_11_0_arm64.whl (40.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

is_it_slop-0.5.0b7-cp312-cp312-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.12Windows x86-64

is_it_slop-0.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

is_it_slop-0.5.0b7-cp312-cp312-manylinux_2_28_aarch64.whl (41.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

is_it_slop-0.5.0b7-cp312-cp312-macosx_11_0_arm64.whl (40.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

is_it_slop-0.5.0b7-cp311-cp311-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.11Windows x86-64

is_it_slop-0.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

is_it_slop-0.5.0b7-cp311-cp311-manylinux_2_28_aarch64.whl (41.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

is_it_slop-0.5.0b7-cp311-cp311-macosx_11_0_arm64.whl (40.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file is_it_slop-0.5.0b7.tar.gz.

File metadata

  • Download URL: is_it_slop-0.5.0b7.tar.gz
  • Upload date:
  • Size: 93.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7.tar.gz
Algorithm Hash digest
SHA256 b4d55a8fcf32cd505e3bdafb8871b2456668948840a76d1e00d16ae87e7df9b1
MD5 8656efeac045afe758d217d3d0f81a1f
BLAKE2b-256 5c01b27a332e97a0ab2b8dcee7a3d343f0df0ec40fd4ba9acb6219f02d63f927

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 40.8 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6d390c592a2ea07f1b9fbf452a7207a29bedb1a480b96527aeeea2872bbeec1
MD5 b453f347b44009d29c8c0ed51f9adf03
BLAKE2b-256 6f4978b3234f3efa6e71ece2fb0b832735787ebab21dd3f662ab7a519cdc9577

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.7 MB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8acfa89f542f9daaad03f8509addf2b97dfe5485363afb2c0954e3ac5495432f
MD5 a99d9e1bb63d10c4be22714ee4214992
BLAKE2b-256 74a5e7b93593880104e420db9f88807da4ae78e1f90020d23668895015ffaec7

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b84db4241973f2ef4822c57e302ab2dac9a8bf7311b625a3043baf186adf03f2
MD5 4d72bdcb5efe22cc7cfb200d32e6a55a
BLAKE2b-256 020a8533317046c2f415133fdc5f78ab23e16d04d3ab47a95ccded193e941554

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 39.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6c23ac04aeaab2a00f5ce99c44933c59b64ab95727af1a686a9fcb7481946a11
MD5 b24ab119195ea4e5b3cb1e088fdab8d7
BLAKE2b-256 2979edc178abe6d9ffbb3446c373c01fc52990f20b13c52f7fa71bfe64c82cba

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 40.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5475ef4ec744b9d0aefdbc550b4c5d03c0bfe33b687639d29cecbb73c195e60
MD5 6a799cb03d6f15e008d9c6b179cb25f4
BLAKE2b-256 75e0ba2e310de0e8df48d8732dc54b7b925eaeb97cdf94d73fff57a08e7f775a

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 447dfb183b7c2e655944153564463163f97e8b3a42f999418f450d73b876c442
MD5 df33d1e52e5d93a8d316db6849b5621a
BLAKE2b-256 f6e0c5f798f2fb290d2b0f78bd1b4df2288431738a7759b4f3d9ac1dc84198e3

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16e35762e2c2c581a9ff0d1e6322c1aee32b31e18941bbc7f77d3f6f0b518009
MD5 0edef4508bf0c23b2eecfd6058ad33d2
BLAKE2b-256 b096c08479f8c3ff35526965ea18d0f78f845496c1a0ebf4128736b0b3e2a543

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.6 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f73a4669fbc363adf4f94b634ee1384ab6c9e212a41d9347f5e6b9c1f20bc3ee
MD5 74af4f5cb35bf6e1ef9b2c31dc0d03e0
BLAKE2b-256 10d748a2ab4b43d3b5a2cc384ea443adf1cf1ddea55d3ccc9a946efcda5214c8

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 39.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 db1c7f4d713b0384cdb7d3470b9a5b0cdb816d4a9ec17d3f615c7ae46bbe801b
MD5 bd5e4b963b9131a7b7501af5d68e84c6
BLAKE2b-256 7b6092bd82c5e826d70e972cc8d9ff36f074fe12b072637745c8565f3a306b2c

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 40.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0aadbf809eec1d7da564dca55461a51690774e8093370b14b31230852fe86d88
MD5 53af4a96d88f0b17414d114385b3aaa8
BLAKE2b-256 0b4138a56ef045dedc47086e53481ab127ec4097f1e76c79a3b009fb1b94226a

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b69cb89ac3b3e30424dac084d7b93553ba57f90f7d2c419232f034927932376a
MD5 a574f8dfb2c044f752c5ae9d7bcc1dd0
BLAKE2b-256 c438ffb79e1c4a78df3748c6191fabf7091f62d970919cce0eaccae5767fe58f

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d106796344823cec3a9af3a7f62fc173d673edc336055e8cb566c0566001a353
MD5 1f71fec0b5d954e48af4fe7eff42fe30
BLAKE2b-256 87e4727a17a465132fcc99063f3b221f9fdf893348fb9f92c01777d4c2e542f4

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 39.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e70465bceed6f84a42e173d20b8f6101947f0bb5ca1d3fae975ce03d879a0563
MD5 289b83578ac0a1cdd2793c1f2ffd55cf
BLAKE2b-256 d718925e485b510593609a8637014c77a208c63f12dd60421bf9bfb43f097b41

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 40.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94624479e5f02ea61fa90b4acd81e7b2745033367c846de9a0b40b0d73bc44df
MD5 9bbe8aa3c3a5b3a1902d8f27ccc727ff
BLAKE2b-256 3f436ccb6a259a0c54f312f85672250834c6ae84487b26540cdbf7778e761102

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46664687505d5af8b30c7d9bfe058a330d29f3f0129c6707d1b8017d66dbad6e
MD5 4c671db4d68a4ec1022a7a99fa1c5e90
BLAKE2b-256 9e33181a0d3d2b2861cf0ac28e7ecaffe250d117be8b9e699c00d976c300e9ae

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d35f313640a4535c4d6e576ae01b2b3c471fe2f7b446039a65c86060ce23790
MD5 7832aec50e477cfdb659cdfbb79f51dd
BLAKE2b-256 e364952951aad1cbe15d3b6245a09edb5a4a3fb8d713f6d384f0c834ef77180a

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 39.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31301470572e800385793adfa439fc21ca09b809ff6033fda7dec1642a0651df
MD5 689898f45c32d57ab9cf9b638019c4e5
BLAKE2b-256 5142c8f8fe5d70f3af85e3cf901bf6fe77355755a84dbca3f6577c9cb010290e

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 40.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6ca619a5d98e3be7eec728325aa431bae3e410f1dbf23f387219caa3c8e29cf
MD5 739b9ded50ff56b6849262b666686b79
BLAKE2b-256 25550dd579be9cd1f1c7764222220ffec5347ae37f38ca1ce8d4404f00827b73

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45a6ffc208ef3174b450c6ae379a32935291b96f6c1d059920af26f759cef336
MD5 46a5d7302042eeb7005115db640be948
BLAKE2b-256 fe3bcf8eb5e62616d11494c29aa44d85756850ecbc38037549361b03a4473d51

See more details on using hashes here.

File details

Details for the file is_it_slop-0.5.0b7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop-0.5.0b7-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da3a32fd2f3bb8c0da75deb25732c56fffbe4e032c829924b4a64f0e679f2cc7
MD5 6de6d10bbd80a4957fa2861337db28a4
BLAKE2b-256 8c677c892333b3a96181eb9965e2165a421910d695b621ac24c16571713f767b

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