用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - python代码库

基于Python的双色球开奖结果接口调用代码实例

2016-04-29 作者: juhe举报

[python]代码库

#!/usr/bin/python
# -*- coding: utf-8 -*-
import json, urllib
from urllib import urlencode
 
#----------------------------------
# 中国彩票开奖结果调用示例代码 - 聚合数据
# 在线接口文档:http://www.juhe.cn/docs/53
#----------------------------------
 
def main():
 
    #配置您申请的APPKey
    appkey = "*********************"
 
    #1.彩票开奖结果查询
    request1(appkey,"GET")
 
    #2.历史开奖数据查询
    request2(appkey,"GET")
 
    #3.支持彩种列表
    request3(appkey,"GET")
 
 
 
#彩票开奖结果查询
def request1(appkey, m="GET"):
    url = "http://v.juhe.cn/lottery/query"
    params = {
        "key" : appkey, #应用APPKEY(应用详细页查询)
        "lotteryid" : "", #彩票ID
        "date" : "", #指定开奖日期2014-08-01,不指定默返回最近开奖结果
        "dtype" : "", #返回数据的格式,xml或json,默认json
 
    }
    params = urlencode(params)
    if m =="GET":
        f = urllib.urlopen("%s?%s" % (url, params))
    else:
        f = urllib.urlopen(url, params)
 
    content = f.read()
    res = json.loads(content)
    if res:
        error_code = res["error_code"]
        if error_code == 0:
            #成功请求
            print res["result"]
        else:
            print "%s:%s" % (res["error_code"],res["reason"])
    else:
        print "request api error"
 
#历史开奖数据查询
def request2(appkey, m="GET"):
    url = "http://v.juhe.cn/lottery/history"
    params = {
        "key" : appkey, #应用APPKEY(应用详细页查询)
        "lotteryid" : "", #彩票ID
        "year" : "", #指定年份,如2013,默认2014
        "dtype" : "", #返回数据的格式,xml或json,默认json
 
    }
    params = urlencode(params)
    if m =="GET":
        f = urllib.urlopen("%s?%s" % (url, params))
    else:
        f = urllib.urlopen(url, params)
 
    content = f.read()
    res = json.loads(content)
    if res:
        error_code = res["error_code"]
        if error_code == 0:
            #成功请求
            print res["result"]
        else:
            print "%s:%s" % (res["error_code"],res["reason"])
    else:
        print "request api error"
 
#支持彩种列表
def request3(appkey, m="GET"):
    url = "http://v.juhe.cn/lottery/lolist"
    params = {
        "key" : appkey, #应用APPKEY(应用详细页查询)
        "dtype" : "", #返回数据的格式,xml或json,默认json
 
    }
    params = urlencode(params)
    if m =="GET":
        f = urllib.urlopen("%s?%s" % (url, params))
    else:
        f = urllib.urlopen(url, params)
 
    content = f.read()
    res = json.loads(content)
    if res:
        error_code = res["error_code"]
        if error_code == 0:
            #成功请求
            print res["result"]
        else:
            print "%s:%s" % (res["error_code"],res["reason"])
    else:
        print "request api error"
 
 
 
if __name__ == '__main__':
    main()


网友评论    (发表评论)

共1 条评论 1/1页

发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...