Skip to main content

Structured data profiling for the analyser family

Project description

records-analyser

Profiles structured data files and returns row counts, column statistics, schema inference, missing value counts, and sample rows.

Part of the analyser family.

Install

pip install records-analyser

Requires Python 3.11+.

Usage

Python

from records_analyser import RecordsAnalyser

result = RecordsAnalyser().analyse("survey.csv")

profile = result["profile"]
print(f"Rows: {profile['rows']}, Columns: {profile['columns']}")
for col, info in profile["column_profiles"].items():
    print(f"  {col}: {info['type']}, missing={info['missing']}")

CLI

# Human-readable summary
records-analyser analyse data.csv

# SQLite — profiles all tables
records-analyser analyse results.db

# Machine-readable JSON
records-analyser analyse data.xlsx --json

# Start the HTTP server
records-analyser serve --port 8003

HTTP API

curl -X POST http://localhost:8003/analyse \
  -F "file=@data.csv"

Supported formats

Format Extensions
CSV / TSV .csv .tsv
Excel .xlsx .xls
Parquet .parquet
SQLite .sqlite .db .sqlite3
JSON .json
YAML .yaml .yml
XML .xml

JSON and YAML files that look like configuration objects (not arrays of records) include a warning suggesting document-analyser for prose content.

Output

{
  "format": "csv",
  "file_path": "/path/to/survey.csv",
  "file_size": 4096,
  "profile": {
    "rows": 150,
    "columns": 4,
    "column_profiles": {
      "age": {
        "type": "numeric",
        "min": 18.0, "max": 72.0, "mean": 34.2,
        "median": 32.0, "std": 11.4,
        "q25": 25.0, "q75": 42.0,
        "missing": 2, "missing_pct": 1.3
      },
      "country": {
        "type": "categorical",
        "unique": 12,
        "top_values": {"Australia": 45, "USA": 38},
        "missing": 0, "missing_pct": 0.0
      }
    },
    "sample": [{"age": 28, "country": "Australia"}]
  }
}

SQLite results include a tables key with one profile per table.

The analyser family

Low-level analysis tools. Each accepts files directly and returns structured JSON. Build your own UI or pipeline on top.

Package Handles
speech-analyser audio and video files — transcript and speech metrics
video-analyser video files — frames, scenes, and visual quality
document-analyser PDF, DOCX, PPTX, TXT — text and readability
code-analyser source code — style, complexity, and quality metrics
records-analyser CSV, Excel, SQLite, Parquet, JSON — data profiling
auto-analyser any file — detects format and routes to the right tool

Licence

MIT

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

records_analyser-0.4.0.tar.gz (90.4 kB view details)

Uploaded Source

Built Distribution

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

records_analyser-0.4.0-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file records_analyser-0.4.0.tar.gz.

File metadata

  • Download URL: records_analyser-0.4.0.tar.gz
  • Upload date:
  • Size: 90.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.0

File hashes

Hashes for records_analyser-0.4.0.tar.gz
Algorithm Hash digest
SHA256 973742e7635caeea6b0d2865bff53b1ac41395c315dbedb8710a89921609a727
MD5 bcc6e6337f8e2da31a74fe00f23c6a8f
BLAKE2b-256 190b01ef6cdeb72d11dc4e8df3fa4e393661eb52ed0fb8461427c23e12984e5c

See more details on using hashes here.

File details

Details for the file records_analyser-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for records_analyser-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4affec7fff549af3710b37b305a92c8fc4b097f63a004870d83dc619bef26649
MD5 6271bfe135b7cfa8b7573e6ebe05596f
BLAKE2b-256 f5e18c9c41c572791178331ba5ec2a9a30864b211a68f3d6442bde7feb0e00e2

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