You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Calculate start and end indices for current page
start_idx = (page - 1) * 5
end_idx = start_idx + 5
# Get total results for this page
current_page_results = search_page[start_idx:end_idx]
# Print raw data for debugging
print("\nRaw data for current page results:")
for item in current_page_results:
print(f"Raw Album ID: {item[0]}")
print(f"Raw Title Data: {item[1]}")
print("------------------------")`
return:
`
[2025-03-28 03:02:43] [MainThread]:【api】https://www.jmapiproxyxxx.vip/search?main_tag=0&search_query=%E7%90%AA%E9%9C%B2%E8%AF%BA&page=1&o=mr&t=a
Raw data for current page results:
Raw Album ID: 1081374
Raw Title Data: {'id': '1081374', 'author': '蚕二号', 'description': None, 'name': '[七星娱乐汉化组] [秘密结社雾の湖战缐 (蚕二号)] 突かれて搾られる (东方Project)[中国翻译][DL版]', 'image': '', 'category': {'id': '1', 'title': '同人'}, 'category_sub': {'id': '1', 'title': '同人'}, 'liked': False, 'is_favorite': False, 'update_at': 1740036865, 'tags': []}
Raw Album ID: 632039
Raw Title Data: {'id': '632039', 'author': 'もや造', 'description': None, 'name': '(C104) [北国もやし制造所 (もや造)] 吸血鬼の夏休み (东方Project)', 'image': '', 'category': {'id': '1', 'title': '同人'}, 'category_sub': {'id': '2', 'title': '单本'}, 'liked': False, 'is_favorite': False, 'update_at': 1725510565, 'tags': []}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
` client = self.get_jm_client()
search_page: JmSearchPage = client.search_site(search_query=keyword, page=1+(page//80))
return:
`
[2025-03-28 03:02:43] [MainThread]:【api】https://www.jmapiproxyxxx.vip/search?main_tag=0&search_query=%E7%90%AA%E9%9C%B2%E8%AF%BA&page=1&o=mr&t=a
Raw data for current page results:
Raw Album ID: 1081374
Raw Title Data: {'id': '1081374', 'author': '蚕二号', 'description': None, 'name': '[七星娱乐汉化组] [秘密结社雾の湖战缐 (蚕二号)] 突かれて搾られる (东方Project)[中国翻译][DL版]', 'image': '', 'category': {'id': '1', 'title': '同人'}, 'category_sub': {'id': '1', 'title': '同人'}, 'liked': False, 'is_favorite': False, 'update_at': 1740036865, 'tags': []}
Raw Album ID: 632039
Raw Title Data: {'id': '632039', 'author': 'もや造', 'description': None, 'name': '(C104) [北国もやし制造所 (もや造)] 吸血鬼の夏休み (东方Project)', 'image': '', 'category': {'id': '1', 'title': '同人'}, 'category_sub': {'id': '2', 'title': '单本'}, 'liked': False, 'is_favorite': False, 'update_at': 1725510565, 'tags': []}
Raw Album ID: 582123
Raw Title Data: {'id': '582123', 'author': '中枢回路', 'description': None, 'name': '[堕樱汉化组] (C81) [てれびさん (中 枢回路)] 东方てれびさん2 (东方Project) [中国翻译]', 'image': '', 'category': {'id': '1', 'title': '同人'}, 'category_sub': {'id': '1', 'title': '同人'}, 'liked': False, 'is_favorite': False, 'update_at': 1718080285, 'tags': []}
Raw Album ID: 510562
Raw Title Data: {'id': '510562', 'author': 'かめぱすた', 'description': None, 'name': '最强的琪露诺和fumofumo意面 [白杨 汉化组] [かめぱすた]さいきょーチルノとふもふもパスタ (东方Project)', 'image': '', 'category': {'id': '1', 'title': '同人'}, 'category_sub': {'id': '1', 'title': '同人'}, 'liked': False, 'is_favorite': False, 'update_at': 1700185737, 'tags': []}
Raw Album ID: 475102
Raw Title Data: {'id': '475102', 'author': 'イトウゆーじ', 'description': None, 'name': '[110-GROOVE (イトウゆーじ)] 真 夏のチルノちゃん (东方Project) [中国翻译] [DL版]', 'image': '', 'category': {'id': '1', 'title': '同人'}, 'category_sub': {'id': '1', 'title': '同人'}, 'liked': False, 'is_favorite': False, 'update_at': 1690960628, 'tags': []}
`
其中tags均为空
Beta Was this translation helpful? Give feedback.
All reactions