Skip to main content

Refinery components for the Sayou Data Platform

Project description

sayou-refinery

PyPI version License Docs

Overview

The Universal Data Cleaning & Normalization Engine for Sayou Fabric.

sayou-refinery acts as the "Cleaning Plant" in your data pipeline. It transforms heterogeneous raw data (JSON Documents, HTML, DB Records) into a standardized stream of SayouBlocks.

It ensures that downstream components (like Chunkers or LLMs) receive clean, uniform data regardless of whether the source was a messy web scrape or a structured database row.


1. Architecture & Role

Refinery operates in two distinct stages to guarantee data quality: Normalization (Shape Shifting) and Processing (Hygiene).

graph LR
    Raw[Raw Input] --> Pipeline[Refinery Pipeline]
    
    subgraph Stage1 [Normalization]
        Doc[Doc Normalizer]
        Html[Html Normalizer]
        Json[Json Normalizer]
    end
    
    subgraph Stage2 [Processing Chain]
        Space[Whitespace]
        PII[PII Masker]
        Link[Link Extractor]
    end
    
    Pipeline --> Stage1
    Stage1 --> Stage2
    Stage2 --> Blocks[Clean SayouBlocks]

1.1. Core Features

  • Normalization: Flattens complex structures (Nested JSON, HTML Trees) into a linear list of blocks.
  • Hygiene: Removes invisible characters, normalizes Unicode, and fixes broken encoding.
  • Safety: Automatically masks sensitive information (PII) like emails or phone numbers before they reach the LLM.

2. Available Strategies

sayou-refinery provides strategies tailored to specific input formats.

Strategy Key Target Format Description
standard_doc Sayou Document [Default] Converts parsed document dictionaries into Markdown blocks. Applies standard text cleaning.
html Web Pages Strips HTML tags, extracts links, and converts the DOM tree into readable text blocks.
json API/DB Records Flattens JSON objects into key-value pairs or text representations.

3. Installation

pip install sayou-refinery

4. Usage

The RefineryPipeline orchestrates the normalization and processing chain.

Case A: Document Cleaning (Standard)

Cleans messy OCR output or parsed document text.

from sayou.refinery import RefineryPipeline

raw_doc = {
    "metadata": {"title": "Test Doc"},
    "pages": [{
        "elements": [
            {"type": "text", "text": "Contact:   admin@sayou.ai  "},
            {"type": "text", "text": "Generic    Whitespace   Error"}
        ]
    }]
}

blocks = RefineryPipeline.process(
    data=raw_doc,
    strategy="standard_doc"
)

for block in blocks:
    print(f"[{block.type}] {block.content}")
    # Output: [text] Contact: [EMAIL]
    # Output: [text] Generic Whitespace Error

Case B: HTML Processing

Converts web content into clean text while preserving hyperlinks.

from sayou.refinery import RefineryPipeline

raw_html = """
<html>
    <body>
        <h1>Welcome</h1>
        <p>Click <a href='https://sayou.ai'>here</a>.</p>
    </body>
</html>
"""

blocks = RefineryPipeline.process(
    data=raw_html,
    strategy="html"
)

# Result:
# [heading] Welcome
# [text] Click here (Link: https://sayou.ai)

5. Configuration Keys

Customize the cleaning processors via the config dictionary.

  • mask_pii: (bool) Mask emails, phone numbers, and IP addresses.
  • normalize_whitespace: (bool) Collapse multiple spaces and trim lines.
  • extract_links: (bool) Extract <a> tags or markdown links into metadata.
  • remove_stopwords: (bool) Filter out common stopwords (optional).

6. License

Apache 2.0 License © 2026 Sayouzone

7. Plugin List

Plugin Example Description
Doc Refinery
HTML Refinery
Json Refinery
Record Refinery

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

sayou_refinery-0.5.0.tar.gz (42.3 kB view details)

Uploaded Source

Built Distribution

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

sayou_refinery-0.5.0-py3-none-any.whl (29.4 kB view details)

Uploaded Python 3

File details

Details for the file sayou_refinery-0.5.0.tar.gz.

File metadata

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

File hashes

Hashes for sayou_refinery-0.5.0.tar.gz
Algorithm Hash digest
SHA256 a83f4177da451df48a2a2f89c188436798d3767f0a320addf6690f033268f715
MD5 dc361adc8a36e5c541f9cca174f6dcbd
BLAKE2b-256 bf47ed5acb8a9b7f67d8ae0d5d621f9623fd40e962b29f0b645e405445b65285

See more details on using hashes here.

File details

Details for the file sayou_refinery-0.5.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for sayou_refinery-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0764fc944436a0fa87b7e6e525f252f2ab054f7688de5a08a2162c9a59f3941e
MD5 02c6eb03286faf17fc593f44c5f13d2c
BLAKE2b-256 0358c532ef0bf86fcf2f17b1469c35e1fec1c15cdeb411c87b27484e8416b095

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