aligate 2.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aligate/__init__.py +140 -0
- aligate/api/__init__.py +5 -0
- aligate/api/default_api.py +2616 -0
- aligate/api_client.py +804 -0
- aligate/api_response.py +21 -0
- aligate/configuration.py +596 -0
- aligate/exceptions.py +218 -0
- aligate/models/__init__.py +62 -0
- aligate/models/configuration_price.py +94 -0
- aligate/models/configuration_property.py +94 -0
- aligate/models/coupon.py +111 -0
- aligate/models/coupon_meta.py +94 -0
- aligate/models/coupon_settings.py +94 -0
- aligate/models/coupons_parse_response.py +108 -0
- aligate/models/error.py +90 -0
- aligate/models/health_check200_response.py +88 -0
- aligate/models/image_search_meta.py +94 -0
- aligate/models/image_search_parse_response.py +104 -0
- aligate/models/image_search_request.py +96 -0
- aligate/models/image_search_settings.py +94 -0
- aligate/models/parse_meta.py +116 -0
- aligate/models/parse_response.py +104 -0
- aligate/models/parse_settings.py +94 -0
- aligate/models/price.py +106 -0
- aligate/models/product.py +176 -0
- aligate/models/product_configuration.py +112 -0
- aligate/models/product_description.py +92 -0
- aligate/models/product_seller.py +98 -0
- aligate/models/product_video.py +92 -0
- aligate/models/rating_breakdown.py +102 -0
- aligate/models/review.py +143 -0
- aligate/models/review_buyer.py +94 -0
- aligate/models/review_content.py +92 -0
- aligate/models/review_filter_stat.py +90 -0
- aligate/models/review_label.py +90 -0
- aligate/models/reviews_meta.py +94 -0
- aligate/models/reviews_parse_response.py +104 -0
- aligate/models/reviews_result.py +131 -0
- aligate/models/reviews_settings.py +100 -0
- aligate/models/search_category.py +90 -0
- aligate/models/search_meta.py +94 -0
- aligate/models/search_parse_response.py +104 -0
- aligate/models/search_result.py +123 -0
- aligate/models/search_settings.py +96 -0
- aligate/models/seller_item.py +155 -0
- aligate/models/seller_meta.py +94 -0
- aligate/models/seller_parse_response.py +104 -0
- aligate/models/seller_products_meta.py +94 -0
- aligate/models/seller_products_parse_response.py +104 -0
- aligate/models/seller_products_result.py +113 -0
- aligate/models/seller_products_settings.py +96 -0
- aligate/models/seller_settings.py +90 -0
- aligate/models/shipping_method.py +108 -0
- aligate/models/store_category.py +103 -0
- aligate/py.typed +0 -0
- aligate/rest.py +263 -0
- aligate-2.1.0.dist-info/METADATA +191 -0
- aligate-2.1.0.dist-info/RECORD +60 -0
- aligate-2.1.0.dist-info/WHEEL +5 -0
- aligate-2.1.0.dist-info/top_level.txt +1 -0
aligate/__init__.py
ADDED
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
AliExpress Parser API
|
|
7
|
+
|
|
8
|
+
Real-time AliExpress data parser covering products, product reviews, sellers, store coupons, a seller's product catalog, and product search by text or image. Products: pricing, stock status, shipping options, seller information, product configurations (SKUs), and more - scoped to a specific country and currency. Reviews: customer ratings and feedback for a product. Sellers: full store profile with ratings, feedback, and categories. Coupons: active seller coupon codes with discounts, thresholds, budgets, and expiry. Seller products: a store's product catalog, paginated and best-selling first. Search: find products by keyword or by uploading an image, returning paginated product results with their categories.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 2.1
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "2.1.0"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"DefaultApi",
|
|
22
|
+
"ApiResponse",
|
|
23
|
+
"ApiClient",
|
|
24
|
+
"Configuration",
|
|
25
|
+
"OpenApiException",
|
|
26
|
+
"ApiTypeError",
|
|
27
|
+
"ApiValueError",
|
|
28
|
+
"ApiKeyError",
|
|
29
|
+
"ApiAttributeError",
|
|
30
|
+
"ApiException",
|
|
31
|
+
"ConfigurationPrice",
|
|
32
|
+
"ConfigurationProperty",
|
|
33
|
+
"Coupon",
|
|
34
|
+
"CouponMeta",
|
|
35
|
+
"CouponSettings",
|
|
36
|
+
"CouponsParseResponse",
|
|
37
|
+
"Error",
|
|
38
|
+
"HealthCheck200Response",
|
|
39
|
+
"ImageSearchMeta",
|
|
40
|
+
"ImageSearchParseResponse",
|
|
41
|
+
"ImageSearchRequest",
|
|
42
|
+
"ImageSearchSettings",
|
|
43
|
+
"ParseMeta",
|
|
44
|
+
"ParseResponse",
|
|
45
|
+
"ParseSettings",
|
|
46
|
+
"Price",
|
|
47
|
+
"Product",
|
|
48
|
+
"ProductConfiguration",
|
|
49
|
+
"ProductDescription",
|
|
50
|
+
"ProductSeller",
|
|
51
|
+
"ProductVideo",
|
|
52
|
+
"RatingBreakdown",
|
|
53
|
+
"Review",
|
|
54
|
+
"ReviewBuyer",
|
|
55
|
+
"ReviewContent",
|
|
56
|
+
"ReviewFilterStat",
|
|
57
|
+
"ReviewLabel",
|
|
58
|
+
"ReviewsMeta",
|
|
59
|
+
"ReviewsParseResponse",
|
|
60
|
+
"ReviewsResult",
|
|
61
|
+
"ReviewsSettings",
|
|
62
|
+
"SearchCategory",
|
|
63
|
+
"SearchMeta",
|
|
64
|
+
"SearchParseResponse",
|
|
65
|
+
"SearchResult",
|
|
66
|
+
"SearchSettings",
|
|
67
|
+
"SellerItem",
|
|
68
|
+
"SellerMeta",
|
|
69
|
+
"SellerParseResponse",
|
|
70
|
+
"SellerProductsMeta",
|
|
71
|
+
"SellerProductsParseResponse",
|
|
72
|
+
"SellerProductsResult",
|
|
73
|
+
"SellerProductsSettings",
|
|
74
|
+
"SellerSettings",
|
|
75
|
+
"ShippingMethod",
|
|
76
|
+
"StoreCategory",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
# import apis into sdk package
|
|
80
|
+
from aligate.api.default_api import DefaultApi as DefaultApi
|
|
81
|
+
|
|
82
|
+
# import ApiClient
|
|
83
|
+
from aligate.api_response import ApiResponse as ApiResponse
|
|
84
|
+
from aligate.api_client import ApiClient as ApiClient
|
|
85
|
+
from aligate.configuration import Configuration as Configuration
|
|
86
|
+
from aligate.exceptions import OpenApiException as OpenApiException
|
|
87
|
+
from aligate.exceptions import ApiTypeError as ApiTypeError
|
|
88
|
+
from aligate.exceptions import ApiValueError as ApiValueError
|
|
89
|
+
from aligate.exceptions import ApiKeyError as ApiKeyError
|
|
90
|
+
from aligate.exceptions import ApiAttributeError as ApiAttributeError
|
|
91
|
+
from aligate.exceptions import ApiException as ApiException
|
|
92
|
+
|
|
93
|
+
# import models into sdk package
|
|
94
|
+
from aligate.models.configuration_price import ConfigurationPrice as ConfigurationPrice
|
|
95
|
+
from aligate.models.configuration_property import ConfigurationProperty as ConfigurationProperty
|
|
96
|
+
from aligate.models.coupon import Coupon as Coupon
|
|
97
|
+
from aligate.models.coupon_meta import CouponMeta as CouponMeta
|
|
98
|
+
from aligate.models.coupon_settings import CouponSettings as CouponSettings
|
|
99
|
+
from aligate.models.coupons_parse_response import CouponsParseResponse as CouponsParseResponse
|
|
100
|
+
from aligate.models.error import Error as Error
|
|
101
|
+
from aligate.models.health_check200_response import HealthCheck200Response as HealthCheck200Response
|
|
102
|
+
from aligate.models.image_search_meta import ImageSearchMeta as ImageSearchMeta
|
|
103
|
+
from aligate.models.image_search_parse_response import ImageSearchParseResponse as ImageSearchParseResponse
|
|
104
|
+
from aligate.models.image_search_request import ImageSearchRequest as ImageSearchRequest
|
|
105
|
+
from aligate.models.image_search_settings import ImageSearchSettings as ImageSearchSettings
|
|
106
|
+
from aligate.models.parse_meta import ParseMeta as ParseMeta
|
|
107
|
+
from aligate.models.parse_response import ParseResponse as ParseResponse
|
|
108
|
+
from aligate.models.parse_settings import ParseSettings as ParseSettings
|
|
109
|
+
from aligate.models.price import Price as Price
|
|
110
|
+
from aligate.models.product import Product as Product
|
|
111
|
+
from aligate.models.product_configuration import ProductConfiguration as ProductConfiguration
|
|
112
|
+
from aligate.models.product_description import ProductDescription as ProductDescription
|
|
113
|
+
from aligate.models.product_seller import ProductSeller as ProductSeller
|
|
114
|
+
from aligate.models.product_video import ProductVideo as ProductVideo
|
|
115
|
+
from aligate.models.rating_breakdown import RatingBreakdown as RatingBreakdown
|
|
116
|
+
from aligate.models.review import Review as Review
|
|
117
|
+
from aligate.models.review_buyer import ReviewBuyer as ReviewBuyer
|
|
118
|
+
from aligate.models.review_content import ReviewContent as ReviewContent
|
|
119
|
+
from aligate.models.review_filter_stat import ReviewFilterStat as ReviewFilterStat
|
|
120
|
+
from aligate.models.review_label import ReviewLabel as ReviewLabel
|
|
121
|
+
from aligate.models.reviews_meta import ReviewsMeta as ReviewsMeta
|
|
122
|
+
from aligate.models.reviews_parse_response import ReviewsParseResponse as ReviewsParseResponse
|
|
123
|
+
from aligate.models.reviews_result import ReviewsResult as ReviewsResult
|
|
124
|
+
from aligate.models.reviews_settings import ReviewsSettings as ReviewsSettings
|
|
125
|
+
from aligate.models.search_category import SearchCategory as SearchCategory
|
|
126
|
+
from aligate.models.search_meta import SearchMeta as SearchMeta
|
|
127
|
+
from aligate.models.search_parse_response import SearchParseResponse as SearchParseResponse
|
|
128
|
+
from aligate.models.search_result import SearchResult as SearchResult
|
|
129
|
+
from aligate.models.search_settings import SearchSettings as SearchSettings
|
|
130
|
+
from aligate.models.seller_item import SellerItem as SellerItem
|
|
131
|
+
from aligate.models.seller_meta import SellerMeta as SellerMeta
|
|
132
|
+
from aligate.models.seller_parse_response import SellerParseResponse as SellerParseResponse
|
|
133
|
+
from aligate.models.seller_products_meta import SellerProductsMeta as SellerProductsMeta
|
|
134
|
+
from aligate.models.seller_products_parse_response import SellerProductsParseResponse as SellerProductsParseResponse
|
|
135
|
+
from aligate.models.seller_products_result import SellerProductsResult as SellerProductsResult
|
|
136
|
+
from aligate.models.seller_products_settings import SellerProductsSettings as SellerProductsSettings
|
|
137
|
+
from aligate.models.seller_settings import SellerSettings as SellerSettings
|
|
138
|
+
from aligate.models.shipping_method import ShippingMethod as ShippingMethod
|
|
139
|
+
from aligate.models.store_category import StoreCategory as StoreCategory
|
|
140
|
+
|