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

Uploaded CPython 3.14Windows x86-64

is_it_slop-0.6.0a1-cp314-cp314-manylinux_2_28_x86_64.whl (33.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.0a1-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.0a1-cp314-cp314-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

is_it_slop-0.6.0a1-cp313-cp313-manylinux_2_28_x86_64.whl (33.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.0a1-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.0a1-cp313-cp313-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

is_it_slop-0.6.0a1-cp312-cp312-manylinux_2_28_x86_64.whl (33.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.0a1-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.0a1-cp312-cp312-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

is_it_slop-0.6.0a1-cp311-cp311-manylinux_2_28_x86_64.whl (33.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.0a1-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.0a1-cp311-cp311-macosx_11_0_arm64.whl (32.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

is_it_slop-0.6.0a1-cp310-cp310-manylinux_2_28_x86_64.whl (33.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

is_it_slop-0.6.0a1-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.0a1-cp310-cp310-macosx_11_0_arm64.whl (32.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file is_it_slop-0.6.0a1.tar.gz.

File metadata

  • Download URL: is_it_slop-0.6.0a1.tar.gz
  • Upload date:
  • Size: 119.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.0a1.tar.gz
Algorithm Hash digest
SHA256 e9b809b9e1b0517f3e8364a400cb43e60e772e7ded08c52af892e4029c863fc7
MD5 48ccd8268cb0401eff2e4c682a49d04c
BLAKE2b-256 3a27e8d3c169b5b099547752b14bdc86869e067969cd964c813e7fb177b69f53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36120cd54224deddaeb04b26229f4d3fdcc2c21f21e279a4a65ac500dec2dd46
MD5 29d375b854422f331e8625b9eda77330
BLAKE2b-256 21190f94b42c96c78716964397ca4ba3b4ea5003135da8beec765d4298be5d70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.3 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.0a1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6bfe130d418576ceb566af385508bde60408881aea59ae20c976dcfd94fb194b
MD5 b2d337f586723c9e8188bba2bd12316b
BLAKE2b-256 b5fcec068b0bc100e4a3b05a6bd088c55166be56a21b0204be3730d292404238

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.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.0a1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60449ad8bee09c101c3d6bc606eb356c30ee0db975e4e8ee478f1d8e7a08f2a6
MD5 d39fac65698168f79c9ab9b3c76c9b3f
BLAKE2b-256 bc9dec15c20a02e21e228221533c5416f1bf3bd5c5e70d30f2609f7a801c2eb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daead9c9db6ac9442e809dec6f611d37a551db4da4e6aee6dd07860ba96e8178
MD5 e14c771ee05c93ffdc9f41043c086186
BLAKE2b-256 52a8533c5e09aa53e9a3ed842f05cc6ca947b57e7b502d49189f79006e1ed786

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc262117b3da46ac201c3d901ef1968dc8b283e9b49b8f6e53c592c68f0b85b4
MD5 f72661d411c03b25444d37ba4306c191
BLAKE2b-256 1713fd8d008e3c8162848c4084bc6df5f900491fe73a04fc355c9605c6fed576

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.3 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.0a1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6aa3f0327467b7bf989addf8993bab17d3e2eb9a35c065b8bbfbf17c06017f1
MD5 556aa3717ffc8c70ef119e4c67ecf70f
BLAKE2b-256 f6e9fbc014771471961e0487aab2ad6aa3f11e0a374e8fb053cb44391f53c321

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.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.0a1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 313070474cf6fbe037964619305fd29f1c31c0584f4d5dbdb30c2b2b21dc97bd
MD5 530b90dfd268afdef0b47fd28ddaee79
BLAKE2b-256 fab3beb9288471dd95d0e918d1d720007650d3a6f6f6fb88a0ac15205e3257bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ddff96b28d46c61eb318d021b545a7dd2aa7334d251f541975433496f177b99
MD5 1aefcb3a98e79acc725c2874fd205698
BLAKE2b-256 08f84c3b390b0934d5f95744ab998c6e05c70994ea3b8c96d410f52a573abaf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a28f71c2e6f60f2d4198177f688610fc3b791cbf2512ccd7592147acbfba6ffd
MD5 3b2fd29ea550c45de05145d3a3f9fe00
BLAKE2b-256 230e70a3cca0135e3f23998f63ca212b503c83438342251173bf2c86f3a53674

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.3 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.0a1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 528b22ba86c906a88803e708e9a88d13233ecd711a4244666b91e2176570d1af
MD5 37cc4388de3be7c50126085e81bbbbb2
BLAKE2b-256 d6c5eaece4aa7d44600ee605ab1c79dbb1c36d70f672077fa049c2b047ccf5b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.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.0a1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e00e4e39eb100cb4102669e811b1204c64bc8e114907f23d464328e363815311
MD5 7438435779b4ae3351ad0922733b287b
BLAKE2b-256 23a99cb10a3ca78e1e37843dc9f0d6c97984e611ef51786303b557b4ec3cc9d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66bde68b7ff44e1432d01bf7cd001a8a0f36100c50b34c2400fd85789566c5d9
MD5 d6b894d47dc04348fd1b4e0c477827ab
BLAKE2b-256 37e3dbc084681bf3fd3145c97743f416fffd425bfea3d4d8bf1c3c0a9402c850

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06a49d79ea3595796bdf6d27728cbf50857765af02a2136d314979e4c33bd344
MD5 84a482a56d3194b60bca2a31c1d70d96
BLAKE2b-256 62e24a42acb5c7ee40857a98ef7aed238e6af290cdd59f4bb163c4e7f11b9ea3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.3 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.0a1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6ade82500f9e4a0fece77c723a941dc5abd6100612987b4c290424193d3fc0a
MD5 da7b125cc91c3496ebc0b94bfbfbe4c4
BLAKE2b-256 b9d0dfb6f20c25945c95d24f4c100f5cc904e9e2a809089c166360793a726656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.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.0a1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 582c4fd9fe06da6d5b7df2ed88e7dbd14ef7d323cd4f9134107c75ff4a9c8537
MD5 08f27655816b7626dd7146e61762e29d
BLAKE2b-256 4ced9b89dac96179224be20afc77a4f6f1903d1b1fb6c0a23806f0daaa841968

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64e297ef98f1ba933b19330b9970a5554294ff0643e89220202f8fa039ef3a71
MD5 4f47bb7dfcee0d8606420e262cbc831a
BLAKE2b-256 814278e331a72cfea359f9c2417df45d7e6ccecf590b10d28816e8956c8cdf6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a9035775d9e22ee6f6510ce8eb550b28df0c18a735bd534838513b9c9d24a43
MD5 047e68e95fe7604eb73991bf68479850
BLAKE2b-256 3bc4727f01cff46a427d1f5ca822eb267cdad4a8f26b3f902c98b8fc60430264

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 33.3 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.0a1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0a78a7a9f5809fabb0710694b9a9d4047f75bf7e85233203707582dd990fe4a
MD5 b88598901f613920742ba9940cd86952
BLAKE2b-256 f4ded6a2195b8f9b010a224df695e082b0da86bae55a285c1c93448e76daf5b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-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.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.0a1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3283a770363e21015c395d2ae4337d792386f61b3f28fa47deb24f5b15d49cb6
MD5 b5730619d48ff4721ff61c4af2f62fb2
BLAKE2b-256 8e597fa1810f6496afa464be1af4d8916ff8fae7c918751cdd77be5baedd9adc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.5 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.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 881c45307bd440d880f28e950a17142e9c4495dcfba2a1f2162dddd7bbee49a1
MD5 aa7238856f5020adf635bb63a389d94c
BLAKE2b-256 f040343719ed422793b0ee01b0b0ff1fd4a1f6030f4f700e2f7ff48bb01e445e

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