feat: implement backend API clients for multi-marketplace integration and frontend service layer

This commit is contained in:
2026-05-12 13:16:14 +03:00
parent 6974af486a
commit ee39a3d83b
65 changed files with 2501 additions and 33 deletions

View File

@@ -0,0 +1,15 @@
from .client import AEClient
from .services.transactions import TransactionsService
from .services.products import ProductsService
class AliExpressAPI:
"""
Main entry point for AE Platform (AliExpress Russia) SDK.
Instantiates all services with a shared client.
"""
def __init__(self, api_token: str = None, user_id: str = None):
self.client = AEClient(api_token, user_id)
# Initialize services
self.transactions = TransactionsService(self.client)
self.products = ProductsService(self.client)