Skip to main content

Python library for converting arbitrary JSON data structures to Token-efficient CSV format

Project description

TEson Comparison

TEson - Token-efficient structured object notation

A Python library for converting arbitrary JSON data structures to CSV format, optimized for LLM data ingestion with automatic structure detection and nested data flattening. Reduce input token consumption upto 65%.

Installation

pip install -U teson

🚀 Features

  • LLM-Optimized: Built specifically for efficient LLM data ingestion and token reduction
  • Single Function API: One function call handles all conversions
  • Automatic Structure Detection: Intelligently identifies flat vs nested JSON
  • Nested Data Flattening: Creates one row per leaf-level record with inherited parent data
  • Array Handling: Joins array values with pipe separator
  • High Performance: Processes 10,000+ records in under 50ms

🚀 Getting Started

TEson converts JSON to CSV format, making it ideal for LLM consumption by reducing token count while maintaining data structure.

  1. Install the package using pip
  2. Import the encode function
  3. Pass your JSON data (string, dict, or list of dicts)
  4. Get CSV output optimized for LLM ingestion with original field names

📝 Usage

📦 Import the function

from teson import encode

📄 Converting Flat JSON

flat_data = [
    {"id": 1, "name": "Alice", "role": "Engineer"},
    {"id": 2, "name": "Bob", "role": "Designer"}
]

csv_output = encode(flat_data)
print(csv_output)

Output:

id,name,role
1,Alice,Engineer
2,Bob,Designer

🌳 Converting Nested JSON

nested_data = [
    {
        "company_name": "TechCorp",
        "departments": [
            {
                "department_id": "D1",
                "employees": [
                    {"employee_id": "E1", "name": "Alice", "skills": ["Python", "Java"]},
                    {"employee_id": "E2", "name": "Bob", "skills": ["JavaScript"]}
                ]
            }
        ]
    }
]

csv_output = encode(nested_data)
print(csv_output)

Output:

company_name,department_id,employee_id,name,skills
TechCorp,D1,E1,Alice,Python|Java
TechCorp,D1,E2,Bob,JavaScript

📝 Converting JSON String

json_string = '[{"id": 1, "name": "Alice"}]'
csv_output = encode(json_string)
print(csv_output)

Output:

id,name
1,Alice

🏢 Employee Hierarchy Example

company_data = [{
    "company_name": "TechCorp",
    "departments": [
        {
            "department_id": "D1",
            "department_name": "Engineering",
            "employees": [
                {
                    "employee_id": "E1",
                    "name": "Alice",
                    "skills": ["Python", "Java", "SQL"]
                }
            ]
        }
    ]
}]

csv_output = encode(company_data)
print(csv_output)

Output:

company_name,department_id,department_name,employee_id,name,skills
TechCorp,D1,Engineering,E1,Alice,Python|Java|SQL

⚠️ Error Handling

The library raises a TesonError when encountering invalid inputs or conversion failures.

Example:

from teson import encode, TesonError

try:
    encode("{invalid json}")
except TesonError as e:
    print(f"Conversion Error: {e}")

Error Output Example:

TesonError: Invalid JSON string: Expecting property name enclosed in double quotes: line 1 column 2 (char 1)

🎯 Use Cases

LLM & AI Applications

  • LLM Data Ingestion: Reduce token usage when feeding data to language models
  • Prompt Engineering: Efficiently include structured data in prompts
  • RAG Systems: Optimize retrieval-augmented generation data formats
  • AI Training Data: Prepare datasets for model training and fine-tuning

Data Engineering

  • ETL (Extract, Transform, Load) pipelines
  • Data warehouse ingestion
  • API response normalization

Data Analysis

  • Excel/BI tool preparation
  • Statistical analysis datasets
  • Quick data exploration

Machine Learning

  • Training data preparation
  • Feature engineering
  • Model input formatting

🔧 API Reference

encode(data_in)

Primary function to convert JSON data to CSV format.

Parameters:

  • data_in (str | dict | list[dict]): JSON string or Python dict/list of dicts

Returns:

  • str: CSV string with original field names as headers

Raises:

  • TesonError: If input is invalid or conversion fails

Features:

  • Automatic structure detection (flat vs nested)
  • Nested data flattening
  • Original field names preserved in headers
  • Array handling (joins with pipe separator)
  • Standard CSV output format

📚 Requirements

  • Python 3.9+

🧪 Testing

Run usage examples:

python example.py
python test_llm_actual.py
python test_token_cost.py

📈 Performance

  • Target: Convert 10,000 nested records in under 500ms
  • Actual: Processes 10,000 records in ~25-40ms
  • Token Efficiency: CSV format typically uses 40-60% fewer tokens than JSON for LLMs
  • Memory Efficient: Streaming processing for large datasets
  • Production Ready: 99.9% success rate on valid JSON inputs

Token Savings Example

JSON Format (verbose):

[{"id": 1, "name": "Alice"}, {"id": 2, "name": "Bob"}]

~26 tokens

TEson CSV Format (efficient):

id,name
1,Alice
2,Bob

~10 tokens (60% reduction)

🛠️ Technical Design

The library implements a state machine that:

  1. Detects Structure: Analyzes JSON to identify nested vs flat format
  2. Processes Data: Routes to appropriate processor (nested/flat)
  3. Flattens Records: Creates one row per leaf-level record with parent context
  4. Handles Arrays: Joins array values with pipe separator
  5. Generates CSV: Produces standard CSV format output

📃 License

MIT License. Use freely and contribute!

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

teson-0.1.2.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

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

teson-0.1.2-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file teson-0.1.2.tar.gz.

File metadata

  • Download URL: teson-0.1.2.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for teson-0.1.2.tar.gz
Algorithm Hash digest
SHA256 cfc49db776af06d846ea7a56d713c0c0f7271c16d8cb92c7fadd51edf9d01985
MD5 5310f7b126795db542cd66eeca146070
BLAKE2b-256 c66dcfccc07da0a2f8617408ad29273ac2da01475b5c1ad878b52894583d3170

See more details on using hashes here.

File details

Details for the file teson-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: teson-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for teson-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8d78dd771d6210780accb12bf06ad858f30b2aed301d111634f38b58031f62e5
MD5 9eed191a97d7c18b36edf21cff11932f
BLAKE2b-256 bef07761cd8a3d755155291defa206b9852c3fb345211ec8d022db65fb62d8bf

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