CheeseShop VS dtparse

Compare CheeseShop vs dtparse and see what are their differences.

CheeseShop

Examples of using PyO3 Rust bindings for Python with little to no silliness. (by aeshirey)

dtparse

Fast datetime parser for Python written in Rust (by gukoff)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
CheeseShop dtparse
2 1
1 73
- -
3.8 0.0
7 months ago 8 months ago
Rust Python
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

CheeseShop

Posts with mentions or reviews of CheeseShop. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-06-11.
  • Apache Spark UDFs in Rust
    2 projects | /r/rust | 11 Jun 2021
    By comparison, PyO3 handles virtually all that boilerplate, so your Rust functions can accept and return many native Rust types and everything just works (for example). Or maybe I'm missing some fundamental difference with how JVM data are handled versus Python.
  • PyO3: Rust Bindings for the Python Interpreter
    18 projects | news.ycombinator.com | 29 Jan 2021
    At work, I'm using PyO3 for a project that churns through a lot of data (step 1) and does some pattern mining (step 2). This is the second generation of the project and is on-demand compared with the large, batch project in Spark that it is replacing. The Rust+Python project has really good performance, and using Rust for the core logic is such a joy compared with Scala or Python that a lot of other pieces are written in.

    Learning PyO3, I cobbled together a sample project[0] to demonstrate how some functionality works. It's a little outdated (uses PyO3 0.11.0 compared with the current 0.13.1) and doesn't show everything, but I think it's reasonably clear.

    One thing I noticed is that passing very large data from Rust and into Python's memory space is a bit of a challenge. I haven't quite grokked who owns what when and how memory gets correctly dropped, but I think the issues I've had are with the amount of RAM used at any moment and not with any memory leaks.

    [0] https://github.com/aeshirey/CheeseShop

dtparse

Posts with mentions or reviews of dtparse. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-01-29.
  • PyO3: Rust Bindings for the Python Interpreter
    18 projects | news.ycombinator.com | 29 Jan 2021
    ciso8601 is blazingly fast, and also its wall time is very stable. By all means, use ciso8601 if the format allows :)

    On my machine, ciso8601 always runs in 240ns, and the Rust lib median time is 1250ns.

    You can run a benchcmark too! Just call pytest, and it will generate an .svg report: https://github.com/gukoff/dtparse/blob/master/tests/test_per...

What are some alternatives?

When comparing CheeseShop and dtparse you can also consider the following projects:

ffi-overhead - comparing the c ffi (foreign function interface) overhead on various programming languages

tokenizers - 💥 Fast State-of-the-Art Tokenizers optimized for Research and Production

whatlang-pyo3 - Python Binding for Rust WhatLang, a language detection library

PyO3 - Rust bindings for the Python interpreter

rust-numpy - PyO3-based Rust bindings of the NumPy C-API

pythran - Ahead of Time compiler for numeric kernels

setuptools-rust - Setuptools plugin for Rust support

rayon - Rayon: A data parallelism library for Rust

py2many - Transpiler of Python to many other languages

RustPython - A Python Interpreter written in Rust