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.5.0b7.tar.gz (66.8 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.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (18.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.5.0b7-cp314-cp314-win_amd64.whl (18.3 MB view details)

Uploaded CPython 3.14Windows x86-64

is_it_slop_preprocessing-0.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.5.0b7-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.5.0b7-cp314-cp314-macosx_11_0_arm64.whl (18.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

is_it_slop_preprocessing-0.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl (18.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

is_it_slop_preprocessing-0.5.0b7-cp313-cp313-win_amd64.whl (18.3 MB view details)

Uploaded CPython 3.13Windows x86-64

is_it_slop_preprocessing-0.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.5.0b7-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.5.0b7-cp313-cp313-macosx_11_0_arm64.whl (18.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

is_it_slop_preprocessing-0.5.0b7-cp312-cp312-win_amd64.whl (18.3 MB view details)

Uploaded CPython 3.12Windows x86-64

is_it_slop_preprocessing-0.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.5.0b7-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.5.0b7-cp312-cp312-macosx_11_0_arm64.whl (18.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

is_it_slop_preprocessing-0.5.0b7-cp311-cp311-win_amd64.whl (18.3 MB view details)

Uploaded CPython 3.11Windows x86-64

is_it_slop_preprocessing-0.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

is_it_slop_preprocessing-0.5.0b7-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.5.0b7-cp311-cp311-macosx_11_0_arm64.whl (18.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file is_it_slop_preprocessing-0.5.0b7.tar.gz.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7.tar.gz
  • Upload date:
  • Size: 66.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7.tar.gz
Algorithm Hash digest
SHA256 f1910151d9c7eb97ae6d0626f6639f7757f7de6eeb923ad58c5f6eb4559ca068
MD5 ce624b70faf61224af97e9236d5b4924
BLAKE2b-256 256f7527f7d5e2a792354bf84e4af4574ef3ae21f2b8d0a762b59a04c55da9dc

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c272f3f328dc49d7d5865351e8eebc5bb3dfc3e2efdb5513802bd7d8a31698a
MD5 3a8faf79386780103d0d94c20cb7fd25
BLAKE2b-256 3ab713f36c736ab1dca47e797004bcc7254dce2c5422e57cbb8fb85e554fd30b

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f83f05a6925edba06ae98f36819675c55e34f21237b21086170aec68069d824e
MD5 d1fd039567aeaed06b537f475e7b8897
BLAKE2b-256 fa0b4e8f9b16f2ee801004f4fbdab2420135288c73be2238674b68765c110557

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0457e6ca61b6be488c3e3a144078b7fd46dc82873db4b5b7accdce2b83d5378c
MD5 a94db69badcfecf6ca5eabfd1d376ff3
BLAKE2b-256 7470605483949472cbc621794c5f04f0879bf41f5d2593a1e09c582922e2fcea

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c45869496340d9099f4cde1b551c19ae254aa7d2dce55b21ce0e69e7f79bd3a4
MD5 16d8464adf2197692109b112d019431e
BLAKE2b-256 2f978179c52790f36d50c0d05ae9fa755a24e012ee216b425afc7456c16b0bbf

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5ad5400843cf5375cf32adf9d181c0e19e226d94e00f1c87d0508f0d21690b7
MD5 1cc9afb63c0853b5b93e4415e3842acd
BLAKE2b-256 c663fdec42810a9809da4f39a5672086e0c1f08f1702f31bc88741c93d320cb8

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b13dafc2242fec11f30f2e517e3964a2f2f80052a5cb1920139fe0514de17c97
MD5 98d459db1affe501a8bba0d4be80f56e
BLAKE2b-256 f730ea13d48ca9a09126314f89c997a56eeef3dd076ae874f26acd2e95c441fd

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 651fa58f9cbc0bf9c0df64185709962583ee942fd772c41d3a1061d14a45406c
MD5 c308e8140b519b18189bcb83ab622aa8
BLAKE2b-256 2be576bb71f25b65e764a7fa6bdceba6d842ae7260ffc299efd437b625c5815e

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e7f1bf92285728d77d846c227e80ecd2538b05d9826f90ecc9aaf7b7f20ce0f
MD5 57f2195a2f3da730f19c9ed95056f608
BLAKE2b-256 a751ce9ec760bef782624c00963c026da76ee9c48e14da5933832a0746c65d53

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ebe8aab2dcfcafcb285a43d8a251aa92752ae9b85bdf8411e82a43cdca62a186
MD5 d2a97048593cbd9bf94ac999690bdc9d
BLAKE2b-256 5386b0f33bef3e7670b2d068aadfd18233038916d52ff752dfa77a1fa6e0f3ad

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8ab365a0454c9ce95956cb5b8390510e5311b150ff27f5042d4ab1b757fb695
MD5 d2f5c5123e8e9e8211d45e5829f71de7
BLAKE2b-256 b7ba7bbf81b51e43ee86f54636c2bc7d4e382132e2caaef972069d73a2505f30

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e170fb29deef4336c704c3479553da72694a7a079f3d712e5ef6097a631c7a7
MD5 63aeb5d25e72803ad73279f6a96cf102
BLAKE2b-256 5e535f8fbc3ca373bf1e3faaaedda63195e6b39d2845ec2f523eaa07b4215b67

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0247dfd54f93da66ef47daa53a81c7714034077fffbdf60af2f936e88feff865
MD5 d951eea61cbf7573bd44b3e399492201
BLAKE2b-256 15fa6bb90cfb7263705c5dd439963ba43c338e23804f2ab7a64304810656c351

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7baa159fe481bb6ff886db10318854cb09a8ee254df1a9e52bef85c55f15d57
MD5 aa0b64b76df090569b3f3f29875e7f5c
BLAKE2b-256 c7899c044f8982141edee0debe84e47c408b612016322d1d3b25b0e58b712596

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9c34283905427900068d8843f01ce47a82ef032261aeb467ba9a15b50218cda
MD5 5be017d8b3bff322e4f766a96694b32d
BLAKE2b-256 2a9caad30c91f4e134465e8025a7a35ed20536e109004831df641be001921876

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8572b46fd6a2614c61ede222705b44bcb41ec8ae3a673f8a46b38db20efb5d5
MD5 0283cd30955bcde4ef3e45369f91e7a6
BLAKE2b-256 fb9e815a3909abe684b6bd2f30495bbebf5941549012df89e22c0fb3bd24a502

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9007edb12e2b624f51b1407374b931a630b75040cfea95b660726a6734888c1
MD5 724f382ee7701c1d97cd3a5a7b32c643
BLAKE2b-256 24d812ad71246f09c06684132205387e1cad35eaa4a70cf81960b7e7b5462637

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec5139808e35d122c1ef6989b3d54b87eaf2897a6a0aa48847a8924c58f15ca9
MD5 5d1b3fbc4f7af150c66a641f14f85088
BLAKE2b-256 e647b7f1394223387dfc6882910d07d3c8e000dd34d0a1ed5f4697fe5ee9954e

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb6c5e8edb85de6d69af994fe19b726254dd4c090921001591d0441a494d4ac2
MD5 6ca0804677cf11e117dc3e5ac0a808f7
BLAKE2b-256 c1282e2aa96e14b5f35092258d1b3757258b51c26cc20f8f32ad21a2c31570cd

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c13f1bed8ef5b79209ddab8e1127b794cdc7552fa68a76621da971294e21a3e3
MD5 c76eec79e19a560088fd09b71b46b25f
BLAKE2b-256 764749a23e514257a8973a964439ac03bcb6570dc663e1a32a14a63d0942f941

See more details on using hashes here.

File details

Details for the file is_it_slop_preprocessing-0.5.0b7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: is_it_slop_preprocessing-0.5.0b7-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.5.0b7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a95f826bf4e4061c5a86c03f49bad44aa0faafa2855859f49a5bd7404c41563
MD5 140958292b42e7087fe486c34da06610
BLAKE2b-256 915919ad906d8b3bf714cc15c9b52ea079a1e1f83159fd615baf4d19ebfe924d

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