lazyad 0.0.64__py3-none-any.whl → 0.0.65__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.
Potentially problematic release.
This version of lazyad might be problematic. Click here for more details.
- lazyad/crawlers/chuangliang.py +83 -0
- {lazyad-0.0.64.dist-info → lazyad-0.0.65.dist-info}/METADATA +1 -1
- {lazyad-0.0.64.dist-info → lazyad-0.0.65.dist-info}/RECORD +5 -5
- {lazyad-0.0.64.dist-info → lazyad-0.0.65.dist-info}/WHEEL +0 -0
- {lazyad-0.0.64.dist-info → lazyad-0.0.65.dist-info}/top_level.txt +0 -0
lazyad/crawlers/chuangliang.py
CHANGED
|
@@ -905,3 +905,86 @@ def deactivate_material(
|
|
|
905
905
|
json=data,
|
|
906
906
|
headers=headers
|
|
907
907
|
)
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
def get_toutiao_promotion(
|
|
911
|
+
cookie: str,
|
|
912
|
+
user_id: list = None,
|
|
913
|
+
material_id: str = None,
|
|
914
|
+
cdt_start_date: str = None,
|
|
915
|
+
cdt_end_date: str = None,
|
|
916
|
+
start_date: str = None,
|
|
917
|
+
end_date: str = None,
|
|
918
|
+
host: str = default_host,
|
|
919
|
+
page: int = 1,
|
|
920
|
+
page_size: int = 20,
|
|
921
|
+
sort_field: str = "create_time",
|
|
922
|
+
sort_direction: str = "desc",
|
|
923
|
+
data_type: str = "list"
|
|
924
|
+
):
|
|
925
|
+
"""
|
|
926
|
+
推广-巨量广告-广告 查询
|
|
927
|
+
:param cookie:
|
|
928
|
+
:param material_id: 素材ID
|
|
929
|
+
:param cdt_start_date: 创建时间,例如:2025-07-05 00:00:00
|
|
930
|
+
:param cdt_end_date: 创建时间,例如:2025-08-04 23:59:59
|
|
931
|
+
:param start_date: 数据日期,例如:2025-08-04
|
|
932
|
+
:param end_date: 数据日期,例如:2025-08-04
|
|
933
|
+
:param host:
|
|
934
|
+
:return:
|
|
935
|
+
"""
|
|
936
|
+
url = f"https://{host}/Toutiao/Promotion/getList"
|
|
937
|
+
if not user_id:
|
|
938
|
+
user_id = []
|
|
939
|
+
conditions = {
|
|
940
|
+
"search_field":"promotion_name",
|
|
941
|
+
"search_keyword":"",
|
|
942
|
+
"cl_project_id":[],
|
|
943
|
+
"cl_app_id":[],
|
|
944
|
+
"user_id": user_id,
|
|
945
|
+
"media_account_id":[],
|
|
946
|
+
"companys":[],
|
|
947
|
+
"landing_type":"",
|
|
948
|
+
"delivery_mode":"",
|
|
949
|
+
"project_id":[],
|
|
950
|
+
"status_first":"",
|
|
951
|
+
"scene_type":[],
|
|
952
|
+
"strategy_id":[],
|
|
953
|
+
"ad_type":"",
|
|
954
|
+
"learning_phase":[],
|
|
955
|
+
"star_delivery_type":"",
|
|
956
|
+
"star_task_id":"",
|
|
957
|
+
"app_type":"",
|
|
958
|
+
"external_action":[],
|
|
959
|
+
"deep_external_action":[],
|
|
960
|
+
"deep_bid_type":[],
|
|
961
|
+
"material_id": material_id,
|
|
962
|
+
"search_type":"like",
|
|
963
|
+
"combinatorial_id":"",
|
|
964
|
+
"status":"",
|
|
965
|
+
"status_second":"",
|
|
966
|
+
"cdt_start_date": cdt_start_date,
|
|
967
|
+
"cdt_end_date": cdt_end_date
|
|
968
|
+
}
|
|
969
|
+
data = {
|
|
970
|
+
"conditions": json.dumps(conditions),
|
|
971
|
+
"start_date": start_date,
|
|
972
|
+
"end_date": end_date,
|
|
973
|
+
"page": page,
|
|
974
|
+
"page_size": page_size,
|
|
975
|
+
# "total_count": 1,
|
|
976
|
+
# "total_page": 1,
|
|
977
|
+
"sort_field": sort_field,
|
|
978
|
+
"sort_direction": sort_direction,
|
|
979
|
+
"data_type": data_type
|
|
980
|
+
}
|
|
981
|
+
headers = copy.deepcopy(default_headers)
|
|
982
|
+
headers["Cookie"] = cookie
|
|
983
|
+
if host:
|
|
984
|
+
headers["Host"] = host
|
|
985
|
+
return lazyrequests.lazy_requests(
|
|
986
|
+
method="POST",
|
|
987
|
+
url=url,
|
|
988
|
+
json=data,
|
|
989
|
+
headers=headers
|
|
990
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
lazyad/__init__.py,sha256=tnVTFEgdzgMWQI0mZqy3DAueMJjpypPb15DdxJ-9TiU,41
|
|
2
2
|
lazyad/crawlers/__init__.py,sha256=GK3GGpiUJbESc1uGTwSmEnsSUwYDNZfJCxeLYB4CpS4,68
|
|
3
|
-
lazyad/crawlers/chuangliang.py,sha256=
|
|
3
|
+
lazyad/crawlers/chuangliang.py,sha256=b5XEnGUCXunAuyda0_1R7Mf8jpBacCEfoktZuJVTzWg,28505
|
|
4
4
|
lazyad/crawlers/mintegral.py,sha256=FNd9CAZd0x_jZdrSKunODYGJJb6EJofmq0kQzSDu2Yg,11154
|
|
5
5
|
lazyad/crawlers/oceanengine.py,sha256=kjBEpCb_h5OpodCTqzvXd5MBBwAuw3Oq5UKWoTCXrQM,4540
|
|
6
6
|
lazyad/crawlers/qq.py,sha256=X_VjdgzAcDfckEAHrvdqBLtnmAuCBHPJVWu2H-IHZBA,5649
|
|
@@ -10,7 +10,7 @@ lazyad/open/kuaishou.py,sha256=B4wz3XW1hLQy7XR_nDQwrMUrYnm9Djec7OXKXRdiYXc,635
|
|
|
10
10
|
lazyad/open/mintegral.py,sha256=BXCaCfnz2iUsR-RtDSA8I27KSK8r4v3xkZfllD9q_vY,12788
|
|
11
11
|
lazyad/open/qq.py,sha256=pru1p4LCjURD9N5ukx-OStYAmDCvrTW4VMB2N0-3i5Q,6904
|
|
12
12
|
lazyad/open/unity.py,sha256=A0tEN5k40xq0v1cRnTLwRN5N7CBIe2oAyMRH1uxDAEw,8493
|
|
13
|
-
lazyad-0.0.
|
|
14
|
-
lazyad-0.0.
|
|
15
|
-
lazyad-0.0.
|
|
16
|
-
lazyad-0.0.
|
|
13
|
+
lazyad-0.0.65.dist-info/METADATA,sha256=bMio1-q7O0FUREZI8e93Py5r20mXrT58e4wF4-R48HY,1916
|
|
14
|
+
lazyad-0.0.65.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
15
|
+
lazyad-0.0.65.dist-info/top_level.txt,sha256=RAPjtj4gZYpsKAM3fAQrWyyn84xjdRuaiUS76gx6eNs,7
|
|
16
|
+
lazyad-0.0.65.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|