You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
383 B
Python
20 lines
383 B
Python
# -*- coding: utf-8 -*-
|
|
# @Time : 2025/9/24 15:50
|
|
# @Author : zhaoxiangpeng
|
|
# @File : cnki_model.py
|
|
|
|
def hcs_data_list(page: int | str = 1, **kwargs):
|
|
o = dict(
|
|
Author="",
|
|
Organ="",
|
|
SubjectCode="",
|
|
ParentCode="",
|
|
Type="",
|
|
code="1",
|
|
IsRz="-1",
|
|
)
|
|
if page != 1:
|
|
o["PageIndex"] = str(page)
|
|
|
|
return o
|