jsonpolars 0.2.3

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

jsonpolars 0.2.3

Welcome to jsonpolars Documentation



jsonpolars is an innovative Python library designed to bridge the gap between JSON-based data manipulation syntax and the powerful Polars data processing library. This project aims to provide a flexible and intuitive way to express Polars operations using JSON structures, making it easier for developers to work with Polars in various contexts. The library allows users to define complex data transformations using JSON syntax, which can then be translated into native Polars operations.
Here’s a simple example of how to use jsonpolars:
import polars as pl
from jsonpolars.api import parse_dfop

# Create a sample DataFrame
df = pl.DataFrame(
[
{"id": 1, "firstname": "Alice", "lastname": "Smith"},
{"id": 2, "firstname": "Bob", "lastname": "Johnson"},
{"id": 3, "firstname": "Cathy", "lastname": "Williams"},
]
)

# Define the operation using JSON structure
dfop_data = {
"type": "with_columns",
"exprs": [
{
"type": "alias",
"name": "fullname",
"expr": {
"type": "plus",
"left": {"type": "column", "name": "firstname"},
"right": {
"type": "plus",
"left": {
"type": "lit",
"value": " ",
},
"right": {"type": "column", "name": "lastname"},
},
},
}
],
}

# Parse and apply the operation
op = parse_dfop(dfop_data)
df1 = op.to_polars(df)
print(df1)
Output:
shape: (3, 4)
┌─────┬───────────┬──────────┬────────────────┐
│ id ┆ firstname ┆ lastname ┆ fullname │
│ --- ┆ --- ┆ --- ┆ --- │
│ i64 ┆ str ┆ str ┆ str │
╞═════╪═══════════╪══════════╪════════════════╡
│ 1 ┆ Alice ┆ Smith ┆ Alice Smith │
│ 2 ┆ Bob ┆ Johnson ┆ Bob Johnson │
│ 3 ┆ Cathy ┆ Williams ┆ Cathy Williams │
└─────┴───────────┴──────────┴────────────────┘
In addition to JSON-based syntax, jsonpolars allows you to define operations using Python objects for a more Pythonic approach. Here’s how you can use this feature:
import json

# Define the operation using Python objects
op = dfop.WithColumns(
exprs=[
expr.Alias(
name="fullname",
expr=expr.Plus(
left=expr.Column(name="firstname"),
right=expr.Plus(
left=expr.Lit(value=" "),
right=expr.Column(name="lastname"),
),
),
)
]
)

# Convert the operation to JSON (optional, for visualization)
print(json.dumps(op.to_dict(), indent=4))
Output:
{
"type": "with_columns",
"exprs": [
{
"type": "alias",
"name": "fullname",
"expr": {
"type": "add",
"left": {
"type": "column",
"name": "firstname"
},
"right": {
"type": "add",
"left": {
"type": "func_lit",
"value": " ",
"dtype": null,
"allow_object": false
},
"right": {
"type": "column",
"name": "lastname"
}
}
}
}
],
"named_exprs": {}
}
The to_polars() method seamlessly translates your Python object-based operation into Polars code, allowing you to apply complex transformations with ease.
# Apply the operation to a Polars DataFrame
df1 = op.to_polars(df)
print(df1)
Output:
shape: (3, 4)
┌─────┬───────────┬──────────┬────────────────┐
│ id ┆ firstname ┆ lastname ┆ fullname │
│ --- ┆ --- ┆ --- ┆ --- │
│ i64 ┆ str ┆ str ┆ str │
╞═════╪═══════════╪══════════╪════════════════╡
│ 1 ┆ Alice ┆ Smith ┆ Alice Smith │
│ 2 ┆ Bob ┆ Johnson ┆ Bob Johnson │
│ 3 ┆ Cathy ┆ Williams ┆ Cathy Williams │
└─────┴───────────┴──────────┴────────────────┘

Install
jsonpolars is released on PyPI, so all you need is to:
$ pip install jsonpolars
To upgrade to latest version:
$ pip install --upgrade jsonpolars

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.