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 stringthreshold(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 stringsthreshold(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
- Text Cleaning: Normalizes HTML entities, encoding artifacts, and whitespace
- Tokenization: Uses tiktoken (o200k_base) BPE encoding
- Chunking: Splits long texts into 150-token overlapping chunks
- Vectorization: TF-IDF with 2-4 token n-grams
- Inference: ONNX Runtime with LogisticRegression model
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file is_it_slop-0.6.0a0.tar.gz.
File metadata
- Download URL: is_it_slop-0.6.0a0.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e0a6fce14905f603bfdf11e9503c6ea95e5cc6a9a5112d69253b5def4243372
|
|
| MD5 |
37e679de7fc1a896f72fe87bf1593f85
|
|
| BLAKE2b-256 |
50828b64072194988b3b0ba524714b49aac1ca89179d3e17ff24d2b681e38fd4
|
File details
Details for the file is_it_slop-0.6.0a0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50c94df7e19965be4452b988eda843b6a5892c834aafe0667792bbede7519ff5
|
|
| MD5 |
2f2331e83b12599c180f4299c21a33bd
|
|
| BLAKE2b-256 |
77b8bf8bb8561d6f28d2958464e88b94be0f827ca5fbfa8ab348a230b47f3444
|
File details
Details for the file is_it_slop-0.6.0a0-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa8c312c4ed8d611c339405fbd2fe033522b7ab95288a74c709b772cc47131ec
|
|
| MD5 |
5c2df463fbb1dd2828e6ba1d0a838f34
|
|
| BLAKE2b-256 |
b12e4e06f112064ff3819aaf1b041312f69c6200f55aa86a535116007e74e4da
|
File details
Details for the file is_it_slop-0.6.0a0-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59b05dca8c0b1d07891545c55b63713224c0499f20cfd5fc3ad4d26bec675ec3
|
|
| MD5 |
fe7b7fed03c96cf5dabf802bc405bb88
|
|
| BLAKE2b-256 |
f59bbace188904dc4e4162a033c131a3f69d4b4be8ab3fceed9bf0926e2d32a5
|
File details
Details for the file is_it_slop-0.6.0a0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
344d3f995dff5cbedf9f3935366211a99ee0bc84d801261fed412cbcd05adea4
|
|
| MD5 |
5f947f78fcb9c8bb77cb2c1c744e3225
|
|
| BLAKE2b-256 |
dd5f768c9e8520cca461372063acdbe8dbcc7cdd3b12c88f9eaa825722b1447a
|
File details
Details for the file is_it_slop-0.6.0a0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae5a52f3e3b96d68dc89195378e116327287b086766893567d263254c4b736b4
|
|
| MD5 |
a7211af289c8a926cfe4d15bbc2837f6
|
|
| BLAKE2b-256 |
dcee3e7223158eb36a289bdcd80293020ba995f3aefa275273e9200a242c46d4
|
File details
Details for the file is_it_slop-0.6.0a0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63f08abdf2d305a6faea08ce6f93e10a9dacc35af5c56d2ff88e18da63847c9a
|
|
| MD5 |
a11f4a6fc707cd97358ad5bd2cca3a40
|
|
| BLAKE2b-256 |
efd7a654c85013303c4ef6e728bbffe317a333810016d416a3777c3b3b2f3bb5
|
File details
Details for the file is_it_slop-0.6.0a0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e0bbf48aae13f0de2ea78ede338370a94d50d6b2e9075f48bec487b627b2fe9
|
|
| MD5 |
c86c2ec24ffaa6ffcbf6989f6830b4b7
|
|
| BLAKE2b-256 |
a2d4d1e5032da31a6797ded46fa26f001ec5c3af37a3564926f3365c8abb8f55
|
File details
Details for the file is_it_slop-0.6.0a0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
905b452cbd3bec948deee2e66372d3c098b14f0c104b489932ff51952a4632cc
|
|
| MD5 |
cb90c126388e336d28f4bd940547c8a0
|
|
| BLAKE2b-256 |
92ccd542a7144f3bd6c0044e97f71907cb0d3df4362bf3b30880dc28ea7ce202
|
File details
Details for the file is_it_slop-0.6.0a0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cd224654b65d99e59615951854da477f9bc399468fc03705efcbddada903fd2
|
|
| MD5 |
c4e9bf0afc640c30ef313433d6d6b5d6
|
|
| BLAKE2b-256 |
87e76edcf33ae4692241f0002d749464cb53e7a1fb6601b3c77ab61dc9dba084
|
File details
Details for the file is_it_slop-0.6.0a0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55591a55164a804fa562f84e37efbca24180a4b851158116902f87a64335a649
|
|
| MD5 |
36223ff5d96da755d6b898927fc32d96
|
|
| BLAKE2b-256 |
032266d9c80922f57a9152adb9dc5601476c626d08493c9f02bd3034db18ec2d
|
File details
Details for the file is_it_slop-0.6.0a0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e79cc2ea23d24d9510204ecb69c98ce31bff3b1c223447eabf437daf6eaf5ef1
|
|
| MD5 |
389dd2b04a0e270d28cc7dcf44e2e13d
|
|
| BLAKE2b-256 |
8356c2c098f8da9f87ea3cce192c23150f80e6b73135dc8116055a25e69b32df
|
File details
Details for the file is_it_slop-0.6.0a0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ac8dbb034d72901b5d39d51f378ee9e834363c701f57774d57360fd9378bb55
|
|
| MD5 |
8e8b1a84923c7e8105218a744073da6d
|
|
| BLAKE2b-256 |
9ba6541310f0cb992b58eb44a19cb60d911667388ace3ab7f7fa27267dd99954
|
File details
Details for the file is_it_slop-0.6.0a0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b191c165e81b3d7f54b811373f48bd4b338bd972ebd17c264fa84a0f3f0d54f
|
|
| MD5 |
90c512596745f2741070816fe7490e2e
|
|
| BLAKE2b-256 |
f318195d79b63d69e2633ee29cdce3d1a2b81d82c49708debaefb28f280d7e98
|
File details
Details for the file is_it_slop-0.6.0a0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f219506479f81f9386939c3626a486d4a8ed65ac8734b5c8f257f3afbadd5fb
|
|
| MD5 |
d094027815f6f1af04049066a4372732
|
|
| BLAKE2b-256 |
316dac1089bed59941d87924b4fa9a18d79046ec61242a202da0bd73338a03ba
|
File details
Details for the file is_it_slop-0.6.0a0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f077a907b25e0ce8a1b836ad6dccdf99e51f55772fe0c7bfefb2cbebc969e84
|
|
| MD5 |
162eac6db772f6b0496237d3ea4b3099
|
|
| BLAKE2b-256 |
3bb5d36bd03e07d7e47de6343b824d9938ceaca8336f4c280fe98a911465b39b
|
File details
Details for the file is_it_slop-0.6.0a0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8078bcab33529693864e38013dd11b8357a6ccba2b184f6e2037b35ce7ef5aec
|
|
| MD5 |
a3d3d641f87b7a7af6c4a4b8f03e0a52
|
|
| BLAKE2b-256 |
a0f1ba606e66f730818219edef6c8ddabd4f2fb19d62f91f0a7a1c740384b91c
|
File details
Details for the file is_it_slop-0.6.0a0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76053a43e7b09ffcccc3cd3317730db2ae5f01ed4d27358a691a4486048698b4
|
|
| MD5 |
10ae89c71184156165a6b743b14893f1
|
|
| BLAKE2b-256 |
1c9c71c55d0baf7e92e8834562f2e75341da6021431247f54f11d875bec589f8
|
File details
Details for the file is_it_slop-0.6.0a0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
636a012226377ef57b5b4a6e73630d4d5dad4b6bc8fee0763e3b13bd094d17a0
|
|
| MD5 |
d8d14f75232000b15f47b60415874659
|
|
| BLAKE2b-256 |
8ce5e235f371f3825567a2655f94a9af7e501fa8f6b7afe43fdbf04f75f21b36
|
File details
Details for the file is_it_slop-0.6.0a0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba9505380c6a8e888543d468a0bd34631a7c097b081f50c200a48b054ad3ccf1
|
|
| MD5 |
67d18bf624477d9b976f31c953a80a7b
|
|
| BLAKE2b-256 |
37b8c6be48b266e14707727d5d14274e7b1b5d4ed45535a912ddaf13caa572d6
|
File details
Details for the file is_it_slop-0.6.0a0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: is_it_slop-0.6.0a0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01473f52ce9f87ec702a68cc0f02a4a37baaec714a38709bdd1c4c72455c0bf6
|
|
| MD5 |
2331f6a178622e2f32fc6260749327d1
|
|
| BLAKE2b-256 |
f00d0f09bbba0d55587c738ac95bbd5813d92c535e0fcb4750658dbff0c22889
|