Skip to main content

High-performance no-code data preprocessing engine

Project description

mlprep 🚀

The fastest no-code data preprocessing engine for Machine Learning.
Powered by Rust & Polars.

CI License: MIT Python Version Rust


Stop writing slow, fragile pandas boilerplate.
Start defining robust, reproducible pipelines.

mlprep is a high-performance CLI tool and Python library that handles the dirty work of ML engineers: type inference, missing value imputation, complex joins, and feature engineering—all defined in a simple YAML config.

🔥 Why mlprep?

🚀 Blazing Speed

Built on Rust and Polars, mlprep processes gigabytes of data in seconds, not minutes. It leverages multi-threading and SIMD vectorization out of the box.

✨ Zero-Code Pipelines

Define your entire preprocessing workflow in pipeline.yaml. No more "spaghetti code" notebooks that no one can read.

🛡️ Quarantine Mode

Don't let dirty data crash your training. mlprep isolates invalid rows (schema mismatch, outliers) into a separate "quarantine" file, so your pipeline stays green and your models stay clean.

🔄 Build Once, Run Anywhere

fit your feature engineering steps (scaling, encoding) on training data and transform production data with exact reproducibility. No more training-serving skew.


⚡️ Quick Start

1. Install

pip install mlprep

2. Define your pipeline (pipeline.yaml)

inputs:
  - path: "data/raw_users.csv"
    format: csv

steps:
  # ETL
  - fillna:
      strategy: mean
      columns: [age, income]
  - filter: "age >= 18"
  
  # Data Quality Check
  - validate:
      mode: quarantine # Bad rows go to 'quarantine.parquet'
      checks:
        - name: email
          regex: "^.+@.+\\..+$"

  # Feature Engineering
  - features:
      config: features.yaml

outputs:
  - path: "data/processed_users.parquet"
    format: parquet
    compression: zstd

3. Run it

mlprep run pipeline.yaml

Result: A clean, highly-compressed Parquet file ready for training. 🚀


🆚 Comparison

Feature Pandas mlprep
Speed 🐢 Single-threaded 🐆 Multi-threaded (Rust)
Pipeline Python Script YAML Config
Validation Manual .loc[] checks Built-in Quality Engine
Bad Data Crash or Silent Fail Quarantine Execution
Memory Bloated Objects Zero-Copy Arrow

⚡️ Performance

mlprep is designed for speed, leveraging Rust's ownership model and Polars' query engine.

Operation vs Pandas Note
CSV Read ~3-5x Faster Multi-threaded parsing
Pipeline ~10x Faster Lazy evaluation & query optimization
Memory ~1/4 Usage Zero-copy Arrow memory format

Benchmarks run on 1GB generated dataset. To run your own benchmarks:

python scripts/benchmark.py --size 1.0 --compare-pandas

🗺️ Roadmap

We are actively building MVP (Phase 1). Check out our documentation:


📚 Use Cases & Examples

Explore full examples in the examples/ directory:

1. Basic ETL Pipeline

  • Scenario: Filter, select columns, and convert CSV to Parquet.
  • Key Features: filter, select, write_parquet.

2. Data Validation

  • Scenario: Ensure data quality before training.
  • Key Features: Schema validation, quarantine mode for invalid rows.

3. Feature Engineering

  • Scenario: Generate features for ML training.
  • Key Features: fit (train) / transform (prod) pattern, standard_scaler, one_hot_encoding.

4. Scikit-Learn Integration

  • Scenario: Use mlprep as a preprocessing step in a Scikit-Learn pipeline.
  • Key Features: Seamless integration with Python ML ecosystem.

5. MLflow Experiment Tracking

  • Scenario: Track preprocessing parameters and artifacts in MLflow.
  • Key Features: Reproducibility and experiment management.

🤝 Contributing

We welcome contributions! Please see the issue tracker for good first issues.

📄 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

