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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4.tar.gz
  • Upload date:
  • Size: 88.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4.tar.gz
Algorithm Hash digest
SHA256 82dd40497d7996c7be3c23ce50afc66c9e7105f440aff1809ab42d404537899a
MD5 6e575672fedbc4059f053531dc84a0d0
BLAKE2b-256 df60beaee77fb141d636a694319f787d8dd7e8e1c073843447f725789c1258e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 646c8053bf7017c131a20785e6c1e481291ad79a9a17aa151fe7d558503b846c
MD5 32f2949add810688845316fb4048fc9d
BLAKE2b-256 3ab69e6c80c2bb9942e39dfe6037c91fa3354909f1ca4756cb05f9940a4643ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5cd2756353d82809094ece80f93e770aa5393c9baa6962fb93f8d88801d6ceb3
MD5 7599f0ac0ca5f360bf68a2a89db27d80
BLAKE2b-256 7003ea36d194562fe1bf1821c22efeac972daf7e4eb3382155b2fbaeb984410f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dca93f7fb64b3946495dd4d5a904cc1123c2a9cc391601d300576f7f7d0c813d
MD5 c60b720680069def75776d58ea91f8c8
BLAKE2b-256 590ce5018d226a828d5d420f77407069729cd518e5e47710c2c87aa0f3f6b289

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9554f4d1b8f0bd695db116f696defbf989330d629c093e54fd66bff717b4815
MD5 06f6218c5c466ef57fed446a5ea738bc
BLAKE2b-256 cc9547369d3b3ab2f5c48d868984ac0c7927a46e797537ab277cfd5daf011d06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e050dd59f288ddb3708d6a9940ea40c9cf73f3f6b4899267001a30c760dec6d4
MD5 7e80f1a4cee1c7484edf629b892aa9b8
BLAKE2b-256 65672b66ae0a34fec46b66bb7dfa0806792f0006237ed545a67887a58a136451

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 365fa32fa8c954e6df90f0d734359ad42cf508fcde7faa8310c3db68cb99f75e
MD5 effe0647ee1a63e985227ace5bd721ef
BLAKE2b-256 f868b3ea8287e5f21892c0c69b34b00d5d2c58123c1505fb2aef8857247aedbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf22fce6d37ad51a34ddd55b22ad37a513df9ca56d934b0d64b39a8b76c70879
MD5 a2aecfc7420b934e6cc8f70bc5e8a2a5
BLAKE2b-256 5e6ced4a3f9ded9b33326f89347311579bfde79cc636ea78bf47143dfdc7b90d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20cee69e7df024a5a8a8eb34722dc5ef80b55a21373183e1da5ec42304c52a09
MD5 b447f57ddf2de83c0f93a804435aa081
BLAKE2b-256 2d6ed107d8b8e91ee1d7bb2a372141985050e299041e9d8cda73bcad0a176856

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e0478ecebec00a518010744a9397beb11ce8e89a0e83995d39ebe407d8eb0dc0
MD5 e7503c7834ef76bcff364739d521726e
BLAKE2b-256 af697ab39bd464198d9efc09de993f272a06265d0c606683bfa551c78472207e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6cc30d25a01082339793f1799ba7b6aeb16ac74f0a9ba25c02d33d686bbb6648
MD5 85e8732ab936ca29c1c6e72f828a0d2d
BLAKE2b-256 1d9bb091d608c144e3aae8fd81e580793976f287fd77dea700722e822a156db8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9814aedbd4db9ad321f43702334ea934a974541ac4f0a4c4389a80a22a50ceb
MD5 87066566dd7920a998d97c8d63f82cf8
BLAKE2b-256 066c3099059704018e52c06cd5cf3988ba21ca63afe4ed0a9fc961394465a84f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b557dcbee8e125d2aa3b2e6307c93d6dbcfffda5a267c3d315405e56d64ca7e
MD5 c642a69b17cb432481c99582e3b1be1e
BLAKE2b-256 60683cbe36631a80b53d99595d1707b44345c11f343df98c72c2682cb8cf76a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a3a3c86d06dc4f1de26752f037cf544a4e5782a71f643d26b4ccd4adb735a946
MD5 38cb34badcfbe542f13245a909207c1d
BLAKE2b-256 ba2fe31dd9777d325afde3fedb66b88b89c0b6ae95afa5f3e9c3f016a8ccb9f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 764d6ddaba96d4b679dabd871abb52cf6abc7eddb3075f46e4a094be7c56d175
MD5 e4b95021fabc1ed706b02a401a0d4931
BLAKE2b-256 32ffa01cc92a8712f54bc9fd7976095e39ed4cf332580fbaac89e90ac94710f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef6683c338685a1b2688711c3699b8b5c00ab79dac8b3ba76266314fef2e2cfa
MD5 ef0237de73683d60100a25e203e1597f
BLAKE2b-256 735e8feb782b2dac5f4cf387930baccd0e79873d8a9470c8b19d31957de6d1b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7919c46eb97ea5b6eeccac2eebddcf67080b85cb6104b68074d67c164c04247c
MD5 1b015447914af8551a3ff02d7ee21d52
BLAKE2b-256 04dc3cc1d1a01f4c6cc9ff24ba94a486237bbccf5420f600ed7040697df24689

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 06c2ede6f5c3d9ce23b47e560c30074719a02a3b038f21d2f48654025e4ec1ab
MD5 fb120273395c369ecb30d7dceb4833a2
BLAKE2b-256 c2ec15df469cd22363fb330f82aba46d9ed4c23f01ca420d051fcf8dd8d7f8d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aae66c0826b781f3cbf1b5c44bf713ca6f7af46f844672a598e4a04bd8bf60e3
MD5 2055ed6fb35269bdf1dd6d5c05edcf66
BLAKE2b-256 d56441bbd3b4d920e510275607b9cb30ab608edacefba6b4bf47b0800eab94ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ffe8f892862a4947d0957bbb4ee5b8122d2040251f9b849d46a3551783ece17
MD5 464aaefb0c9318e763228d98bccbf066
BLAKE2b-256 9912a8ee00633c7fdb5f528eb16e681f3e1f4dde2f05b80f2c50db2bae7a9374

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a4-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.14 {"installer":{"name":"uv","version":"0.11.14","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.0a4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15b40cd7bde20b8cef5d31de416f1029686ca9f9f4641b333ccf2cd615bcecca
MD5 a36d7d6e398f327609d66cc33cd7a6a0
BLAKE2b-256 56254dff87c6441605121990614f49892226ad2190387146a488a3b655cf331f

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