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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0.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.0a0.tar.gz
Algorithm Hash digest
SHA256 3bad947337748554a6518e7236e2eea98070fe1f78f1c9331c5b59152b4ad08c
MD5 5fe8c819fa564595cd12d34dfbe6e838
BLAKE2b-256 68fb99312d3030bc433f548c5697871c11d31366f5c44b4b80b0b8fabebe3934

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e7687c96a94a216b06ad571afc256aace60b41e54a0010b228e6cb99cc4dadaf
MD5 2fdd20b5f80dbc2794fcbd48058efcf4
BLAKE2b-256 3e33b4d61511d4b7bfc78226af18e92d1df412c3e7884534cbd730e342649491

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8ce59567df4f288b9dc3b1282a7993167dc56ac99c774dd18997af2dbea516f
MD5 18d9970d5bb046b1e4926c27b54e7ddd
BLAKE2b-256 386582a085ae06aec49950542383f4533f30e4170bb03301ded7af28d008940b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a7b793ed24a97ce3d07134c678167e54a3fabf7b1dbbb264e3f7d66a6455fc5
MD5 57c7b976b9baffdddbda3bcb1ad893ad
BLAKE2b-256 557aa0e6e7cedeb267315638f668e0ca2bf1233c7686649ca504d773d684b900

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2eee6a60c7a3c461bf102d7fbd26f2e1b49c4e03cd27fdcb457e6abff09fcbd8
MD5 8bed9d526dd623c214e144272783eaf2
BLAKE2b-256 0148c1220c724b79b6eede6308e29ee6e0a9e86c32b83d6ea916343de9d21a3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a8e6a76fdc7cb3f84f1e503af24c81372abce85675e9eda8767f4684f998932
MD5 f27fb64d5e26edc7fbdf0478162fb46e
BLAKE2b-256 c135935065be7483ebe7d9108fdbdff32b7f31f52340eaf5a66df4680150c308

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cce13d7253dc790967b61d1fc4cd01cbf91b3689cc0b4cf03a77bec7241b6147
MD5 9a17e3aaa4b081e0347c487cc7ceac04
BLAKE2b-256 2becb18f7499e1ab07e1afe675533c677b25c74dd9a00ac3d86247b342ff3b73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6902aa1fd0dd66a8525179dee0eca5804b581bd655b8f5ad742a7937bef6225
MD5 69bc3695cf9c61ddff00297236cbf295
BLAKE2b-256 b76dd111ef57d44727c9b511963e859f2a446386b0c3aca269a0fa1b4daf4662

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4730e3a05ad53accca226cfc426ffd5f939b507ae19e9cc3217497b21e598e0a
MD5 2ed8b09c8fbc7dc6f9381aa51f64d0ed
BLAKE2b-256 d670fabead4b5ef904ad5500a162f4246e7d84301bfd8c2f4a8103a7130bb2a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0185694fb82ef40d8c0ca9619e580c210bb00fd9425aa64e0b9e19c1152740e5
MD5 eaebca16e6dfee6128aa8cd54cd3e96a
BLAKE2b-256 e2d5458e350242d2f369c4609a7ee2740f939f4d7830af9e66f3a51113d18352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aea33675b7aacc002249664565e57d7bd15b375663d5e8e68d67177fff618578
MD5 3a3bf73bef03d39f8bd482ebb37f3fc7
BLAKE2b-256 750e024d3ccabc5870c89773df809a4e2b5511552c33d3202952a94fe5e08e04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a23d7b79ed19422a7f266ad793443fac5e2a2f797725c552bb89ba7b6fe7aaed
MD5 1dd94b85b6f417406dffad56713e1060
BLAKE2b-256 d1864f2258bc794e415f8864e854af3bd2055e67b6498b252ef5c5cb9ce70383

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 def943b27c7f7b85ed123be7e442f92a50412ca6613739a21df456e2b215f63d
MD5 91a278a9a5d27be008f64639028233cb
BLAKE2b-256 f3f161868316877e8b19077831036189e9cef5c0428de86f85f3256a6dcc1c7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d564a324fc9b3c98e34c2567ed677482dc5b2aee9310639bbc1adf4b7a1c1eaa
MD5 f68afe8c4d33213ec164931a58398ee0
BLAKE2b-256 bf875cd89cfac43116b2d5f0caf2008b7df6465e130f77db675ff9e4e5e247be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6618d405a2861ab7158be0184a9ac109bcdc0e2d322409e0a28375132d14a18
MD5 84e21b74914926d5d71f167c4f627f97
BLAKE2b-256 a411de6f80e34010ecd5350c5b2b2b6bc25ce5486e6160eb078dc8220c21b9a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04d8e50e6ceaa3844afefe2a5257ded60c5a7d2868f402d119fd8e3fd2a2d64c
MD5 4f6de98efab50f3a3a95d80131206939
BLAKE2b-256 c5385d1bc4e9aa50e7bf351c2db37fef6e560e3c1e2427d5125f2e9c3810f441

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eaaf17a2ae281b5a4b2f809cc2122e59a137d6c4d21c75a16fe7944cae63cfe
MD5 72d042da1e0d9de6aad010afc13a5be5
BLAKE2b-256 1663e9b8d2e5bf07410c6fd5227dd0ac0a658fe19d09dbbd0865e42d61170cd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31c3092f4ef54b238235c0104f7ee71cb14a74b6242cea7e6cb42af454ef4694
MD5 836662c4b2168d64dfb6b25bee1fe0bc
BLAKE2b-256 e9a1547a4d625ed3cc0cc055fc7cc6ebd8d62a77f1d97063363f37e49639318d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aeecb245ffc8b460400e8d84e4f515a24e6086942b994a407fc09979e5c946b6
MD5 65fae4333b898f40e43e771b1f1e4781
BLAKE2b-256 ee47ef61f9b60a392366238368238bafac694b24cac4b7481808f7b8f3fac96d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 470b94c74ead5ce136474f48c7523ee7f13f4786b5c660c66e18863d4926a67a
MD5 22d13510c021c350415abe2406639b82
BLAKE2b-256 b4512642b13cf460d0d53be5e685b1c1bcebabcbebded42edfec18bb7c52c360

See more details on using hashes here.

File details

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

File metadata

  • Download URL: is_it_slop_preprocessing-0.6.0a0-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.0a0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd26c14244a9dc716e3b0c58f89c6a326d083eebe88301cee3146e15cca09125
MD5 0f9fe2111cc4f283b5c9c71efbd91678
BLAKE2b-256 04fce139c230a207bd7f880dcc64caae5c8124c80cedbbbb12ab9b0f7d8744c3

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