mlprep_rust-0.1.0.tar.gz (83.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mlprep_rust-0.1.0-cp313-cp313-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.13Windows x86-64

mlprep_rust-0.1.0-cp313-cp313-win32.whl (13.5 MB view details)

Uploaded CPython 3.13Windows x86

mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (14.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (14.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mlprep_rust-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlprep_rust-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mlprep_rust-0.1.0-cp312-cp312-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.12Windows x86-64

mlprep_rust-0.1.0-cp312-cp312-win32.whl (13.5 MB view details)

Uploaded CPython 3.12Windows x86

mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (14.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (14.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mlprep_rust-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlprep_rust-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mlprep_rust-0.1.0-cp311-cp311-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.11Windows x86-64

mlprep_rust-0.1.0-cp311-cp311-win32.whl (13.5 MB view details)

Uploaded CPython 3.11Windows x86

mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (14.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (14.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mlprep_rust-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlprep_rust-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mlprep_rust-0.1.0-cp310-cp310-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.10Windows x86-64

mlprep_rust-0.1.0-cp310-cp310-win32.whl (13.5 MB view details)

Uploaded CPython 3.10Windows x86

mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (14.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (14.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mlprep_rust-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlprep_rust-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file mlprep_rust-0.1.0.tar.gz.

File metadata

  • Download URL: mlprep_rust-0.1.0.tar.gz
  • Upload date:
  • Size: 83.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for mlprep_rust-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3672bd1c59fd63c6aaeeb445cc32ab2ee8bae0beba50682d0bdf19e8ca4e0b41
MD5 3f515e28d8fc64f95c51ef610eefa139
BLAKE2b-256 ece7d27029587e7370910442e7f4802cc937feaafcc5eca75401613cf4928542

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e47c99601e2640b6f3e7073402e0a7320149ed83e51ea3355af1bb1da290c35
MD5 ecec7b008c9e207522fb713e4adb4ca9
BLAKE2b-256 60237f6164444b62052bad9a65eafbc3229ccaeed1e6b7b16e66445cf187f122

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2b8d8d781953004608c54b1d75530bdef6834981926964327ab4b785e0a73275
MD5 2e730f7cc48f08cbd329b536f3ecb300
BLAKE2b-256 63466980232b44e4b4e78fa750f251f29c49ab0bbc5780ca32f74a41839c5e87

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26ed10bf817fd32d66a484b29470decdfd5e11a87e012ff4aa0b5bcd3a335225
MD5 e838890b76214b784c0c0361335d4b67
BLAKE2b-256 8640f74f97d99f0a654a629d6867c81913555b8476d2e134e15e44008b7dfb6e

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2da1a04270201999682370d1b7a61746504074464880ab0d02f9461f85c6ccb
MD5 64853962cbef778ca61dd6d6c82dfa9c
BLAKE2b-256 280e99ebcc17d0395dcc222a8895b1f17f398e517affa73daba49879b4b944b3

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5170f4198b04153c298b088d97db4b3131bd9b5293ac5305927f8209d8de2fbb
MD5 a5be31ccd2c86825f8c82ef76871ac45
BLAKE2b-256 83b1fb5398a604ea9512eae08858425231c5b34c8dd340848572c72b08b62385

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc7a64714e46c393f4999251aebdc241efdb7c8234986401a67dbd473751e01d
MD5 c0196dc4f88e9332d6354384815d7c72
BLAKE2b-256 8e1699656bcc2c09900d0ce61d18eb3e263da4f7ab91110d756b7d4fbae60b44

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fd6275c9a4d4b0aabf53d9d227e12afed08885ad9ab0a0cbabb92553172d4bf
MD5 1856e95af64bc504f5ec9189efd5c6eb
BLAKE2b-256 d75871116574ab71309525f8a553b35d7f939bf89c80e5e2d8a4c69937b4f3c4

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42b7cb044885a2a2efeca4fddb04e8fa13eb79a29ccd3f644e978b498ebc3ad9
MD5 237c12dd17fe94d0cd5452e0657ba7dd
BLAKE2b-256 b34329cc90ecf4744e6e6789077e166bd2d6668d306c30e46f7e3af87029ad88

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b870140114e3d5d7bbd8c7f4218caa6cee697bedb96e55c04d3e5dcde98575b
MD5 8edb388df68e8ced2f1e24ed21a429e7
BLAKE2b-256 927233b053d0bba24b0982515e71803f2d49a4456a7f327b806880023a5b9523

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 107cbd563ef45b63cd6e341a304353d972f188eb014062f28151120eadd4ceb9
MD5 8ae133a3337e6924b8b73327250aa2bb
BLAKE2b-256 6f3ed6e9b320e381889b617bed1b18e0ae9091f75fbfc239ff7a11015cfc3232

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8f59cb513050d6ec1c21677001e150820185cc0dd7225c7c435e4f32c731f0d6
MD5 b839466e7bc32e63b8a5a443e04d443c
BLAKE2b-256 f804aff7d2d4f805681f47dd6250d15e8c1f6255269b3b6a0c8d53d6256d9c59

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8323a5927512e0efa05267b88a75edf4ef061c33ddd820c5613f29faea638bce
MD5 2b4e260576aedee8ce4a1f889dc27486
BLAKE2b-256 335351ab985b2acc7ae07da51c9cb808ada28972970149f66d4c27ce200e8ce6

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e98409683b400de1419318b3984f8223a5692bc8ce66c0e9023250c784644712
MD5 60f7fe358a6b6954d26876829b3ef55d
BLAKE2b-256 946a6210e85d9bcfd0d4fec1a4d21791892f446990fd48305a42e60d9fc3d4d9

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f975bc38841969522d070b83982128012876b1f051643e670d367060252dcaae
MD5 a80e005afb9299f301c5e3bdc267b134
BLAKE2b-256 a8557cfec49283861994269d53ff076ff864d9df7c34b66a7c43fe1a3accbf43

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2341bfd832f4565c4d6447994b307a675654ed600a4a6dd4748533ee075cca9c
MD5 4c9abac559318f4ebbecd86949867287
BLAKE2b-256 146bbfcd4f814c2f4f1aeb20d23f6db0094ac7618fe42aa19d4ce3d005aec957

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48b58da62038b51c27ddb68142986234cd65526d277d61f9053e59f3a11260ea
MD5 a7af08464bc23d98e9eabb72244a5f4f
BLAKE2b-256 7f8e29ba2cb3def5d43484a77945d2c64a3b4955d36fb24347139a3cc3dbff2b

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bdfe11f30c3ac3516919f1c08716ba2f8d122f3276511dffd46c4650eb8f6fe
MD5 7c8c31756941ae1664f955793dff33e5
BLAKE2b-256 cb134b1c5d995e0763efae754c34ffdbcd3a487fe6d0dd440420f1150fd135dc

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b0c5e2288d3d59d059b3322c348a302414855a48fc0989efc31d6754108a5bdb
MD5 42887ff8593e673f0c8948adba1dd61f
BLAKE2b-256 6a05e0da23bc145128d973bc5aeb79635a5734f15f3da69f424fbc5231ba3718

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03b213fb2bf7025179f30be3b93f1f772268aeeb19bea8c4935e3bc2b33876a9
MD5 e83c5fa90938d4e345b1bcd4ebf4e7a3
BLAKE2b-256 5abc5bf13f920db0433609a4dcd43cca49045c743569aa5b24174f9bd24790be

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8c1cdca53eac7a75800ae45f613d1575c8f63b0da9c104f5fde618074647a04c
MD5 0c786ef2b6088841e65fd1595f200a31
BLAKE2b-256 4f6fd9dd185c4914c947575486cab69970a96ecccd6ec224d13c3b3b15aa26e9

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ef045774074fd191069dcda8ccfae1d11d77817ad1446d1379d0b93fd59dbb9
MD5 0d974381010a946be3c86b0fb6b680e5
BLAKE2b-256 bd63e30c95be4cd31f01eed65df203c979f69147d0022f023a8ac3d9b8e427a2

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d59a0fec7fcfd57730284fe1d9ef056b8085b2298cb6b1595e9fba77987b13f6
MD5 2237ea3c2d998323003c1b90896beb90
BLAKE2b-256 fbaf53d6377c1e25a4a77f00ac06b8908a7d1ffed5eb4bf4393ec25d42f6050b

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9cccc3873e5dca0575d14d22a74d945e808d4af405c08f8cdb0c357d1f869ea
MD5 0a97a99fd6863e1d1d1cdcda5c7e30e1
BLAKE2b-256 a582f63eaa03f2f72edc333e43119749deb9d5249f41d7cc7811136d602b4f7e

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a45c7014a02393775ad73ba75df923f172f0d33a010c6f838fc82237339ac22c
MD5 005ca5157fe4cb5b53e10a7d9c122ce7
BLAKE2b-256 6b292fd8c64a89dbbca146eb7a5c2b095c6e695d201f9b9b7c3497f22242eb79

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7d4f016bc8c98fd4db83a2631041c294d470996d5acf6b01047c7adbef2e1e9
MD5 21d9a3f2ef7c1c8a4a6113aabf50929e
BLAKE2b-256 af89e7ecb5f355f5b43ad39507fbba883392055ee8d4fd78c0dbb83655bb54f0

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec97272042aa98ec6836bac48d998c751c81cd6de3e147e0338a6494382c3a92
MD5 b2081ca2a2cddcf4b9e36ec1eeb2aac0
BLAKE2b-256 a87d1b33fb5b0fb7a3f62bb337ef907625bb8e9abe79ef2a0244e0b694636fc2

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 25c8abe8db7ee85894efcdc9f40680efc879ecded2f0a761576771b267715dd4
MD5 2dc2e2a659ce07fae4148321871e35a8
BLAKE2b-256 c27afab115ffa5da48551395128856eaa2454fffc317dd38e59b4965fdbda6c0

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 739c45162da0e5bda6beba4259602e015ec3b02ccefbda32353da0ce921fb4a6
MD5 a2838b2c0d48c9dd675e03eeac353bc6
BLAKE2b-256 d47d53a4791e791925ad1a6cfd3b0effa2a3f2116d323d0148e4d9fc5f0e9257

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 daa16d426e15045258702ec807e6e86932db2621f67ad58083f2809435318b2b
MD5 dde811b6247043f9823f83459233aee3
BLAKE2b-256 daff3df1716eafd1727fa4f43bb376b57ea77120fa0dd7974e94ce72e6e32615

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8febfbfbb9e4318208707e505a0d738125c1fbf23c8b8ab9601eb714d3a5b48c
MD5 bfed41ff6bdbcb9ba0dcc277df403d01
BLAKE2b-256 6081e6d3a12824005195248c6ea71926159394b225329d42de2e6e50b7ed7746

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90b69a1ea436db43be4cf59a28a32685299e24e9eba118f61c7ac761b1883aed
MD5 a491c65fb1e8cac5670c88cf023e21a1
BLAKE2b-256 04dde7a0fbe4e04742b09f434379b95b4b18df62a0af2c4b642f4c4c0a088591

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c2781bd7ace2f434e0068861f058bd511639e4a932fa2831885b2513d07f47b
MD5 4b4287e0d12195e800dc614bf0c7b1a0
BLAKE2b-256 257d3e31ca03d74a989a0655a682d08a53b432f6230cbf691e977c815e164542

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7619bcc7bb6025ad0850cfc2d5fe0cddd8af219685b68f5962c9e7b2ea19763d
MD5 9df58730e7d3be516c05097b5e48a98e
BLAKE2b-256 7b9ba39e282eb41e1ae66b462fb90fa344897aa24d6f28058a9028fb16388ba2

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a4c2426bab438bfbd1fc637e371f4b58664f92a924c2395e1b9e6345474bec0
MD5 978b19cdc95ddac1c021c8d4c6bd32ca
BLAKE2b-256 15ec14982539397fa06a412d4fad584ece1c192ee8b72bbbc747fded686e321e

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3362b9ce9cfaf87f81b1c16929a8c5c42638b514070a16dfcfdc87e79f26f66a
MD5 b6ceb7a6bcf3ee5fb4ea67bf482b40a0
BLAKE2b-256 f20fb8abf457af9f8f61eb80cb9af4e67ebb284d9b45490a16f799c738c6be2b

See more details on using hashes here.

File details

Details for the file mlprep_rust-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mlprep_rust-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 945da5573060bb85f42528a9fe387b5c7ca131808f7cc9b047ff6df36b4a50a1
MD5 1865c1f02cb819698bea50465857d3ec
BLAKE2b-256 3b31c4befd0c4c2ad4f047df48cbb4e5bb8aa96f4abf6a0a746ad973f356ba60

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