Python Aliexpress Api Client
Python client library for AliExpress API
Install / Use
npx skills add dhanzhelo/python-aliexpress-api-clientInstalls into whichever agent you are using.
README
AliExpress API Client
Python client library for AliExpress API
Usage example
Configuration:
from aliexpress_api_client import AliExpress
aliexpress = AliExpress('api_key', 'affiliate_id')
Get product list:
products = aliexpress.get_product_list(['productId', 'productTitle', 'salePrice'])
for product in products:
print '#%s %s: %s' % (product['productId'], product['productTitle'], product['salePrice'])
Get product details:
product = aliexpress.get_product_details(['productId', 'productTitle', 'salePrice'], product_id)
print '#%s %s: %s' % (product['productId'], product['productTitle'], product['salePrice'])
Get promotion links (require affiliate_id):
links = api.get_promotion_links(['url', 'promotionUrl'], urls)
for link in links['promotionUrls']:
print '%s: %s' % (link['url'], link['promotionUrl'])
Related Skills
node-connect
385.5kDiagnose OpenClaw Android, iOS, or macOS node pairing, QR/setup code, route, auth, and connection failures.
blender-python-addon
40.5kBlender Python add-on rules for operators, panels, properties, registration, testing, and API-safe scripting
flutter-development-guidelines-cursorrules-prompt-file
40.5kCursor rules for Flutter development with MVVM architecture, Riverpod state management, Material widgets, and Dart style guidelines.
commit-push-pr
140.7kCommit, push, and open a PR
