Skip to main content

Fast TF-IDF vectorization. Preprocessing step for `is-it-slop` package, written in Rust.

Project description

is-it-slop-preprocessing

Fast TF-IDF text vectorization for training AI text detection models.

Implementation in Rust with Python bindings.

Note for inference users: If you only want to use the AI text detection model for predictions, install is-it-slop instead. This preprocessing library is primarily for the training step or accessing the preprocessing pipeline directly.

The Python bindings allow us to use the same Rust-based text preprocessing at training and inference time, ensuring consistency between model training and deployment.

Features

  • Token n-grams: Uses tiktoken BPE token sequences (not characters/words)
  • sklearn-compatible API: Drop-in replacement for training pipelines
  • Parallel processing: Automatic multi-threading via Rust/rayon
  • Multiple serialization formats: rkyv (default), bincode, and JSON support

Installation

pip install is-it-slop-preprocessing

Quick Start

from is_it_slop_preprocessing import TfidfVectorizer, VectorizerParams

# Configure vectorizer (n-gram range is fixed at 2-4 tokens)
params = VectorizerParams(
    min_df=10,           # Ignore terms in < 10 docs
    max_df=0.8,          # Ignore terms in > 80% of docs
    sublinear_tf=True    # Apply log scaling to term frequencies
)

# Fit and transform training data
vectorizer, X_train = TfidfVectorizer.fit_transform(train_texts, params)

# Transform test data
X_test = vectorizer.transform(test_texts)

# Save vectorizer for inference
vectorizer.save("tfidf_vectorizer.rkyv")

Platform Support

Pre-built wheels available for:

  • Linux: x86_64, aarch64 (manylinux_2_28)
  • macOS: Apple Silicon (ARM64)
  • Windows: x86_64

License

