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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3.tar.gz
  • Upload date:
  • Size: 88.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3.tar.gz
Algorithm Hash digest
SHA256 7b55115f33eba24bdec77e39ea0b8c603ba133434c5c66de0455695cb7b4d029
MD5 acb87216960fc795fa7542b0c0542926
BLAKE2b-256 ba55454b3db1b4cbdc8e2ec04e646b1c07106a8cb66905b4d86820255677abf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ced57007279e9d540a1a9831935903e169b98451cb366faee8598adfcf9b3c89
MD5 395ad8936b582e3d6effa8344a27eb26
BLAKE2b-256 abff2d75e483fd12ddeaf45ea53bdf8add396f1c0d7be38d2b4044452b3da5bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c91cdec67e0dc7bb1d664c306a2e9e4c4a0bc6b2bc4db4e247e108fbf527b959
MD5 39e582a7692f94f81e0b3184e65c9ab2
BLAKE2b-256 a52cf3b70c5e80216047861a15a17e1a86658346ec3f327fb9afc81c238a979f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e058e6ddcb838f292d972549b98d6c0e801a05fafec6ae443e7be1f8baa13cd
MD5 4cf487a8866ab17d53561423a0d26b27
BLAKE2b-256 20744fd0b238669863831bf6e02b43091b2845ef8f3d84d492f6a62eb35f705a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ceb84d25801ea34cd603f764bad0a1415a62bc8d2a5fc171f194a4721a60eaf
MD5 d41fb35093a008fd4406506dbcda24e2
BLAKE2b-256 9572ff7627d5e5bd30cfb823b446406f6f2deda8be406b4ee5f5b85856080597

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 97ec357bb88b823173e74214a9f3072a16f01e072911dfdb4c00274f2a94f1cc
MD5 95338aba63f56aad9e3903ea68f4116b
BLAKE2b-256 6cb2016d11b2e46cddb94dd6fc56272611dd7a531a388e029f351d9a641d088f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6a7799293efeabf0bfb94f2d32f2ae086afeae21e992ce33eb3b9a255a84133
MD5 c059a480cc5066403a3663b79547274f
BLAKE2b-256 ab83f8f0fd1178687cd784b32122d7cc75ccf6e5530e41b54fbdd75b7b23224f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f7741bfbe72709156e29c3f3636e207fd796ae44a32f6638cd8a3aea3e1de1f
MD5 106f70bdbe4fe2b6f0f0e31000ba232b
BLAKE2b-256 82e1482deec26fdf11852d3ff66d442432903c805cb6ad98e94a1c57de55196e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a02236c33d616b16314d9c641257a6e8de15e3860dfd5687396128e63ea96074
MD5 569fc4321f9ae0932cce1acc0a7e8641
BLAKE2b-256 af7b5350598b7e1ad29748bac3d6afe1f821445136a654b519fe6c77f839c99e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3e4bc0be0a50a8effa12a30decd7d7b7c282ac0be2943012d3cc5005e4fcdc8c
MD5 bf7c1e6c318fd630c27b6ad87adbd37f
BLAKE2b-256 edd53e35867c8561d7824f9cd7af6057ee35addb4c233ba0bac4b52fc9607359

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8b4cd0dab37ce5d69d632485dcc8b4b8741e07ea027db4a97c91094498ce4d6
MD5 38bceab3b0068a2aba98b94910044b85
BLAKE2b-256 739a82ef3e29b7f9f4ebcef1520ae543f6cf917f3756e5439e42164a18bfa9ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6f6c080f99477dcfe70e8b9fb5f9a2e707e8661db9229db9789fcccd93314f4
MD5 f2c1a8628beb2450e8976a56ac9c8c6c
BLAKE2b-256 a040e66177da6ba192494d873780d90bf3b13a6ff0770ec718c84a5d1cffae90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdc7601492e5854abe7085ee13e1400103a2152c17d3fc7d277d20ca2ff95174
MD5 fb0babc01608dfbd18ff7e43a24321e9
BLAKE2b-256 e83f57b01f1a4bffb1aef48a4f9199becb5b3fa3cfea96a4a66a06bf379d972e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b70dd6c660ff4598e030c35e18e685a27619c803947731816d45a9d6ad4aff4e
MD5 07a75f27587537a42131e9f0dcb58dcb
BLAKE2b-256 82a4d8fc448c8aeea679b2086d3f140de2e4ea80de8604183e836eb806d7566c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2bb992c691e47509abc134bbc2826266f5a7d3ecae127a685a43c3c3c8b4851
MD5 ba921ada6b536e7297a9d5395577a243
BLAKE2b-256 992fa578e5f1c230cbc53ebf20853478eaa50bcad04e2b1992c7abb8f6227c20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e584430d109da0bd0f25251e4be123b66aecff5b4d246cbc9beba6ad8815134
MD5 47835b247807eb8be4612bcd7f91423d
BLAKE2b-256 62621cc06d51b3ce41230a95cbd93416b1c7a297cd6ff76c6cf2d451a4947b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d5ec92d6d25d2c663ac951583f5dd8f07c71efb77103baa1e5ae385fc44b398
MD5 82b1d63f394fee311f9f0667863ecc49
BLAKE2b-256 627c5ce619ddd3ecaf6254bdc2e029fa7c96ba1bf3eadcf4f557b8df1f0a0242

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e92f977c9adc5fe4314811efef77d18df10d08de6ee5e5315d57f0759bb100f6
MD5 935f09c51eccd30a881e75bb16f55766
BLAKE2b-256 0faa31ff0b389c9c6f7dd1a51277d1b09afbcf6cf57fdc261b7d7cbf80ad2ae6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb0c80fe52a155514a1533e8c824ef2956e1f286dff7a8c57898debdb4b57622
MD5 f6f77fd8bbad16276d6e8a4a6ff97e22
BLAKE2b-256 5c5acb11bd97195bbb28935f68afad48e812688ad6b13ffe13a15e63baba21d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01295615e14e4ae7e677e60db8bdd8568cae9b5d06a65c0814ea5a56862e0809
MD5 f76790d79ab43d148371f51118e717f1
BLAKE2b-256 3ce190c7ba56c8c0546b68eee71a9014d99a8f0ef548e36b67f65bacf02e7f0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a3-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.9 {"installer":{"name":"uv","version":"0.11.9","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.0a3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f3a0dc95ae5db605d33450fbc2fef13fe0cabc97e95da7d0c2e209813405629
MD5 209597e9484f55402697e6b3d421833e
BLAKE2b-256 774209f79b76eee008d96ca66d76db2d40536b6ee3d339738ef7181c01faf529

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