Skip to content

Commit 9ca0624

Browse files
committed
new code version
1 parent d3b08d7 commit 9ca0624

File tree

4,278 files changed

+15657
-15810
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,278 files changed

+15657
-15810
lines changed

dataforseo_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@
278278
from dataforseo_client.models.appendix_whois_domain_analytics_price_data import AppendixWhoisDomainAnalyticsPriceData
279279
from dataforseo_client.models.apps_info import AppsInfo
280280
from dataforseo_client.models.authors_element import AuthorsElement
281-
from dataforseo_client.models.autocomplete_serp_element_item import AutocompleteSerpElementItem
282281
from dataforseo_client.models.available_languages import AvailableLanguages
283282
from dataforseo_client.models.available_locations import AvailableLocations
284283
from dataforseo_client.models.availible_versions import AvailibleVersions
@@ -1685,6 +1684,7 @@
16851684
from dataforseo_client.models.serp_ai_summary_response_info import SerpAiSummaryResponseInfo
16861685
from dataforseo_client.models.serp_ai_summary_result_info import SerpAiSummaryResultInfo
16871686
from dataforseo_client.models.serp_ai_summary_task_info import SerpAiSummaryTaskInfo
1687+
from dataforseo_client.models.serp_autocomplete_serp_element_item import SerpAutocompleteSerpElementItem
16881688
from dataforseo_client.models.serp_baidu_languages_response_info import SerpBaiduLanguagesResponseInfo
16891689
from dataforseo_client.models.serp_baidu_languages_result_info import SerpBaiduLanguagesResultInfo
16901690
from dataforseo_client.models.serp_baidu_languages_task_info import SerpBaiduLanguagesTaskInfo

dataforseo_client/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@
250250
from dataforseo_client.models.appendix_whois_domain_analytics_price_data import AppendixWhoisDomainAnalyticsPriceData
251251
from dataforseo_client.models.apps_info import AppsInfo
252252
from dataforseo_client.models.authors_element import AuthorsElement
253-
from dataforseo_client.models.autocomplete_serp_element_item import AutocompleteSerpElementItem
254253
from dataforseo_client.models.available_languages import AvailableLanguages
255254
from dataforseo_client.models.available_locations import AvailableLocations
256255
from dataforseo_client.models.availible_versions import AvailibleVersions
@@ -1657,6 +1656,7 @@
16571656
from dataforseo_client.models.serp_ai_summary_response_info import SerpAiSummaryResponseInfo
16581657
from dataforseo_client.models.serp_ai_summary_result_info import SerpAiSummaryResultInfo
16591658
from dataforseo_client.models.serp_ai_summary_task_info import SerpAiSummaryTaskInfo
1659+
from dataforseo_client.models.serp_autocomplete_serp_element_item import SerpAutocompleteSerpElementItem
16601660
from dataforseo_client.models.serp_baidu_languages_response_info import SerpBaiduLanguagesResponseInfo
16611661
from dataforseo_client.models.serp_baidu_languages_result_info import SerpBaiduLanguagesResultInfo
16621662
from dataforseo_client.models.serp_baidu_languages_task_info import SerpBaiduLanguagesTaskInfo

dataforseo_client/models/about_this_result_element.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
20+
from pydantic import BaseModel, Field, StrictStr
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from typing import Optional, Set
2323
from typing_extensions import Self
@@ -37,11 +37,11 @@ class AboutThisResultElement(BaseModel):
3737
related_terms: Optional[List[Optional[StrictStr]]] = Field(default=None, description="related search terms that appear in the result")
3838
__properties: ClassVar[List[str]] = ["type", "url", "source", "source_info", "source_url", "language", "location", "search_terms", "related_terms"]
3939

40-
model_config = ConfigDict(
41-
populate_by_name=True,
42-
validate_assignment=True,
43-
protected_namespaces=(),
44-
)
40+
model_config = {
41+
"populate_by_name": True,
42+
"validate_assignment": True,
43+
"protected_namespaces": (),
44+
}
4545

4646

4747
def to_str(self) -> str:

dataforseo_client/models/absolute_items.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
20+
from pydantic import BaseModel, Field, StrictInt, StrictStr
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from typing import Optional, Set
2323
from typing_extensions import Self
@@ -31,11 +31,11 @@ class AbsoluteItems(BaseModel):
3131
values: Optional[List[Optional[StrictInt]]] = Field(default=None, description="keyword popularity rates within a given location represents location-specific keyword popularity rate over the specified time range; using these values, you can understand which of the specified keywords is more popular in the related location; the first value in the array is provided for the first term from the keywords array, the second value is provided for the second keyword, and so on; calculation: we determine the highest popularity value across all specified keywords within a given location, and then express the popularity values of each keyword as a percentage of the highest value (100); a value of 100 is the peak popularity for the term a value of 50 means that the term is half as popular a value of 0 means there was not enough data for this term")
3232
__properties: ClassVar[List[str]] = ["geo_id", "geo_name", "values"]
3333

34-
model_config = ConfigDict(
35-
populate_by_name=True,
36-
validate_assignment=True,
37-
protected_namespaces=(),
38-
)
34+
model_config = {
35+
"populate_by_name": True,
36+
"validate_assignment": True,
37+
"protected_namespaces": (),
38+
}
3939

4040