MIT

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_preprocessing-0.6.0b1.tar.gz (88.8 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_preprocessing-0.6.0b1-cp314-cp314-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.14Windows x86-64

is_it_slop_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_x86_64.whl (18.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp314-cp314-macosx_11_0_arm64.whl (18.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp313-cp313-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.13Windows x86-64

is_it_slop_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_x86_64.whl (18.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp313-cp313-macosx_11_0_arm64.whl (18.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp312-cp312-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.12Windows x86-64

is_it_slop_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_x86_64.whl (18.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp312-cp312-macosx_11_0_arm64.whl (18.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp311-cp311-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.11Windows x86-64

is_it_slop_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_x86_64.whl (18.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp311-cp311-macosx_11_0_arm64.whl (18.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp310-cp310-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.10Windows x86-64

is_it_slop_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_x86_64.whl (18.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.6.0b1-cp310-cp310-macosx_11_0_arm64.whl (18.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file is_it_slop_preprocessing-0.6.0b1.tar.gz.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1.tar.gz
  • Upload date:
  • Size: 88.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1.tar.gz
Algorithm Hash digest
SHA256 2ffce0205692e56ec1b0b4c313dc26d2e39af5e59031ce37bd88e833de637108
MD5 c20d42413562140c14cb9a1956472678
BLAKE2b-256 fc7528bd732e2c8411b06204ee903bf3afae50fb3f63a7506cedfd03246ada2a

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6bc03aaf885120e2104b4385d87534d63264efd5c726467e0990b2f85512d8db
MD5 efcb0ca2524837353b1866a093414183
BLAKE2b-256 213d94842f9191beba2519e949cb33f959c365f5acd55af40eb4ea8f802260b9

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e98efde8686f2e01797825ff225f08c84a1b7b66772cad1fab47529561ca8755
MD5 ae7e6217f45af008f8463f06d9cf5b04
BLAKE2b-256 f1b079105e4592cdf56648e78e844313916a05363a05bb38acd42a8f1ef41860

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 503c3d2c432041cfe7eec4dc029c6e0de6af734a93aadcdc6a077f37534f550a
MD5 5e5681b88b81a80e879e1473e73f248b
BLAKE2b-256 e42f1fbeda34b27be12ee46039c061dc2deb97a5c423a5396a78c891e71e776d

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2bfd5fbbf64669af825ec53ee2cce2dfdcaffd90572920f3d2f3346b3f73639
MD5 ac835b63a744a1c81364091108497021
BLAKE2b-256 fa46d7a2709ebad08f91e3e6651e46eae53563b53d0f2256c4fa6b50de46fac6

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 18.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e60bff974571574854d89cd88f20814d8c8cd3f14c75c453df18c91fc46fe303
MD5 85de37989438a67d1e8de3c3bcc22819
BLAKE2b-256 c385bda26630e5da50a306cb4b2a4c82536301c4d6872e68f2fda78f8b7e156e

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 057499fc2390505cf9d685612dd754441163f3de32fd39980539d731a8b8b7ab
MD5 1027cbdd3ea9a4987f229c19d676bc1d
BLAKE2b-256 9c1ca0d69e345f5ec7769a14b8dc638a9c53bbcbe35b1f4d7a1ed7ac31f44f54

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f591d4e6a8efd5262ec4319a7380e010d8e5b118bebaa84be33efaaaf4ff63f
MD5 9db834226160f97cc4cef1c777879550
BLAKE2b-256 124bd433f71503483598500af3fe25115071819e479bcf5fb2fda8608fa9d068

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e52fc951de52d1a1a8f1b15736b9f4e2b62979d3f167f244c5222386f7fd434
MD5 db9542f9c801972bf56dfe454c5471a8
BLAKE2b-256 20a00ebeae90d90a1cb15b156c4f7a51a30a89c69d1fc5effe84b3ed425192b2

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e50ecbc14b816fb414621b46aa36ae56f196955261316ebf43bce3d746a50803
MD5 a19d4ec9ecc40ba806b5de2ac307af51
BLAKE2b-256 d91b76b456d9149bc1e367ac1470565458e791da1b52dc61e45788eec9a9350f

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78b7af890cfa0186c48da4c58d99e0b4832703ce5a79fe9b88e9b7c9f8edcfc6
MD5 670106d656ee6f37cadc6a62fcb0ef01
BLAKE2b-256 a932e8ec2f5f19992efc1559723c257a628c106dc362abe3593188041e6a1a13

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ed7c32e80eef0f81b827986b02a91dcdaf8f88406697f5100243afd5b7d6c9d
MD5 1a5a561eb07f65bd5220b2c7583516fe
BLAKE2b-256 be0b1f1063ac22b28c7fd67910daa6a2330309d994d8ba29b87b7d60e1e45f63

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e681025dc3eb818430edec2926c38d53f4f8a31446981c54384a6a2461ad3570
MD5 d80ce51008fd6783e6d616426cac7a3c
BLAKE2b-256 5a2e287880995369ee3719f23c70cda68209554a0c37b9c473b0e0b5a03309f3

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e8717070ff7ca53d75fb0efe01dda1dc0091baedaf2c1fc6fbd030a97082cf2
MD5 95ea12d0c5c6f045baa0e2cae6d76139
BLAKE2b-256 347c422d79271c1b7c43f88db323a9b4c583fe178422ff980c73aeb057ef37cb

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6284338c3b6a2a0df01ef378e05f34a16c2278f38fda8c6637cee421b342f3b7
MD5 d40cde47f0c7aaf9db574e89fa5cf124
BLAKE2b-256 ff320d694d8744e67e37642139b54a2cbc2131cc792a685eae9ec07848085646

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5eead8e7e91c9a058c7c1b4f490cecb34b23db129ee439b8584e54f493d6291a
MD5 7ff9e51075d286634af52f454c01a0c3
BLAKE2b-256 e8b0d1927cd004cb08b0c2f271526c9ddb47cc69cb3d98cdbaa892f3eb010ff8

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 324a1c60c6219d4d65a098f81bfe2dd41daa50757e0034b358fa6c40d782dfd4
MD5 6ca8960b1f7c555fdf2ab3436df38ea3
BLAKE2b-256 039a949f1b9c8e2be0a70986efdfee97ef1823c2b926b268c6d96e1ce638ff6c

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c651febd9540a59343fadec5ebdac8a4e875aac1c51125fbe02d1825a8c44644
MD5 83f7db210fb9b919e2b604a5434a900d
BLAKE2b-256 da35e173ca4dc8988bf5f5a371e9619e76650664bde4d4ecc6528ff9ccd9737f

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88ec44e5d43dc1e7787a26bac164677a767f67bee6b593a9aeab98f2b66cb6f5
MD5 1bd75f184dd0536d71341dfebb05e564
BLAKE2b-256 664686a43106a1b63885f4fbe0cea6e46021285553f7717c02ffd757c9c101cd

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 857d127c539c3b5a9bc832e0c709e325d6944ddd15a4d763467b98b9abb0c976
MD5 9411e5acdcea33f389e8be73d2fd6388
BLAKE2b-256 110c58288435f2887e91b5dec7878c9193b0a92e00def20dbf38d3576a0986f8

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.6.0b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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_preprocessing-0.6.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5cb691aeee7199b9d42deea0e85e5ea302369366579e8941a6df8f060493164
MD5 e18e4010ffbc1b0582e03bea01de6bcc
BLAKE2b-256 28cfe65253dabd8bddb919b4d472cb4815c217313179cd5d1295da7cc6c27933

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