Metadata-Version: 2.4
Name: metaraid
Version: 0.1.0
Summary: MetaCore — AI-First Data Intelligence Engine by METARAID Systems
Author: METARAID Systems
License: MIT
Project-URL: Homepage, https://github.com/metaraid/metacore
Keywords: ai,data,intelligence,rag,connector,profiling
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=2.0
Requires-Dist: openpyxl>=3.1
Provides-Extra: pdf
Requires-Dist: pdfplumber>=0.10; extra == "pdf"
Provides-Extra: docx
Requires-Dist: python-docx>=1.0; extra == "docx"
Provides-Extra: web
Requires-Dist: beautifulsoup4>=4.12; extra == "web"
Requires-Dist: requests>=2.31; extra == "web"
Provides-Extra: db
Requires-Dist: sqlalchemy>=2.0; extra == "db"
Provides-Extra: ai
Requires-Dist: google-generativeai>=0.5; extra == "ai"
Provides-Extra: all
Requires-Dist: pdfplumber>=0.10; extra == "all"
Requires-Dist: python-docx>=1.0; extra == "all"
Requires-Dist: beautifulsoup4>=4.12; extra == "all"
Requires-Dist: requests>=2.31; extra == "all"
Requires-Dist: sqlalchemy>=2.0; extra == "all"
Requires-Dist: google-generativeai>=0.5; extra == "all"
Dynamic: license-file

# MetaCore by METARAID Systems

**AI-First Data Intelligence Engine** — connect any data source, understand it with AI, get a full analysis in seconds.

## Quick Start

```bash
pip install metaraid
```

```python
from metaraid import metacore

metacore.add("files", path="./your_data/")
report = metacore.scan()
print(report)
```

## What it does

1. **Connect** — point it at files, databases, APIs, ERPs, cloud storage
2. **Read** — adaptive reader per source type (PDF, Excel, CSV, PostgreSQL, Tally, etc.)
3. **Profile** — auto-detects column types, IDs, dates, amounts, PII
4. **Relationships** — finds cross-table links automatically
5. **Report** — generates a full data intelligence report

## Supported Sources

| Category | Sources |
|----------|---------|
| Files | CSV, Excel, JSON, PDF, Word, Parquet, XML, HTML, YAML, TXT |
| Databases | PostgreSQL, MySQL, SQLite, MSSQL, Oracle, MongoDB |
| Cloud | AWS S3, Azure Blob, Google Cloud Storage |
| ERP | Tally, SAP, QuickBooks, Zoho |
| APIs | REST, GraphQL, any HTTP endpoint |
| Web | HTML scraping, any URL |

## Install with extras

```bash
pip install metaraid[all]     # everything
pip install metaraid[pdf]     # PDF support
pip install metaraid[db]      # database support
pip install metaraid[ai]      # Gemini AI layer
```

Built by METARAID Systems.
