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.0a1.tar.gz (87.4 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.0a1-cp314-cp314-win_amd64.whl (18.2 MB view details)

Uploaded CPython 3.14Windows x86-64

is_it_slop_preprocessing-0.6.0a1-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.0a1-cp314-cp314-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

is_it_slop_preprocessing-0.6.0a1-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.0a1-cp313-cp313-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12Windows x86-64

is_it_slop_preprocessing-0.6.0a1-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.0a1-cp312-cp312-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11Windows x86-64

is_it_slop_preprocessing-0.6.0a1-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.0a1-cp311-cp311-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10Windows x86-64

is_it_slop_preprocessing-0.6.0a1-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.0a1-cp310-cp310-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1.tar.gz
  • Upload date:
  • Size: 87.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

Hashes for is_it_slop_preprocessing-0.6.0a1.tar.gz
Algorithm Hash digest
SHA256 a4f27d105f73881598aed8dd3b3c8951c7be6ba7ec41c8b20106ce3467f48a22
MD5 2ddfb9471c3f4662b0aa25ce8352c1b5
BLAKE2b-256 8b357b56b1d9543625c2e12f9951756196846c72ad2ada704240842d59a6210e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.2 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 edb9fd576349da43ef330b27678f8ce71eeba744e82a26e7d59f96f754cd38d6
MD5 6c6c03166782452e1f5e16fdb5aee5d3
BLAKE2b-256 52df3404bb5ce0df61dd7472514878be741d93b1c9be47a158627546a6e3615b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 191017f15a7d7399c7d5443ca6d097e892245f63f470e1d9e3901d5bd210e3ac
MD5 fcc044869efafa08c3ee748f88d42697
BLAKE2b-256 88b82b18721029b0ea2573edf8326bafbb9a68546725de608c705d19a3a43635

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62ade94715d0f015737eda2041d35364dad8a3c59d47d89aafb19c892f2a8fb3
MD5 b25fba3d6b368ad3f6b6298a0f184008
BLAKE2b-256 0a4132650d20a586a9093e0263d42625cd594135ff73bdc0addcecc9244ea05d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5261b5f11729d7994c7d3213171fb788c781c446a58b1773ee9b71a6c71d71f1
MD5 9f1d7b358189aaacae838fb7a5b9c51e
BLAKE2b-256 2dce700a6acd4e36251c32697cdaaff36d140b5ce0495c0888e0704399bdbf56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 18.2 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 585bfd1ae9bda350a268d9b2431bd1816041292e168f9c8248695cb5d04ebf38
MD5 13f1d7c1f80c22c5bfbab0eec7a6c813
BLAKE2b-256 0c6428e78c9cc1d33b0012923bf248669dad9578f7253269436a96828b53a901

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa9dde8c1edaee3f0bc3c07efb73e1455b7d64b7b35e42997022a7723de52ba4
MD5 9702756c1db8d13bfee0e60339911ceb
BLAKE2b-256 61c9e9810fb71e6f3e184cc08e66f897040343ff49a1616d3bd43a48fbf48a0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f288272d30110dd3b18201b33ea7e6e82d387981413dcd47b0d57b1c17c63a32
MD5 4a63ec258fe485b6bfa66f9d9b0ca00e
BLAKE2b-256 90c6a283268181752cce319429345624b474d616c1f25a43277be1434ecb4318

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a953a13c8c38c85421693eea9e13bfdd984e7d23d1ba76c3de8747d40b399d6b
MD5 d28924f947e1de51be4c8f5ef52f7020
BLAKE2b-256 aa5428c9a3158aee49bdeab113044c27eeb12947994167195d24d09f16016ac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.2 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7065e0663d84302acc3d694dbb34c217458623921cf7bae65533785405b3a891
MD5 97e4159a17cfd79ad5e0a0b2b3b1ce3a
BLAKE2b-256 6d074bbe03487b052ce9f65912816c1679ad080d79d685cf01792aed89783c99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc55a6028e716889eaf764ed1264d5e0d6f014569cda41aaa78bf1dcf749f549
MD5 920c2aebac9c0a9894526a6834360cf2
BLAKE2b-256 9dbcfcd4fa3f3ce18a7ad92a3effd4fd497bfe9f1493e2092481adfff6cd27c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 747750a8c9687a75da87ba0d934694a519c42a6631950a3505e8dfdb0661bfce
MD5 16f8a6c2b8b7ac0f80a7c1f749aa2841
BLAKE2b-256 8b177aec43b0410b8abab79c9ebadfe9235443e75399bc59b3c4b7ca409f88b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bec390f663243c078d2f5d013091898ce53af0dd2db0d7f5ee9d6302194be3b5
MD5 7b793c0480837a733270b3531d9dbd5b
BLAKE2b-256 e274c1acd3491476322c099a46d3eaec229415f67dc0c122987778b18e56484c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.2 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a02843d920abe9836daf8515a176b83d529ac9625f3e1bf46a2f743e5d4d3eca
MD5 f16ed2d8b842fddccbd23c5c9e12e2bf
BLAKE2b-256 c2ba67a54baaa3f29a7e03e92247256d759332225094c4971ea947141439712d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4aa23bd46af55895fab06cf5abe4b07bb6638605774b8097632eba83ce7bc23
MD5 91eea2611b9ed51daa514933607ba010
BLAKE2b-256 e72b33c7f5bffcff38b6315d7e42a10b812d7ce97ee6db993ee4c4dc1957b995

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5cb64d87c5856246af370cf6f793b0d9841a2862ed27370e342df7d2e75f408
MD5 ac582733aa2a20f987606f60cfb702e3
BLAKE2b-256 af1d19888f98f263968645af263275294e183c691744f1f1ca653e227b223985

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e5e97d641a4303eec632d99203956197ff96bc2a26850aac8bb2724505f39bc
MD5 5e8e80fa6c361053c3ad506bb75c94e8
BLAKE2b-256 1979f9c71517f9486eff4a2f05486663620becae709ed955c1c3ec65d069a3e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.2 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 67750906d11f955f4db96f2f793a4bd6719053dbf6b645072f7706f8391275c3
MD5 0ae36e3f1c848a9a09dd91c49bb32e47
BLAKE2b-256 4b7dd322a3df361612a3b7bb74750456e19b3bcc12d168c4652f7f1201e20fa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1a43aa329776c502b10b776c60fa7ba41edb4b23426d90618613192d9acb090
MD5 b4a0528b15e52d5ff0209fe66bacc022
BLAKE2b-256 a8a02c650078f95f58c9a30e84a1433cb36c436a5357d62dcfafdd9bf33a6263

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 800bdd5c3d963b57eed87f1f56d36e5a92a8e7bf62268f4814d09ae8ad027188
MD5 2cc4bdafea083362f8daf25dd8a7c1e6
BLAKE2b-256 f1a2db6c7649d9f25bd380aa108c6d9021a862d3ec5742ce78890a8ebec41d4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a1-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.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

Hashes for is_it_slop_preprocessing-0.6.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eb52e85c7e3666fd969f04ba49067cbef327b971e9908ac51b6275dffb27cbe
MD5 19b5a59d85276aa165dc8fbc1d5a8a31
BLAKE2b-256 2789f073c70c0181544aac11c6edef16388c9787e3261d1f4f18255dc3c28855

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