grizzlys


Namegrizzlys JSON
Version 0.0.1 PyPI version JSON
download
home_pageNone
SummaryPython DataFrames powered by Julia
upload_time2024-04-14 19:18:11
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT License Copyright (c) 2024 Hadar Sharon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords python julia pandas polars koalas data-science data-engineering data-analysis dataframe dataframes
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![grizzlys](docs/logos/grizzlys-logo-cubes-with-text.png "grizzlys")

<hr>

<div style="text-align: center;">

[![Code style: Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json&label=Formatter)](https://github.com/charliermarsh/ruff)
[![Linting: Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json&label=Linter)](https://github.com/charliermarsh/ruff)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)

</div>

# grizzlys: User-friendly Python DataFrames powered by Julia

**grizzlys** is a Python package that provides a native interface on top of Julia's popular
[___DataFrames.jl___](https://github.com/JuliaData/DataFrames.jl) package.

As a user-friendly alternative to existing Python packages such as __pandas__ and __polars__, it is designed to be a
convenient & easy to use DataFrames tool for data analysts, data engineers and data scientists alike, while still
providing high performance and abstractions, thanks to Julia's high-performance computing capabilities.

## Why you might consider using grizzlys

:white_check_mark: You are transitioning into Python from a **Julia** or **R** programming background

:white_check_mark: You are accustomed to working with **Jupyter notebooks** (or a REPL) and performing exploratory data
analysis **(EDA)** on-the-fly

:white_check_mark: You need a quick-and-dirty data wrangling tool that provides readymade **macros** and **convenience
functions** out of the box

:white_check_mark: You work with **statistics** or **linear algebra** often and require a wide range of
statistical/algebraic functions to be well-integrated with your DataFrames

## What is grizzlys (currently) NOT well-suited for

:x: __Larger-than-memory datasets__ - grizzlys' current implementation relies on data being stored in-memory, and therefore
it is not a good choice if you work with datasets that don't fit in your machine's RAM.

For such cases, using [__Polars__](https://github.com/pola-rs/polars) or
[__Dask DataFrames__](https://docs.dask.org/en/stable/dataframe.html) would be a much better choice as of now.

:x: __Lazy Evaluation__ - Similar to the above, grizzlys is currently designed to be fully eager, which means it always
immediately executes your code, as opposed to building a task/computation graph or thereabout and delaying execution
until it's needed.

:x: __Backwards compatibility__ - grizzlys is based on a relatively new programming language in Julia, and is developed
using an advanced version of Python, with little regard to end-of-life versions or any compatibility with Python 2.7,
for example.

You should therefore not rely on grizzlys for integrations with very old code or any other legacy/deprecated tools and
implementations.

:x: __Best-in-class Performance__ - Though Julia is widely considered a very high-performance language (it is actually a
major reason why it's used under the hood here), grizzlys is still a work-in-progress (WIP) and therefore does not
currently aim to compete with, or outperform, other high-performance DataFrame libraries, such as
[__Polars__](https://github.com/pola-rs/polars) (written in Rust) or
[__Modin__](https://github.com/modin-project/modin) (Multi-threaded pandas).

This, of course, might no longer be a limitation in the future, as __grizzlys__ will have undergone optimizations and
maturation.

<hr>

[Go to Top](#grizzlys-user-friendly-python-dataframes-powered-by-julia)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "grizzlys",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python, julia, pandas, polars, koalas, data-science, data-engineering, data-analysis, dataframe, dataframes",
    "author": null,
    "author_email": "Hadar Sharon <hadar.sharon94@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/2f/26/1c0b14ad1aabf3eeb02ae3298164ad0f30e730523c16da1ca6ca40736b2c/grizzlys-0.0.1.tar.gz",
    "platform": null,
    "description": "![grizzlys](docs/logos/grizzlys-logo-cubes-with-text.png \"grizzlys\")\n\n<hr>\n\n<div style=\"text-align: center;\">\n\n[![Code style: Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json&label=Formatter)](https://github.com/charliermarsh/ruff)\n[![Linting: Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json&label=Linter)](https://github.com/charliermarsh/ruff)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)\n\n</div>\n\n# grizzlys: User-friendly Python DataFrames powered by Julia\n\n**grizzlys** is a Python package that provides a native interface on top of Julia's popular\n[___DataFrames.jl___](https://github.com/JuliaData/DataFrames.jl) package.\n\nAs a user-friendly alternative to existing Python packages such as __pandas__ and __polars__, it is designed to be a\nconvenient & easy to use DataFrames tool for data analysts, data engineers and data scientists alike, while still\nproviding high performance and abstractions, thanks to Julia's high-performance computing capabilities.\n\n## Why you might consider using grizzlys\n\n:white_check_mark: You are transitioning into Python from a **Julia** or **R** programming background\n\n:white_check_mark: You are accustomed to working with **Jupyter notebooks** (or a REPL) and performing exploratory data\nanalysis **(EDA)** on-the-fly\n\n:white_check_mark: You need a quick-and-dirty data wrangling tool that provides readymade **macros** and **convenience\nfunctions** out of the box\n\n:white_check_mark: You work with **statistics** or **linear algebra** often and require a wide range of\nstatistical/algebraic functions to be well-integrated with your DataFrames\n\n## What is grizzlys (currently) NOT well-suited for\n\n:x: __Larger-than-memory datasets__ - grizzlys' current implementation relies on data being stored in-memory, and therefore\nit is not a good choice if you work with datasets that don't fit in your machine's RAM.\n\nFor such cases, using [__Polars__](https://github.com/pola-rs/polars) or\n[__Dask DataFrames__](https://docs.dask.org/en/stable/dataframe.html) would be a much better choice as of now.\n\n:x: __Lazy Evaluation__ - Similar to the above, grizzlys is currently designed to be fully eager, which means it always\nimmediately executes your code, as opposed to building a task/computation graph or thereabout and delaying execution\nuntil it's needed.\n\n:x: __Backwards compatibility__ - grizzlys is based on a relatively new programming language in Julia, and is developed\nusing an advanced version of Python, with little regard to end-of-life versions or any compatibility with Python 2.7,\nfor example.\n\nYou should therefore not rely on grizzlys for integrations with very old code or any other legacy/deprecated tools and\nimplementations.\n\n:x: __Best-in-class Performance__ - Though Julia is widely considered a very high-performance language (it is actually a\nmajor reason why it's used under the hood here), grizzlys is still a work-in-progress (WIP) and therefore does not\ncurrently aim to compete with, or outperform, other high-performance DataFrame libraries, such as\n[__Polars__](https://github.com/pola-rs/polars) (written in Rust) or\n[__Modin__](https://github.com/modin-project/modin) (Multi-threaded pandas).\n\nThis, of course, might no longer be a limitation in the future, as __grizzlys__ will have undergone optimizations and\nmaturation.\n\n<hr>\n\n[Go to Top](#grizzlys-user-friendly-python-dataframes-powered-by-julia)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Hadar Sharon  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Python DataFrames powered by Julia",
    "version": "0.0.1",
    "project_urls": {
        "Changelog": "https://github.com/hadarsharon/grizzlys/releases",
        "Documentation": "https://github.com/hadarsharon/grizzlys/wiki",
        "Repository": "https://github.com/hadarsharon/grizzlys"
    },
    "split_keywords": [
        "python",
        " julia",
        " pandas",
        " polars",
        " koalas",
        " data-science",
        " data-engineering",
        " data-analysis",
        " dataframe",
        " dataframes"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d71dfd8eab3c428570e76bd123bc9dd300c2fc1f52d7c6e6428affa893bb0e3c",
                "md5": "444252123b91516d89bf5d5893d99fe0",
                "sha256": "6157f3bd6effbf4751e8d8047e81448f558dfeba254374e8b0b93d61fd54709e"
            },
            "downloads": -1,
            "filename": "grizzlys-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "444252123b91516d89bf5d5893d99fe0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 10080,
            "upload_time": "2024-04-14T19:18:09",
            "upload_time_iso_8601": "2024-04-14T19:18:09.172834Z",
            "url": "https://files.pythonhosted.org/packages/d7/1d/fd8eab3c428570e76bd123bc9dd300c2fc1f52d7c6e6428affa893bb0e3c/grizzlys-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f261c0b14ad1aabf3eeb02ae3298164ad0f30e730523c16da1ca6ca40736b2c",
                "md5": "ec28f9885153b92f6d610d3ef713f6e2",
                "sha256": "33f0512edb881a33efec6339fb2da275a34df0945b5e7d56c86214921e91a134"
            },
            "downloads": -1,
            "filename": "grizzlys-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ec28f9885153b92f6d610d3ef713f6e2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 10132,
            "upload_time": "2024-04-14T19:18:11",
            "upload_time_iso_8601": "2024-04-14T19:18:11.065789Z",
            "url": "https://files.pythonhosted.org/packages/2f/26/1c0b14ad1aabf3eeb02ae3298164ad0f30e730523c16da1ca6ca40736b2c/grizzlys-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-14 19:18:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hadarsharon",
    "github_project": "grizzlys",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "grizzlys"
}
        
Elapsed time: 0.21986s