4141
def to_str(self) -> str:

dataforseo_client/models/ad_link_element.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
20+
from pydantic import BaseModel, Field, StrictStr
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from typing import Optional, Set
2323
from typing_extensions import Self
@@ -34,11 +34,11 @@ class AdLinkElement(BaseModel):
3434
ad_aclk: Optional[StrictStr] = Field(default=None, description="the identifier of the ad")
3535
__properties: ClassVar[List[str]] = ["type", "title", "description", "url", "domain", "ad_aclk"]
3636

37-
model_config = ConfigDict(
38-
populate_by_name=True,
39-
validate_assignment=True,
40-
protected_namespaces=(),
41-
)
37+
model_config = {
38+
"populate_by_name": True,
39+
"validate_assignment": True,
40+
"protected_namespaces": (),
41+
}
4242

4343

4444
def to_str(self) -> str:

dataforseo_client/models/address_info.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
20+
from pydantic import BaseModel, Field, StrictStr
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from typing import Optional, Set
2323
from typing_extensions import Self
@@ -34,11 +34,11 @@ class AddressInfo(BaseModel):
3434
country_code: Optional[StrictStr] = Field(default=None, description="ISO country code of the local establishment")
3535
__properties: ClassVar[List[str]] = ["borough", "address", "city", "zip", "region", "country_code"]
3636

37-
model_config = ConfigDict(
38-
populate_by_name=True,
39-
validate_assignment=True,
40-
protected_namespaces=(),
41-
)
37+
model_config = {
38+
"populate_by_name": True,
39+
"validate_assignment": True,
40+
"protected_namespaces": (),
41+
}
4242

4343

4444
def to_str(self) -> str:

dataforseo_client/models/amazon_delivery_info.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
20+
from pydantic import BaseModel, Field, StrictStr
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from dataforseo_client.models.price_info import PriceInfo
2323
from typing import Optional, Set
@@ -35,11 +35,11 @@ class AmazonDeliveryInfo(BaseModel):
3535
delivery_price: Optional[PriceInfo] = None
3636
__properties: ClassVar[List[str]] = ["delivery_message", "delivery_date_from", "delivery_date_to", "fastest_delivery_date_from", "fastest_delivery_date_to", "delivery_price"]
3737

38-
model_config = ConfigDict(
39-
populate_by_name=True,
40-
validate_assignment=True,
41-
protected_namespaces=(),
42-
)
38+
model_config = {
39+
"populate_by_name": True,
40+
"validate_assignment": True,
41+
"protected_namespaces": (),
42+
}
4343

4444

4545
def to_str(self) -> str:

dataforseo_client/models/amazon_keyword_data.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
20+
from pydantic import BaseModel, Field, StrictInt, StrictStr
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from dataforseo_client.models.amazon_keyword_info import AmazonKeywordInfo
2323
from typing import Optional, Set
@@ -34,11 +34,11 @@ class AmazonKeywordData(BaseModel):
3434
keyword_info: Optional[AmazonKeywordInfo] = None
3535
__properties: ClassVar[List[str]] = ["se_type", "keyword", "location_code", "language_code", "keyword_info"]
3636

37-
model_config = ConfigDict(
38-
populate_by_name=True,
39-
validate_assignment=True,
40-
protected_namespaces=(),
41-
)
37+
model_config = {
38+
"populate_by_name": True,
39+
"validate_assignment": True,
40+
"protected_namespaces": (),
41+
}
4242

4343

4444
def to_str(self) -> str:

dataforseo_client/models/amazon_keyword_info.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
20+
from pydantic import BaseModel, Field, StrictInt, StrictStr
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from typing import Optional, Set
2323
from typing_extensions import Self
@@ -31,11 +31,11 @@ class AmazonKeywordInfo(BaseModel):
3131
search_volume: Optional[StrictInt] = Field(default=None, description="average monthly search volume rate represents the (approximate) number of searches for the provided keyword idea on Amazon")
3232
__properties: ClassVar[List[str]] = ["se_type", "last_updated_time", "search_volume"]
3333

34-
model_config = ConfigDict(
35-
populate_by_name=True,
36-
validate_assignment=True,
37-
protected_namespaces=(),
38-
)
34+
model_config = {
35+
"populate_by_name": True,
36+
"validate_assignment": True,
37+
"protected_namespaces": (),
38+
}
3939

4040

4141
def to_str(self) -> str:

dataforseo_client/models/amazon_metrics_bundle_info.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict
20+
from pydantic import BaseModel
2121
from typing import Any, ClassVar, Dict, List, Optional
2222
from dataforseo_client.models.app_metrics_info import AppMetricsInfo
2323
from typing import Optional, Set
@@ -31,11 +31,11 @@ class AmazonMetricsBundleInfo(BaseModel):
3131
amazon_paid: Optional[AppMetricsInfo] = None
3232
__properties: ClassVar[List[str]] = ["amazon_serp", "amazon_paid"]
3333

34-
model_config = ConfigDict(
35-
populate_by_name=True,
36-
validate_assignment=True,
37-
protected_namespaces=(),
38-
)
34+
model_config = {
35+
"populate_by_name": True,
36+
"validate_assignment": True,
37+
"protected_namespaces": (),
38+
}
3939

4040

4141
def to_str(self) -> str:

0 commit comments

Comments
 (0)