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.0b0.tar.gz (88.7 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.0b0-cp314-cp314-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.14Windows x86-64

is_it_slop_preprocessing-0.6.0b0-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.0b0-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.0b0-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.0b0-cp313-cp313-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.13Windows x86-64

is_it_slop_preprocessing-0.6.0b0-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.0b0-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.0b0-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.0b0-cp312-cp312-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.12Windows x86-64

is_it_slop_preprocessing-0.6.0b0-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.0b0-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.0b0-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.0b0-cp311-cp311-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.11Windows x86-64

is_it_slop_preprocessing-0.6.0b0-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.0b0-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.0b0-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.0b0-cp310-cp310-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.10Windows x86-64

is_it_slop_preprocessing-0.6.0b0-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.0b0-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.0b0-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.0b0.tar.gz.

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0.tar.gz
  • Upload date:
  • Size: 88.7 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.0b0.tar.gz
Algorithm Hash digest
SHA256 af26aa171332d8f5adac544eb2085be4a3442625e9d50ff2a4fc4b74596bc1f4
MD5 44d03899387b7ff1facd5bee0f6a3112
BLAKE2b-256 aa54baee1b80c3bbf809b3d8095c17319856a8131f81e46e0541d5831d8177c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 977d07a497fe6680ca1771e8f6dd59a5e74794c91547a451016964233d14a82f
MD5 5a68b3e352c9a6092d38b21ab68a05bf
BLAKE2b-256 53968e07bba1428bd753cd9f4a51dbb754036193a2aa16d63b81ad81f20b6584

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eeafcd7b48670bc6d0ed378a0ab207fe6b4d0a24244c427b4b16a1fc85a5e622
MD5 99d883249da13f5e14c6cd3150c1e346
BLAKE2b-256 cfc67d51f632fe8ebee9bd1cd728051307e18cccc40b28369e07b4f973fc05ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e22d35c392697ed36a44bdf1c6b6e65bf167fc2fe4327f40ec82d9498a7eb968
MD5 7aa3c335375063b145df50d0700fbce7
BLAKE2b-256 8e35b562464488b5ee987ccc5dc150956f27b1c4f84bc3f2a24b5cb8514880ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89b7ef94877c95f04f6c699d742fff1f2976b964a68212099fac49753c6ace51
MD5 394ff0412183bb66d8ae94addb3ce36e
BLAKE2b-256 c15f6cd37978631ba8a403bf6c79fa4802a831c4d226374cf690854ce49838de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 169c4fdc462f1c88d6c234e24203db1c969f095fbe637e9b6a0fa7280b254ee9
MD5 383717fcc15095aafb798e72e342cdd9
BLAKE2b-256 ff404a91d9191dfc1bbdc2ab2480159bb96d2237b9b6813518b7af8d7f2f93ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d44a762d60724cd0ecca53063cb5b1f71630ab71940f47c59850080e76ef4ec
MD5 1eb3cec72684425d4d71d52cb60b202c
BLAKE2b-256 af467307c9cfd82c246b644b35e89d4e66e37cc65c7a4fd92f5e9a0ab7dc9bdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13793ae14721bc46204f9f8d5e25f310f8e7ac5f38fc922a08013777c83465a0
MD5 0c161d48e0cf09013d9bb03b4bed4f10
BLAKE2b-256 28ba24e3507279b47522051e38110ac6a1f1034304ec930c3656e156e1019d48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 660f212264bd419f4c5676e4c636d5561c13979625cc31a97d498868f7ccea6b
MD5 9ab89c56e0adf5b6167af57a843dbe15
BLAKE2b-256 704aebee2d4dc74aad3f12816f66ad52dfa31d3f83f0e9f7af07f25e80fff108

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 971008d268cf3394017355e6811ad7688dd0381c2ca1675ab090f7b9438e9928
MD5 6f59dacf4e4716e136f7aa3b85356dfd
BLAKE2b-256 78d1505d2aa6f573160efac209c52070f7934d406d32391f6064ff344436fb30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb7c5322d81bdd53fa43425e59cdc549daab832d4a0c5da568c52438d51dd0fd
MD5 0918f8b19a8c720c861cfc68cd340d47
BLAKE2b-256 d347f7daea8af7f5c938cd8604787f70a532e2edab692f219d4e880ecdec9acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff71df38318884accc343aa8b31526c686946e5db17d088735d866af9ab76ee2
MD5 ddb9c760879580d0bd9668f77f04c549
BLAKE2b-256 ccbe6b2c844e3070cf456a0f5881e2a08bef9390b5e7b5da33161bf13e1554e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e7929dcccdd2af18eb2332420ca6de47d677196f9c5e2757dbb868815726067
MD5 dc3802b9967de5b2edfc686415b9e23d
BLAKE2b-256 3a313db55787a5ddbbaa96552df2665a335730727152b139ef4c4c82bb66a483

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d06b4a47e945a8d53a2a17fc3cf67bb151b47293bb375f3f827c0eabc72cee0
MD5 f6f4e6cc25ee9d3f67201e5842310b21
BLAKE2b-256 c4d49cfda1ff8f677016fbe913c4dabc9e6aa9448853eb8bf7629fa07ee40cd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42a3e96eca138fdd45305e32ed921d4f60f74bc36638300b3079e9db733e3356
MD5 1315eedde11809950e823cb13a990840
BLAKE2b-256 0ae4d34652da329aa70287e12dcd66aa0cf94b9af82293e949790ce219e136e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b26f5c494ece074a15ee8056b4f6b210404d26cb61d85195b1330ab4f834a130
MD5 cdae9494f6c29c713ab77c4f759cce39
BLAKE2b-256 00d35b3451969aeaed14cdb84638a07e3e9342777e0ef66ffbd54a85fc9a0dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 082bae3ebac6df06b3ed2ecfc1e911d4d8f3785f2be719aeb270c796c5a4e338
MD5 ae18d2e9c7d831162c32fc78201c8e12
BLAKE2b-256 8328978ae203d920a5b5af6110efa90f10a58db4994f4baad3c7feafc4195f02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c62e8a68e6c436ab461cd45c70606d53a30f8d53290961e39d1c3b119b302662
MD5 2dc340e41b9e92685772ae345b9393c4
BLAKE2b-256 00350964d9c9bad627581c69fd7782a03483886bcb7594bfb661cc0c605d0568

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 743676fdf99dca2355c711e0ca9a398eb4e5aac171128c1780379b6caa4397c6
MD5 6da10f4cd0ab62329c6f3cad61ab7c32
BLAKE2b-256 4a4aca9fe02f4deee89c1bdf863892d3c1887e642e02b54832baa0913ad647d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b89f17cd87aea64d51704d73c8dd3608c9fb1049f93f8a14345c8af5a91ead54
MD5 96c14d759551b5f8811610b7a78682dc
BLAKE2b-256 98cdff475e68d8656ced8e1c9a8b4b2d386240bb656c2c3d5df367c0ea98a32b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0b0-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.0b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfe7a9618e83edf5fdce8d42bf9cf439b53073ec603a3d6b5fba18e1deb33485
MD5 f0670f4bcca10e197c5065fa5a7d6368
BLAKE2b-256 8d67bbbc897c92dd6d57da1d61506796065e57bf8f191bde69cb16d55ad6a3b8

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