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.0a2.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.0a2-cp314-cp314-win_amd64.whl (18.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2.tar.gz
  • Upload date:
  • Size: 88.3 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.0a2.tar.gz
Algorithm Hash digest
SHA256 2ea197a418f6557e7246f410c62d416d00da151e195ca7d7b5909e51f7716870
MD5 c72ccd7d57039c95aea7c0dcb7abbc8d
BLAKE2b-256 f6783d7d811b2dda436106bda9e6f0a5bdb6f7b892833330de1feb9b47d841b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d8e89c7a1a33ea7585bbafd435efcc39b340e93265437aa1d01b43b7809823ff
MD5 7f36a6b2a11c1c0d786f176bf9d49f8d
BLAKE2b-256 c2a7441e9f9bc70a9bd8ee0bf1263025da1d6409138c6d7f98eb3b0a1431a710

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3af4d52d02a18f19dcfffa032e09876a9d974b300ee4eb44433552fd59255c66
MD5 7b6198c382b967085f7402460aa2cd82
BLAKE2b-256 f9e2a30f4b43e4bbb692afa947807b69a1c4218715ca3f7f36560c1a7e50fb20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd0dc95a29f1ca7b96cd61ef3cfd094fcbddb9fe841fa49913648db31e12dcbc
MD5 1f67eb7f2a6922cebb2193b21315d3b3
BLAKE2b-256 50e13c6aee7c5406990cca2d30f6cffa5be02c4fde610da5e598c91aeb4eb5e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c34a4891b95cfcdc9e22e40d9e6f216706268a343cc2484b8bdac03a056b8b79
MD5 df93bf6418517fb0e7efa9cd1231d28b
BLAKE2b-256 44347cb529bcea4dbb17bf66edbbb828c76197dc0e0ad590d41a80e9521bf723

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 620afcdd92af0116e4cbc86a808387d8685d6e1f100b7c02d13bfd9d1b2ad4e7
MD5 e913ec0a654071f73cd9df9248f09795
BLAKE2b-256 061642e0011f69c0f456c2dd3532e5fe1201005690ed6c95d01fa3274c4b892b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df50c162215175b2bb66cbfe09d3ed598ccd3a7fe6391d19f6a09a3f3a65746b
MD5 66694543becf585ac6dbcbe2723d1c2a
BLAKE2b-256 e062381e1158983f00489682a83f29f3f7c6c32077bae1cfd7e39eddcd1520f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dfe10779e487cabc3abdd67e3bbe9417e1eccf14885ba10be803016f4e36e36
MD5 55cf9258822815a2fcbaee4119bc3868
BLAKE2b-256 93142b60e5a5a1399ec8136fb34c32411e90b4d358b62a33b52d63b9517f9e1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2e98041fab51ef730960a8ab40efd40e0573a4c30436d5f98f0b6e56715b1fb
MD5 27849ab01128c952a4b6a845c3440087
BLAKE2b-256 289ea11cf6a9dce090e52cc5e17600f6e79d9a66537a7b0df0b0a16c254fb08f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1375adca27354e39ebf6b90c5da14ecb6ba23e0e3252f93168b2f387d6e498e
MD5 278649f0dc95ca03fd864dd53a4afe43
BLAKE2b-256 6b2758c2b5493fb0cfe79f60fb0b39245a4387b803dc86f32ae428521671ace1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1475ee28b8460070a4e616e631acd73e89c689b681eb6f7dc1c070f538f718e9
MD5 bcdbed8d65e351dc98ad5d96d6414ac3
BLAKE2b-256 09779f7bcd2f62d6538ae52032953a91416a32d68fd255c7facbee2c162d8811

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74f6a8c3394f9d04e9bfe32faa37761ef2f3db12e6e5c262c2e4b98c6460eb6f
MD5 539fe33a2c02065388ab4ab68aed6b8f
BLAKE2b-256 b7109de6eba5c93e0ebcdab2e8bf870d832d781cadbcece37b950b1f4257d440

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cfeac2f86d5e3825f28da9f3c8a0cd9018f3180189b639ee0526260203a4618
MD5 8d2e65d9b9f3210ddcb453198acf6e8c
BLAKE2b-256 be5096f7cdbedcfbb4e434545bb06d9f7dba18d8a42f8f84f9d2259e222d33f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 00e753f6884c424aad83abf8cbc5e20a533e2638810bcdc06a123c15e5804ed3
MD5 972270ef2982b02853e597ddb6d0d16c
BLAKE2b-256 16ff9eb865c0bffb270aa1fe16686a36b0a6cb3782282c2edd01a839943bd632

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52eef0dd639504f45dec643606d31d620e63aa00843229b712bc124f0c02a885
MD5 213aadad80f110268066b07428da6288
BLAKE2b-256 eb4f10490b4bbd931496472a70160023cbb80c6a747f0b81ee6f424012bfe792

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1cd348ce80c36cff62f19a534ffc0aeca72c4e380d4240311d66807ca67f905
MD5 4871ba4626fe875e8457d070f8f14344
BLAKE2b-256 dd522342d915442ef320da62c9030bd83631a333627c194b9c782a599e23e406

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1962ca2d61ce3c84c2cec56b46019c529d7949988746e0267eae56c280b80a7d
MD5 8221acce9a9f6923d2d4c3dd509189a2
BLAKE2b-256 99fb54eb2a96f4c95d8435bdb34a3c54e99aee291c0356805bc71d1d1648c4cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 daad02331c25feef86493b3ab8363ff85868875416a747343b151083e5a392ea
MD5 46af423e2222de3d0cde1ad6e7311451
BLAKE2b-256 669698a289797fd78c010889f88afd2b0b6791460e3b3d5f86b3678d06b36c1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c8e99352981223688f0d14a926f9621f3f72bc65bf517fddac59384b28bc401
MD5 877f08c33c56c84e2adbd1f8ea99522f
BLAKE2b-256 ed5efa9d789044103f71983df667a3ab06da4b8381db7d72fdf7445ac476376a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.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.0a2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7566b277dd8063195d7fff5b3e188c0c004060c09bdd800d9d67f95feba903e
MD5 c18f0b3eea34fa965bb2ae6ad7d89f5a
BLAKE2b-256 ad2bbcf0414e8bdebdfdfd36473a4486771804c2dddad01d353012f17d28b98a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a2-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.0a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62680db1edfb1a83503b02eb8708a6595514b7c7fbf22b81a91edf96df218e3d
MD5 bd1dabea94c2aa1aee8fef900c204760
BLAKE2b-256 9b00866711632a420234539b927c9213014f9fd15da26a072993f1d89bee336e

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