| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import time
- import requests
- import sqlite3
- from datetime import datetime
- def get_buff_data(page_num):
- """从Buff API获取商品数据"""
- url = "https://buff.163.com/api/market/goods"
- querystring = {"game": "csgo","page_size": 80, "page_num": page_num, "tab": "selling"}
- headers = {
- "accept": "application/json, text/javascript, */*; q=0.01",
- "accept-language": "zh-CN,zh;q=0.9",
- "cache-control": "no-cache",
- "dnt": "1",
- "pragma": "no-cache",
- "priority": "u=1, i",
- "referer": "https://buff.163.com/market/csgo",
- "sec-fetch-dest": "empty",
- "sec-fetch-mode": "cors",
- "sec-fetch-site": "same-origin",
- "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36",
- "x-requested-with": "XMLHttpRequest",
- "Cookie": "NTES_YD_SESS=9Ko5g05jJPzL0nDaqrG7L0B9n7AiGVSy0Q4Rh7lAlP3Ll.DwlvG8Q0qiKkN_BGxhLcofy9IT_mEPLnlsRxJMcT2j2ZHJdIidq2YgzyU9uC._XmVDURPonklYKRXNyoZ68AzWP5XQjf7Bz1ouZKiPQ5hfZoAcTClcSb0NUg2ijt4Ce5EYAMxsLEvFAnPKKgSjKIdOtZSpSJpOcBu11Bh9Ccum0uxDMGYj9; S_INFO=1774149977|0|0&60##|18511117532; P_INFO=18511117532|1774149977|1|netease_buff|00&99|null&null&null#xiz&540100#10#0|&0||18511117532; remember_me=U1089937100|UUBCBtmtPIUdtQZz9YmlUBjQ28AfdV8m; session=1-5oyvnvmyB29IGHS6qhrIkkZEjN-Jy2mGZ6NU34Eh3UPf2017034644; csrf_token=IjY0Mzg5OTRhYmY5MTFmNGU2MzBjZDI0ZjAwZWQxYzQ1YTdmYjEyZmUi.ab9hYA.awg5FDUiey0d1h9yU_kdomsG6lo",
- "Accept-Encoding": "gzip, deflate, br",
- "Connection": "keep-alive"
- }
-
- response = requests.get(url, headers=headers, params=querystring)
- return response.json()
- def save_to_database(data):
- """保存数据到数据库"""
- conn = sqlite3.connect('buff_prices.db')
- cursor = conn.cursor()
- current_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
-
- try:
- items = data.get('data', {}).get('items', [])
- count = 0
- inserted_count = 0
- updated_count = 0
-
- for item in items:
- # 获取稀有度
- rarity = None
- if 'goods_info' in item and 'info' in item['goods_info']:
- tags = item['goods_info']['info'].get('tags', {})
- if 'rarity' in tags:
- rarity = tags['rarity'].get('localized_name')
-
- # 获取类型
- item_type = None
- if 'goods_info' in item and 'info' in item['goods_info']:
- tags = item['goods_info']['info'].get('tags', {})
- if 'type' in tags:
- item_type = tags['type'].get('localized_name')
-
- # 获取图标
- icon_url = None
- if 'goods_info' in item:
- icon_url = item['goods_info'].get('icon_url')
-
- # 插入或更新商品信息
- cursor.execute('''
- INSERT INTO products (buff_id, name, market_hash_name, type, rarity, icon_url, updated_at)
- VALUES (?, ?, ?, ?, ?, ?, ?)
- ON CONFLICT(buff_id) DO UPDATE SET
- name = excluded.name,
- market_hash_name = excluded.market_hash_name,
- type = excluded.type,
- rarity = excluded.rarity,
- icon_url = excluded.icon_url,
- updated_at = excluded.updated_at
- ''', (
- item['id'],
- item['name'],
- item['market_hash_name'],
- item_type,
- rarity,
- icon_url,
- current_time
- ))
-
- # 判断是插入还是更新
- if cursor.rowcount == 1:
- inserted_count += 1
- else:
- updated_count += 1
-
- # 获取刚插入或更新的商品ID
- cursor.execute('SELECT id FROM products WHERE buff_id = ?', (item['id'],))
- product = cursor.fetchone()
- product_id = product[0]
-
- # 插入或更新Buff平台价格
- cursor.execute('''
- INSERT INTO platform_prices (product_id, platform_code, min_price, recorded_at)
- VALUES (?, ?, ?, ?)
- ON CONFLICT(product_id, platform_code) DO UPDATE SET
- min_price = excluded.min_price,
- recorded_at = excluded.recorded_at
- ''', (
- product_id,
- 'buff',
- item['sell_min_price'],
- current_time
- ))
-
- count += 1
-
- conn.commit()
- print(f"成功保存 {count} 条商品数据")
- print(f"其中: 新插入 {inserted_count} 条, 更新 {updated_count} 条")
-
- except Exception as e:
- conn.rollback()
- print(f"保存数据出错: {e}")
- finally:
- conn.close()
- def main():
- ind = 0
- while ind < 400:
- ind = ind + 1
- # 获取Buff数据
- print("正在获取Buff数据,页码:" + str(ind))
- response_data = get_buff_data(ind)
-
- if response_data.get('code') == 'OK':
- # 保存到数据库
- save_to_database(response_data)
- else:
- print(f"API返回错误: {response_data.get('msg')}")
- time.sleep(5)
-
- if __name__ == "__main__":
- main()
|