sync_lottery_data
Synchronizes the latest data for specified lottery types into a local database, enabling efficient access and analysis of lottery information.
Instructions
同步指定彩票类型的最新数据到本地数据库
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lottery_type | Yes | 彩票类型 | |
periods | No | 同步期数 |
Input Schema (JSON Schema)
{
"properties": {
"lottery_type": {
"description": "彩票类型",
"enum": [
"双色球",
"福彩3D",
"七乐彩",
"快乐8"
],
"type": "string"
},
"periods": {
"default": 10,
"description": "同步期数",
"maximum": 50,
"minimum": 1,
"type": "integer"
}
},
"required": [
"lottery_type"
],
"type": "object"
}