Add AI SEO tools with FastAPI endpoints and comprehensive services

Co-authored-by: ajay.calsoft <ajay.calsoft@gmail.com>
This commit is contained in:
Cursor Agent
2025-08-24 11:47:42 +00:00
parent 5d8d1cfb73
commit 512f82b7b0
17 changed files with 3637 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
"""
AI SEO Tools Services Package
This package contains all migrated SEO tools as FastAPI services.
Each service provides structured, AI-enhanced SEO analysis capabilities.
"""
from .meta_description_service import MetaDescriptionService
from .pagespeed_service import PageSpeedService
from .sitemap_service import SitemapService
from .image_alt_service import ImageAltService
from .opengraph_service import OpenGraphService
from .on_page_seo_service import OnPageSEOService
from .technical_seo_service import TechnicalSEOService
from .enterprise_seo_service import EnterpriseSEOService
from .content_strategy_service import ContentStrategyService
__all__ = [
"MetaDescriptionService",
"PageSpeedService",
"SitemapService",
"ImageAltService",
"OpenGraphService",
"OnPageSEOService",
"TechnicalSEOService",
"EnterpriseSEOService",
"ContentStrategyService"
]