第一次提交:阿龙电竞 Django 后端最新版本
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# -*- coding: utf8 -*-
|
||||
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# 内部错误。
|
||||
INTERNALERROR = 'InternalError'
|
||||
|
||||
# 参数错误。
|
||||
INVALIDPARAMETER = 'InvalidParameter'
|
||||
|
||||
# 参数取值错误。
|
||||
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
||||
|
||||
# 操作被拒绝。
|
||||
OPERATIONDENIED = 'OperationDenied'
|
||||
|
||||
# 未授权操作。
|
||||
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|
||||
@@ -0,0 +1,118 @@
|
||||
# -*- coding: utf8 -*-
|
||||
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import json
|
||||
|
||||
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
||||
from tencentcloud.common.abstract_client import AbstractClient
|
||||
from tencentcloud.irp.v20220324 import models
|
||||
|
||||
|
||||
class IrpClient(AbstractClient):
|
||||
_apiVersion = '2022-03-24'
|
||||
_endpoint = 'irp.tencentcloudapi.com'
|
||||
_service = 'irp'
|
||||
|
||||
|
||||
def RecommendContent(self, request):
|
||||
r"""获取推荐结果
|
||||
|
||||
:param request: Request instance for RecommendContent.
|
||||
:type request: :class:`tencentcloud.irp.v20220324.models.RecommendContentRequest`
|
||||
:rtype: :class:`tencentcloud.irp.v20220324.models.RecommendContentResponse`
|
||||
|
||||
"""
|
||||
try:
|
||||
params = request._serialize()
|
||||
headers = request.headers
|
||||
body = self.call("RecommendContent", params, headers=headers)
|
||||
response = json.loads(body)
|
||||
model = models.RecommendContentResponse()
|
||||
model._deserialize(response["Response"])
|
||||
return model
|
||||
except Exception as e:
|
||||
if isinstance(e, TencentCloudSDKException):
|
||||
raise
|
||||
else:
|
||||
raise TencentCloudSDKException(type(e).__name__, str(e))
|
||||
|
||||
|
||||
def ReportAction(self, request):
|
||||
r"""上报行为
|
||||
|
||||
:param request: Request instance for ReportAction.
|
||||
:type request: :class:`tencentcloud.irp.v20220324.models.ReportActionRequest`
|
||||
:rtype: :class:`tencentcloud.irp.v20220324.models.ReportActionResponse`
|
||||
|
||||
"""
|
||||
try:
|
||||
params = request._serialize()
|
||||
headers = request.headers
|
||||
body = self.call("ReportAction", params, headers=headers)
|
||||
response = json.loads(body)
|
||||
model = models.ReportActionResponse()
|
||||
model._deserialize(response["Response"])
|
||||
return model
|
||||
except Exception as e:
|
||||
if isinstance(e, TencentCloudSDKException):
|
||||
raise
|
||||
else:
|
||||
raise TencentCloudSDKException(type(e).__name__, str(e))
|
||||
|
||||
|
||||
def ReportMaterial(self, request):
|
||||
r"""上报物料
|
||||
|
||||
:param request: Request instance for ReportMaterial.
|
||||
:type request: :class:`tencentcloud.irp.v20220324.models.ReportMaterialRequest`
|
||||
:rtype: :class:`tencentcloud.irp.v20220324.models.ReportMaterialResponse`
|
||||
|
||||
"""
|
||||
try:
|
||||
params = request._serialize()
|
||||
headers = request.headers
|
||||
body = self.call("ReportMaterial", params, headers=headers)
|
||||
response = json.loads(body)
|
||||
model = models.ReportMaterialResponse()
|
||||
model._deserialize(response["Response"])
|
||||
return model
|
||||
except Exception as e:
|
||||
if isinstance(e, TencentCloudSDKException):
|
||||
raise
|
||||
else:
|
||||
raise TencentCloudSDKException(type(e).__name__, str(e))
|
||||
|
||||
|
||||
def ReportPortrait(self, request):
|
||||
r"""上报用户画像
|
||||
|
||||
:param request: Request instance for ReportPortrait.
|
||||
:type request: :class:`tencentcloud.irp.v20220324.models.ReportPortraitRequest`
|
||||
:rtype: :class:`tencentcloud.irp.v20220324.models.ReportPortraitResponse`
|
||||
|
||||
"""
|
||||
try:
|
||||
params = request._serialize()
|
||||
headers = request.headers
|
||||
body = self.call("ReportPortrait", params, headers=headers)
|
||||
response = json.loads(body)
|
||||
model = models.ReportPortraitResponse()
|
||||
model._deserialize(response["Response"])
|
||||
return model
|
||||
except Exception as e:
|
||||
if isinstance(e, TencentCloudSDKException):
|
||||
raise
|
||||
else:
|
||||
raise TencentCloudSDKException(type(e).__name__, str(e))
|
||||
@@ -0,0 +1,98 @@
|
||||
# -*- coding: utf8 -*-
|
||||
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
|
||||
from tencentcloud.common.abstract_client_async import AbstractClient
|
||||
from tencentcloud.irp.v20220324 import models
|
||||
from typing import Dict
|
||||
|
||||
|
||||
class IrpClient(AbstractClient):
|
||||
_apiVersion = '2022-03-24'
|
||||
_endpoint = 'irp.tencentcloudapi.com'
|
||||
_service = 'irp'
|
||||
|
||||
async def RecommendContent(
|
||||
self,
|
||||
request: models.RecommendContentRequest,
|
||||
opts: Dict = None,
|
||||
) -> models.RecommendContentResponse:
|
||||
"""
|
||||
获取推荐结果
|
||||
"""
|
||||
|
||||
kwargs = {}
|
||||
kwargs["action"] = "RecommendContent"
|
||||
kwargs["params"] = request._serialize()
|
||||
kwargs["resp_cls"] = models.RecommendContentResponse
|
||||
kwargs["headers"] = request.headers
|
||||
kwargs["opts"] = opts or {}
|
||||
|
||||
return await self.call_and_deserialize(**kwargs)
|
||||
|
||||
async def ReportAction(
|
||||
self,
|
||||
request: models.ReportActionRequest,
|
||||
opts: Dict = None,
|
||||
) -> models.ReportActionResponse:
|
||||
"""
|
||||
上报行为
|
||||
"""
|
||||
|
||||
kwargs = {}
|
||||
kwargs["action"] = "ReportAction"
|
||||
kwargs["params"] = request._serialize()
|
||||
kwargs["resp_cls"] = models.ReportActionResponse
|
||||
kwargs["headers"] = request.headers
|
||||
kwargs["opts"] = opts or {}
|
||||
|
||||
return await self.call_and_deserialize(**kwargs)
|
||||
|
||||
async def ReportMaterial(
|
||||
self,
|
||||
request: models.ReportMaterialRequest,
|
||||
opts: Dict = None,
|
||||
) -> models.ReportMaterialResponse:
|
||||
"""
|
||||
上报物料
|
||||
"""
|
||||
|
||||
kwargs = {}
|
||||
kwargs["action"] = "ReportMaterial"
|
||||
kwargs["params"] = request._serialize()
|
||||
kwargs["resp_cls"] = models.ReportMaterialResponse
|
||||
kwargs["headers"] = request.headers
|
||||
kwargs["opts"] = opts or {}
|
||||
|
||||
return await self.call_and_deserialize(**kwargs)
|
||||
|
||||
async def ReportPortrait(
|
||||
self,
|
||||
request: models.ReportPortraitRequest,
|
||||
opts: Dict = None,
|
||||
) -> models.ReportPortraitResponse:
|
||||
"""
|
||||
上报用户画像
|
||||
"""
|
||||
|
||||
kwargs = {}
|
||||
kwargs["action"] = "ReportPortrait"
|
||||
kwargs["params"] = request._serialize()
|
||||
kwargs["resp_cls"] = models.ReportPortraitResponse
|
||||
kwargs["headers"] = request.headers
|
||||
kwargs["opts"] = opts or {}
|
||||
|
||||
return await self.call_and_deserialize(**kwargs)
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user