Skip to main content

Python bindings for the JSON Alchemy C library

Project description

JSON Alchemy

Python bindings for the JSON Alchemy C library - a high-performance JSON processing toolkit.

Features

  • JSON Flattening: Convert nested JSON objects to flat key-value pairs
  • JSON Schema Generation: Generate JSON schemas from JSON objects
  • Batch Processing: Process multiple JSON objects in a single operation
  • Multi-threading: Utilize multiple CPU cores for improved performance

Installation

pip install aimv2-json-alchemy

Requirements

  • Python 3.8 or higher
  • Python development headers (python3-dev on Linux systems)

The cJSON library is now included directly in the repository, so you don't need to install it separately.

For more detailed installation instructions, see INSTALL.md.

Usage

JSON Flattening

import json
from json_alchemy import flatten_json, flatten_json_batch

# Single object flattening
nested_json_str = '''
{
    "person": {
        "name": "John",
        "age": 30,
        "address": {
            "city": "New York",
            "zip": "10001"
        }
    }
}
'''

flat_json = flatten_json(nested_json_str)
print(flat_json)
# Output:
# {
#   "person.name": "John",
#   "person.age": 30,
#   "person.address.city": "New York",
#   "person.address.zip": "10001"
# }

# Batch processing
json_objects = [
    '{"a": {"b": 1}}',
    '{"c": {"d": 2}}'
]

# Single-threaded batch processing
flattened_batch = flatten_json_batch(json_objects)

# Multi-threaded batch processing (auto thread count)
flattened_batch_mt = flatten_json_batch(json_objects, use_threads=True)

# Multi-threaded batch processing (specific thread count)
flattened_batch_mt_spec = flatten_json_batch(json_objects, use_threads=True, num_threads=4)

JSON Schema Generation

from json_alchemy import generate_schema, generate_schema_batch

# Single object schema generation
json_obj_str = '''
{
    "name": "John",
    "age": 30,
    "is_active": true,
    "scores": [85, 90, 78],
    "address": {
        "city": "New York",
        "zip": "10001"
    }
}
'''

schema = generate_schema(json_obj_str)
print(schema)
# Output:
# {
#   "type": "object",
#   "properties": {
#     "name": {"type": "string"},
#     "age": {"type": "integer"},
#     "is_active": {"type": "boolean"},
#     "scores": {
#       "type": "array",
#       "items": {"type": "integer"}
#     },
#     "address": {
#       "type": "object",
#       "properties": {
#         "city": {"type": "string"},
#         "zip": {"type": "string"}
#       }
#     }
#   }
# }

# Batch processing
json_objects = [
    '{"a": 1, "b": "string"}',
    '{"a": 2, "c": true}'
]

# Single-threaded batch processing
schema_batch = generate_schema_batch(json_objects)

# Multi-threaded batch processing (auto thread count)
schema_batch_mt = generate_schema_batch(json_objects, use_threads=True)

# Multi-threaded batch processing (specific thread count)
schema_batch_mt_spec = generate_schema_batch(json_objects, use_threads=True, num_threads=4)

Performance Considerations

Based on our benchmarks:

  1. Batch Processing:

    • For small to medium batches (10-1000 objects), batch processing provides significant speedups.
    • For larger batches (5000+ objects), consider splitting them into smaller batches.
  2. Multi-threading:

    • Multi-threading provides significant speedups for medium-sized batches (around 1000 objects).
    • For very small batches, the overhead of thread creation may outweigh the benefits.
  3. Optimal Batch Size:

    • The optimal batch size for flattening operations is around 1000 objects.
    • The optimal batch size for schema generation is around 10-100 objects.

Building from Source

# Clone the repository
git clone https://github.com/amaye15/AIMv2-rs.git
cd AIMv2-rs/python

# Install the package in development mode
pip install -e .

If you encounter any issues during installation, please refer to the INSTALL.md file for troubleshooting.

License

MIT License

Links

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

aimv2_json_alchemy-1.3.3.tar.gz (38.6 kB view details)

Uploaded Source

File details

Details for the file aimv2_json_alchemy-1.3.3.tar.gz.

File metadata

  • Download URL: aimv2_json_alchemy-1.3.3.tar.gz
  • Upload date:
  • Size: 38.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for aimv2_json_alchemy-1.3.3.tar.gz
Algorithm Hash digest
SHA256 dd49d1eee663eb849dedd79958772533afbb0aa7d92f93d521d2a3f59bd34d0d
MD5 56ba19f8754a760ee0f0768de8742b38
BLAKE2b-256 0f8ae9f7ffb729fe561608fb4cd98debbcfb8ff15aac7659c67f3de1d0b9bea5

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