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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

  • Download URL: is_it_slop-0.6.0a3.tar.gz
  • Upload date:
  • Size: 120.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3.tar.gz
Algorithm Hash digest
SHA256 6d31ee51a24535460d72aa877d885c8b71e4665de2bbef56c857a52e689f145b
MD5 ab62ff6f0f73179f7c20dd299892067a
BLAKE2b-256 f221393b3bf899f7333289be66e8559642d8cccec7e4a8dc6e382d5c98c99c38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 27c6a73195f7a896f55dfbd70ffc1f0b7f41f58300533b7522eb0681d908b4a2
MD5 f4a76fd62fdf4e98861f433facbdf339
BLAKE2b-256 615919a0dd2cd6e45df5774a5bbff6bba436abdf2f516fa90c8235afa5884797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a24688ddac403606040380ef658498f8bab69e69332c9fd2ea1469a560eba887
MD5 5a4d1579f64938e4d1f8d4d0c8e8fa3a
BLAKE2b-256 2d05eb7ac133f1cfd5ffb350c16afa718f7f2b52795dc5e4ce9557eec2e305bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8b35cbdfd7cc4ff840ab001734cbf7a9002bcb5e39afd080e1789a52cf3cd3c
MD5 14acf334df17bd6321cc782516c40258
BLAKE2b-256 8e7a5fe85786419f2cd96853db48ed4a5191f6adea40dfb29c08dd4f78264101

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74059a1f31d15916867bbe9ff22e231a8ffb3f4452cded36ede4cb3a29df9992
MD5 27ead8ff0cb42abccadb893d094698b6
BLAKE2b-256 9548051c6eccef70ced8b934a05a9c173c00fa50d0f84c0234af86a42e07a503

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6abad88107459a284299f458614dd6eeff3be530ab23064c23562b27aec3430f
MD5 410448d1aca3751a3bff016bb9c9bd4d
BLAKE2b-256 d4e1f76e7e182dccb4098f89e5be7296172749942097d4a1040d8a0bd4b46518

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 857641ee49883b7422b3e24e66a6cc81931a658f5ad8142b7e4bac6b318972f6
MD5 864e8b3d3728211dda066a121136a662
BLAKE2b-256 ad7f40423e5c212551fdb917def9fcd2206b93536bafaad170a7a8e8a922f40a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cffed3d113fdd380cf7d973407c84d55a14eda6eaf1a65b41c73bdb124a9ea33
MD5 44a45b85ecc626d0c79ffad0e7f51fa6
BLAKE2b-256 2a2ce90c08a999532ed89878fea36f3ec2bcb8e01aeb6211f5458ab892a9c317

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80e7d228c3eda57019a3b47532d4e988421c3a1d7767779dfda9e97f07d137f6
MD5 c80ce10fbe0cf79fd75124d9bad7ded4
BLAKE2b-256 f9b8b7b8adf6889d526ee5b21cad4ed1f4da011c0c1f27b2f363809dc3a569db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 67d6b8bd511db44691f8f71e411c7dcfe8f819dc6b859ffaa1b85b4c475c2b6f
MD5 f9011409ce25a2c569a24ed43d56565c
BLAKE2b-256 e161f8cd86a261da836f689c11b80562d958a45d8259b14d7616fd25580bec5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37e722960237db58b81f2bfd0e23c341b5ea07ee88790d1bae93ea3d3499385b
MD5 fe4b6adebd9e70e0e68776ffa50eac9f
BLAKE2b-256 be5640fdd3e5397ccbe51e518fc0172299dae9ed70fae0ac8d9fcd61501a4ef9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75ef20b2aa011f6aaa77081ce158402fbb88ea7835b897c18c188b47df130c03
MD5 8add29e926a28d3584991e21171d7163
BLAKE2b-256 ac765270ad1326a39f1383b7406c3afde095852494aa64bde32e78de1270ac9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3267250a6e0adb80e9806dcc99dcb7e9a474d31331fe107319550e51e833fccf
MD5 b5a225fc40802284b21e9e4137625aed
BLAKE2b-256 8535344185aa8666aa32ffeede93e949d09d5f4b04b3ff9449e8f805e69e4dad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b42a232e818211d9b44bf2ebb532fd91b4c9e0f440d9c7f0f05253aea4839a90
MD5 32d5efeb4f963bbc0c859b7d64b01c23
BLAKE2b-256 2d56e4e8e5338fa3d231161c31724446876e21e86c34c8c75763be74e3e4a682

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d789898509129feb252f90f9b8880306a1734802e01396e7d41230a49170fb4
MD5 71f7b8713e2109fd6fda859ae1a9661b
BLAKE2b-256 83b7ba35f3928117474560c6aca13a4213364109d4ced270c8e444e71c439cd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00c77f4c4bc2a4a2282479048aa4e509cf3ab8c271377bb468ba1c419465e4d9
MD5 37fc42595044bc3309a640999920ba39
BLAKE2b-256 7e89561085af1961a3dc151911a60052a01c5d7fef8f106a8bba4fa46976ee34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e564bd4f698b9be098917dbc616bb584b22c462c5217096491f2da49aa268b7e
MD5 50b78374f5916594a826ab3f2d769bb0
BLAKE2b-256 777a7f75a0af640acd2187fb72fafdf99283241720f825f113e962466dba7b54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a27f005192957b6638f99074a4f06cf0bd380391af5e9cd0c10eceb9dbac3069
MD5 9004254b299ff55e3fbb0c6c9340936b
BLAKE2b-256 ae200bd2e1cdf3bdc5fd64e68377c66fd22e6b5ad3c460688e09a625cba4f1ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 409522cdfaab1c91a7e5fe316c3f987902ec9526a98157d5cdc0bf265bdce0c2
MD5 6d09693ecbd63afe57ddafa98a238ee4
BLAKE2b-256 8dd03b086eaf5a9518d03f0e2f1f940a8b9d6ae5191c97de3b36ddeec79ff4b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a921096230b8f8a89d11729f577bb9bbd8cb0ac1e96204e3ee46f1e99149b22f
MD5 4beb0296c344b86f693b8be6bd535b8e
BLAKE2b-256 ebca4b849fb77de167e573afdfb090df6f5ed70e09a382eca7e90fe685dfe1f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 812a0fde7e1b32db0588f28beefcb9734318e34026dce231ea003c2426911f43
MD5 55878756961882005dd15b7c2839df82
BLAKE2b-256 5929ec9f0bdb126f039182e822bc24f5495e8f431436127368a091b3960efcdc

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