Metadata-Version: 2.4
Name: fexa-ai
Version: 0.1.0
Summary: Python utilities for PrestaShop SEO automation — powered by FEXA AI
Author-email: GENISOFT WEB <genisoft.france@gmail.com>
License: MIT
Project-URL: Homepage, https://fexaai.com
Project-URL: Documentation, https://fexaai.com/free-prestashop-seo-audit
Project-URL: Repository, https://github.com/lefi0528/sas-app
Project-URL: Bug Tracker, https://github.com/lefi0528/sas-app/issues
Keywords: prestashop,seo,ai,ecommerce,automation,aeo
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28

# fexa-ai

Python utilities for **PrestaShop SEO auditing and metadata extraction**.

For full AI-powered bulk optimization (title tags, meta descriptions, ALT attributes, structured data, multilingual translation), see **[fexaai.com](https://fexaai.com/free-prestashop-seo-audit)**.

## Installation

```bash
pip install fexa-ai
```

## Usage

```python
from fexa_ai import audit_url, extract_seo_meta

# Audit a single PrestaShop URL
result = audit_url("https://your-store.com/product-page")
print(result)
# {
#   "url": "https://your-store.com/product-page",
#   "title": "Product Name | Store",
#   "description": "...",
#   "h1": "Product Name",
#   "canonical": "https://your-store.com/product-page",
#   "robots": "index, follow"
# }

# Parse HTML directly
with open("page.html") as f:
    meta = extract_seo_meta(f.read())
```

## Bulk AI optimization

This library handles single-page audits. For bulk operations on your entire catalog:

- AI generation of title tags, meta descriptions, ALT attributes
- Multilingual translation (FR, EN, ES, IT, DE…)
- Structured data & Schema.org markup
- Compatible PrestaShop 1.7 → 9.x

→ **[fexaai.com](https://fexaai.com)** — free account, no credit card required

## License

MIT — © GENISOFT WEB
