├── qr_code.png ├── setuptools-33.1.1.zip ├── cookies └── jdlzl_bs.cookies ├── __pycache__ ├── config.cpython-39.pyc ├── timer.cpython-39.pyc ├── util.cpython-39.pyc ├── exception.cpython-39.pyc ├── jd_logger.cpython-39.pyc └── jd_spider_requests.cpython-39.pyc ├── requirements.txt ├── exception.py ├── jd_logger.py ├── config.py ├── main.py ├── timer.py ├── config.ini ├── README.md ├── jd_seckill.log ├── util.py ├── ez_setup.py ├── jd_spider_requests.py └── LICENSE /qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/qr_code.png -------------------------------------------------------------------------------- /setuptools-33.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/setuptools-33.1.1.zip -------------------------------------------------------------------------------- /cookies/jdlzl_bs.cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/cookies/jdlzl_bs.cookies -------------------------------------------------------------------------------- /__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/timer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/__pycache__/timer.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/__pycache__/util.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/exception.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/__pycache__/exception.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/jd_logger.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/__pycache__/jd_logger.cpython-39.pyc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | certifi==2020.4.5.1 2 | chardet==3.0.4 3 | idna==2.9 4 | lxml==4.5.1 5 | requests==2.23.0 6 | urllib3==1.25.9 7 | -------------------------------------------------------------------------------- /__pycache__/jd_spider_requests.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoranLi/maotao_second/HEAD/__pycache__/jd_spider_requests.cpython-39.pyc -------------------------------------------------------------------------------- /exception.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- encoding=utf8 -*- 3 | 4 | 5 | class SKException(Exception): 6 | 7 | def __init__(self, message): 8 | super().__init__(message) 9 | -------------------------------------------------------------------------------- /jd_logger.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import logging.handlers 3 | ''' 4 | 日志模块 5 | ''' 6 | LOG_FILENAME = 'jd_seckill.log' 7 | logger = logging.getLogger() 8 | 9 | 10 | def set_logger(): 11 | logger.setLevel(logging.INFO) 12 | formatter = logging.Formatter('%(asctime)s - %(process)d-%(threadName)s - ' 13 | '%(pathname)s[line:%(lineno)d] - %(levelname)s: %(message)s') 14 | console_handler = logging.StreamHandler() 15 | console_handler.setFormatter(formatter) 16 | logger.addHandler(console_handler) 17 | file_handler = logging.handlers.RotatingFileHandler( 18 | LOG_FILENAME, maxBytes=10485760, backupCount=5, encoding="utf-8") 19 | file_handler.setFormatter(formatter) 20 | logger.addHandler(file_handler) 21 | 22 | set_logger() -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | import os 2 | import configparser 3 | 4 | 5 | class Config(object): 6 | def __init__(self, config_file='config.ini'): 7 | self._path = os.path.join(os.getcwd(), config_file) 8 | if not os.path.exists(self._path): 9 | raise FileNotFoundError("No such file: config.ini") 10 | self._config = configparser.ConfigParser() 11 | self._config.read(self._path, encoding='utf-8-sig') 12 | self._configRaw = configparser.RawConfigParser() 13 | self._configRaw.read(self._path, encoding='utf-8-sig') 14 | 15 | def get(self, section, name): 16 | return self._config.get(section, name) 17 | 18 | def getRaw(self, section, name): 19 | return self._configRaw.get(section, name) 20 | 21 | 22 | global_config = Config() 23 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import sys 2 | from jd_spider_requests import JdSeckill 3 | 4 | 5 | if __name__ == '__main__': 6 | a = """ 7 | 8 | oooo oooooooooo. .oooooo..o oooo o8o oooo oooo 9 | `888 `888' `Y8b d8P' `Y8 `888 `"' `888 `888 10 | 888 888 888 Y88bo. .ooooo. .ooooo. 888 oooo oooo 888 888 11 | 888 888 888 `"Y8888o. d88' `88b d88' `"Y8 888 .8P' `888 888 888 12 | 888 888 888 8888888 `"Y88b 888ooo888 888 888888. 888 888 888 13 | 888 888 d88' oo .d8P 888 .o 888 .o8 888 `88b. 888 888 888 14 | .o. 88P o888bood8P' 8""88888P' `Y8bod8P' `Y8bod8P' o888o o888o o888o o888o o888o 15 | `Y888P 16 | 17 | 功能列表: 18 | 1.预约商品 19 | 2.秒杀抢购商品 20 | """ 21 | print(a) 22 | 23 | jd_seckill = JdSeckill() 24 | choice_function = input('请选择:') 25 | if choice_function == '1': 26 | jd_seckill.reserve() 27 | elif choice_function == '2': 28 | jd_seckill.seckill_by_proc_pool() 29 | else: 30 | print('没有此功能') 31 | sys.exit(1) 32 | 33 | -------------------------------------------------------------------------------- /timer.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | import time 3 | import requests 4 | import json 5 | 6 | from datetime import datetime 7 | from jd_logger import logger 8 | from config import global_config 9 | 10 | 11 | class Timer(object): 12 | def __init__(self, sleep_interval=0.5): 13 | # '2018-09-28 22:45:50.000' 14 | # buy_time = 2020-12-22 09:59:59.500 15 | buy_time_everyday = global_config.getRaw('config', 'buy_time').__str__() 16 | localtime = time.localtime(time.time()) 17 | self.buy_time = datetime.strptime( 18 | localtime.tm_year.__str__() + '-' + localtime.tm_mon.__str__() + '-' + localtime.tm_mday.__str__() 19 | + ' ' + buy_time_everyday, 20 | "%Y-%m-%d %H:%M:%S.%f") 21 | self.buy_time_ms = int(time.mktime(self.buy_time.timetuple()) * 1000.0 + self.buy_time.microsecond / 1000) 22 | self.sleep_interval = sleep_interval 23 | 24 | self.diff_time = self.local_jd_time_diff() 25 | 26 | def jd_time(self): 27 | """ 28 | 从京东服务器获取时间毫秒 29 | :return: 30 | """ 31 | url = 'https://a.jd.com//ajax/queryServerData.html' 32 | ret = requests.get(url).text 33 | print("ret----->") 34 | # print(ret) 35 | # js = json.loads(ret) 36 | # return int(js["serverTime"]) 37 | print(time.time()) 38 | return int(time.time()) 39 | 40 | def local_time(self): 41 | """ 42 | 获取本地毫秒时间 43 | :return: 44 | """ 45 | return int(round(time.time() * 1000)) 46 | 47 | def local_jd_time_diff(self): 48 | """ 49 | 计算本地与京东服务器时间差 50 | :return: 51 | """ 52 | return self.local_time() - self.jd_time() 53 | 54 | def start(self): 55 | logger.info('正在等待到达设定时间:{},检测本地时间与京东服务器时间误差为【{}】毫秒'.format(self.buy_time, self.diff_time)) 56 | while True: 57 | # 本地时间减去与京东的时间差,能够将时间误差提升到0.1秒附近 58 | # 具体精度依赖获取京东服务器时间的网络时间损耗 59 | if self.local_time() - self.diff_time >= self.buy_time_ms: 60 | logger.info('时间到达,开始执行……') 61 | break 62 | else: 63 | time.sleep(self.sleep_interval) 64 | -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | [config] 2 | # eid, fp参数必须填写,具体请参考 wiki-常见问题 3 | # 随意填写可能导致订单无法提交等问题 4 | eid = "NDWHOHY7EBMTWHQGG3C436TIFC2OAQJPHREPHN52K4VBC2GQLMAUZU7JKILNORRYA6LR2ZCGHRNRZONST5KAWBT4ZM" 5 | fp = "729cd8111a6f20d308eda16d88e30b84" 6 | # cookie现在不需要填写了 7 | # cookies_String = "__jdv=76161171|direct|-|none|-|1643167700644; __jdu=1643167700642312381376; areaId=1; shshshfpa=c27c9647-57db-6838-bbc6-e38435c389ca-1643167702; shshshfpb=tEbeBl2NMWerga4pKxNZJOA; TrackID=1R6-nNK9ieqQyjk0C3Xao0VnYAkW_4VVtOZapNGF9eGZNEykjkOCFhDGsvBSrKttLI4WtO8pvI6Mh57WzDDLuFs0FejRD_tV6IGoN8j2yGlKy-lc84-4VSOidFB478fSc; thor=C04877B0F73FA5198961C675EEDBB5EFCFBFA312A3C6395D8614C3306889F08DB9ED01E99830B30ED408B021EE9664B19061AD778FED9B58A2A30F4D4EAD1B8E886942310E88C3B028937286BF4C86D4862C792FEC098246439C5C2CB6AD36A2E682CCA73EE361AB134DAB0EC3E3DDCB6724A5B901BE60B75480D5C992C610ABC63CD6FC9D608EE8DF35A502ECFAAD5D; pinId=10YZiFFEDYCmEXmkfaBZZw; pin=lzl1346162166; unick=jdlzl_bs; ceshi3.com=201; _tp=Dgjg9wLR0KdUbb9zCV70Kw%3D%3D; _pst=lzl1346162166; __jda=122270672.1643167700642312381376.1643167701.1643167701.1643167701.1; __jdc=122270672; token=943a60143c54a68aebca80e52476c56e,3,912870; __tk=OcaBNIa3NLuBrIPdOIdeqLTdrfbirUgFNiJBOUOfOLa,3,912870; shshshfp=f536d4307c326e69e37c38d8ac1fc038; ip_cityCode=2802; user-key=a4fd5d38-9093-44c0-8e58-d30bb6f56386; shshshsID=c0c49511e7fcda26526bb8befd584b3e_4_1643167755977; cn=33; ipLoc-djd=1-2800-2851-0.1818421706; ipLocation=%u5317%u4eac; JSESSIONID=BDE5E84FA2B63E06116645715A06013B.s1; 3AB9D23F7A4B3C9B=NDWHOHY7EBMTWHQGG3C436TIFC2OAQJPHREPHN52K4VBC2GQLMAUZU7JKILNORRYA6LR2ZCGHRNRZONST5KAWBT4ZM; __jdb=122270672.10.1643167700642312381376|1.1643167701" 8 | 9 | # 商品id 10 | # 已经是茅台的sku_id了 11 | sku_id = 100012043978 12 | # 设定时间 # 2020-12-09 10:00:00.100000 13 | # 修改成每天的几点几分几秒几毫秒 14 | buy_time = 09:59:59.500 15 | # 默认UA 16 | DEFAULT_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36" 17 | # 是否使用随机 useragent,默认为 false 18 | random_useragent = false 19 | 20 | [account] 21 | # 支付密码 22 | # 如果你的账户中有可用的京券(注意不是东券)或 在上次购买订单中使用了京豆, 23 | # 那么京东可能会在下单时自动选择京券支付 或 自动勾选京豆支付。 24 | # 此时下单会要求输入六位数字的支付密码。请在下方配置你的支付密码,如 123456 。 25 | # 如果没有上述情况,下方请留空。 26 | payment_pwd = "" 27 | 28 | [messenger] 29 | # 使用了Server酱的推送服务 30 | # 如果想开启下单成功后消息推送,则将 enable 设置为 true,默认为 false 不开启推送 31 | # 开启消息推送必须填入 sckey,如何获取请参考 http://sc.ftqq.com/3.version。感谢Server酱~ 32 | enable = false 33 | sckey = "" 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Jd_Seckill 2 | 3 | ## 特别声明: 4 | 5 | * 本仓库发布的`jd_seckill`项目中涉及的任何脚本,仅用于测试和学习研究,禁止用于商业用途,不能保证其合法性,准确性,完整性和有效性,请根据情况自行判断。 6 | 7 | * 本项目内所有资源文件,禁止任何公众号、自媒体进行任何形式的转载、发布。 8 | 9 | * `huanghyw` 对任何脚本问题概不负责,包括但不限于由任何脚本错误导致的任何损失或损害. 10 | 11 | * 间接使用脚本的任何用户,包括但不限于建立VPS或在某些行为违反国家/地区法律或相关法规的情况下进行传播, `huanghyw` 对于由此引起的任何隐私泄漏或其他后果概不负责。 12 | 13 | * 请勿将`jd_seckill`项目的任何内容用于商业或非法目的,否则后果自负。 14 | 15 | * 如果任何单位或个人认为该项目的脚本可能涉嫌侵犯其权利,则应及时通知并提供身份证明,所有权证明,我们将在收到认证文件后删除相关脚本。 16 | 17 | * 以任何方式查看此项目的人或直接或间接使用`jd_seckill`项目的任何脚本的使用者都应仔细阅读此声明。`huanghyw` 保留随时更改或补充此免责声明的权利。一旦使用并复制了任何相关脚本或`jd_seckill`项目,则视为您已接受此免责声明。 18 | 19 | * 您必须在下载后的24小时内从计算机或手机中完全删除以上内容。 20 | 21 | * 本项目遵循`GPL-3.0 License`协议,如果本特别声明与`GPL-3.0 License`协议有冲突之处,以本特别声明为准。 22 | 23 | > ***您使用或者复制了本仓库且本人制作的任何代码或项目,则视为`已接受`此声明,请仔细阅读*** 24 | > ***您在本声明未发出之时点使用或者复制了本仓库且本人制作的任何代码或项目且此时还在使用,则视为`已接受`此声明,请仔细阅读*** 25 | 26 | ## 简介 27 | 通过我这段时间的使用(2020-12-12至2020-12-17),证实这个脚本确实能抢到茅台。我自己三个账号抢了四瓶,帮两个朋友抢了4瓶。 28 | 大家只要确认自己配置文件没有问题,Cookie没有失效,坚持下去总能成功的。 29 | 30 | 根据这段时间大家的反馈,除了茅台,其它不需要加购物车的商品也不能抢。具体原因还没有进行排查,应该是京东非茅台商品抢购流程发生了变化。 31 | 为了避免耽误大家的时间,先不要抢购非茅台商品。 32 | 等这个问题处理好了,会上线新版本。 33 | 34 | 35 | ## 暗中观察 36 | 37 | 根据12月14日以来抢茅台的日志分析,大胆推断再接再厉返回Json消息中`resultCode`与小白信用的关系。 38 | 这里主要分析出现频率最高的`90016`和`90008`。 39 | 40 | ### 样例JSON 41 | ```json 42 | {'errorMessage': '很遗憾没有抢到,再接再厉哦。', 'orderId': 0, 'resultCode': 90016, 'skuId': 0, 'success': False} 43 | {'errorMessage': '很遗憾没有抢到,再接再厉哦。', 'orderId': 0, 'resultCode': 90008, 'skuId': 0, 'success': False} 44 | ``` 45 | 46 | ### 数据统计 47 | 48 | | 案例 | 小白信用 | 90016 | 90008 | 抢到耗时 | 49 | | ---- | ---- | ---- | ---- | ---- | 50 | | 张三 | 63.8 | 59.63% | 40.37% | 暂未抢到 | 51 | | 李四 | 92.9 | 72.05% | 27.94% | 4天 | 52 | | 王五 | 99.6 | 75.70% | 24.29% | 暂未抢到 | 53 | | 赵六 | 103.4 | 91.02% | 8.9% | 2天 | 54 | 55 | ### 猜测 56 | 推测返回90008是京东的风控机制,代表这次请求直接失败,不参与抢购。 57 | 小白信用越低越容易触发京东的风控。 58 | 59 | 从数据来看小白信用与风控的关系大概每十分为一个等级,所以赵六基本上没有被拦截,李四和王五的拦截几率相近,张三的拦截几率最高。 60 | 61 | 风控放行后才会进行抢购,这时候用的应该是水库计数模型,假设无法一次性拿到所有数据的情况下来尽量的做到抢购成功用户的均匀分布,这样就和概率相关了。 62 | 63 | > 综上,张三想成功有点困难,小白信用是100+的用户成功几率最大。 64 | 65 | ## 主要功能 66 | 67 | - 登陆京东商城([www.jd.com](http://www.jd.com/)) 68 | - 用京东APP扫码给出的二维码 69 | - 预约茅台 70 | - 定时自动预约 71 | - 秒杀预约后等待抢购 72 | - 定时开始自动抢购 73 | 74 | ## 运行环境 75 | 76 | - [Python 3](https://www.python.org/) 77 | 78 | ## 第三方库 79 | 80 | - 需要使用到的库已经放在requirements.txt,使用pip安装的可以使用指令 81 | `pip install -r requirements.txt` 82 | - 如果国内安装第三方库比较慢,可以使用以下指令进行清华源加速 83 | `pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/` 84 | 85 | ## 使用教程 86 | #### 1. 推荐Chrome浏览器 87 | #### 2. 网页扫码登录,或者账号密码登录 88 | #### 3. 填写config.ini配置信息 89 | (1)`eid`和`fp`找个普通商品随便下单,然后抓包就能看到,这两个值可以填固定的 90 | > 随便找一个商品下单,然后进入结算页面,打开浏览器的调试窗口,切换到控制台Tab页,在控制台中输入变量`_JdTdudfp`,即可从输出的Json中获取`eid`和`fp`。 91 | > 不会的话参考原作者的issue https://github.com/zhou-xiaojun/jd_mask/issues/22 92 | 93 | (2)`sku_id`,`DEFAULT_USER_AGENT` 94 | > `sku_id`已经按照茅台的填好。 95 | > `cookies_string` 现在已经不需要填写了 96 | > `DEFAULT_USER_AGENT` 可以用默认的。谷歌浏览器也可以浏览器地址栏中输入about:version 查看`USER_AGENT`替换 97 | 98 | (3)配置一下时间 99 | > 现在不强制要求同步最新时间了,程序会自动同步京东时间 100 | >> 但要是电脑时间快慢了好几个小时,最好还是同步一下吧 101 | 102 | 以上都是必须的. 103 | > tips: 104 | > 在程序开始运行后,会检测本地时间与京东服务器时间,输出的差值为本地时间-京东服务器时间,即-50为本地时间比京东服务器时间慢50ms。 105 | > 本代码的执行的抢购时间以本地电脑/服务器时间为准 106 | 107 | (4)修改抢购瓶数 108 | > 代码中默认抢购瓶数为2,且无法在配置文件中修改 109 | > 如果一个月内抢购过一瓶,最好修改抢购瓶数为1 110 | > 具体修改为:在`jd_spider_requests.py`文件中搜索`self.seckill_num = 2`,将`2`改为`1` 111 | 112 | #### 4.运行main.py 113 | 根据提示选择相应功能即可 114 | 115 | #### 5.抢购结果确认 116 | 抢购是否成功通常在程序开始的一分钟内可见分晓! 117 | 搜索日志,出现“抢购成功,订单号xxxxx",代表成功抢到了,务必半小时内支付订单!程序暂时不支持自动停止,需要手动STOP! 118 | 若两分钟还未抢购成功,基本上就是没抢到!程序暂时不支持自动停止,需要手动STOP! 119 | 120 | ## 打赏 121 | 不用再打赏了,抢到茅台的同学请保持这份喜悦,没抢到的继续加油 :) 122 | 123 | ## 感谢 124 | ##### 非常感谢原作者 https://github.com/zhou-xiaojun/jd_mask 提供的代码 125 | ##### 也非常感谢 https://github.com/wlwwu/jd_maotai 进行的优化 126 | -------------------------------------------------------------------------------- /jd_seckill.log: -------------------------------------------------------------------------------- 1 | 2022-01-26 12:45:41,393 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:308] - INFO: seckill_by_proc_pool 需登陆后调用,开始扫码登陆 2 | 2022-01-26 12:45:41,862 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:177] - INFO: 二维码获取成功,请打开京东APP扫描 3 | 2022-01-26 12:45:42,113 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 4 | 2022-01-26 12:45:44,152 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 5 | 2022-01-26 12:45:46,280 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 6 | 2022-01-26 12:45:48,320 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 7 | 2022-01-26 12:45:50,368 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 8 | 2022-01-26 12:45:52,452 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 9 | 2022-01-26 12:45:54,477 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 10 | 2022-01-26 12:45:56,493 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 11 | 2022-01-26 12:45:58,536 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:205] - INFO: Code: 201, Message: 二维码未扫描,请扫描二维码 12 | 2022-01-26 12:46:00,565 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:208] - INFO: 已完成手机客户端确认 13 | 2022-01-26 12:46:00,872 - 13592-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:262] - INFO: 二维码登录成功 14 | 2022-01-26 12:46:01,478 - 13627-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:461] - INFO: 用户:jdlzl_bs 15 | 2022-01-26 12:46:01,486 - 13623-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:461] - INFO: 用户:jdlzl_bs 16 | 2022-01-26 12:46:01,486 - 13625-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:461] - INFO: 用户:jdlzl_bs 17 | 2022-01-26 12:46:01,542 - 13626-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:461] - INFO: 用户:jdlzl_bs 18 | 2022-01-26 12:46:04,811 - 13626-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:462] - INFO: 商品名称:【茅台白酒】飞天 53%vol 500ml 贵州茅台酒(带杯)【行情 报价 价格 评测】-京东 19 | 2022-01-26 12:46:04,811 - 13626-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/timer.py[line:54] - INFO: 正在等待到达设定时间:2022-01-26 09:59:59.500000,检测本地时间与京东服务器时间误差为【1641529166252】毫秒 20 | 2022-01-26 12:46:04,844 - 13623-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:462] - INFO: 商品名称:【茅台白酒】飞天 53%vol 500ml 贵州茅台酒(带杯)【行情 报价 价格 评测】-京东 21 | 2022-01-26 12:46:04,844 - 13623-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/timer.py[line:54] - INFO: 正在等待到达设定时间:2022-01-26 09:59:59.500000,检测本地时间与京东服务器时间误差为【1641529166252】毫秒 22 | 2022-01-26 12:46:04,884 - 13627-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:462] - INFO: 商品名称:【茅台白酒】飞天 53%vol 500ml 贵州茅台酒(带杯)【行情 报价 价格 评测】-京东 23 | 2022-01-26 12:46:04,885 - 13627-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/timer.py[line:54] - INFO: 正在等待到达设定时间:2022-01-26 09:59:59.500000,检测本地时间与京东服务器时间误差为【1641529166252】毫秒 24 | 2022-01-26 12:46:04,921 - 13625-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:462] - INFO: 商品名称:【茅台白酒】飞天 53%vol 500ml 贵州茅台酒(带杯)【行情 报价 价格 评测】-京东 25 | 2022-01-26 12:46:04,921 - 13625-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/timer.py[line:54] - INFO: 正在等待到达设定时间:2022-01-26 09:59:59.500000,检测本地时间与京东服务器时间误差为【1641529166252】毫秒 26 | 2022-01-26 12:46:05,074 - 13624-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:461] - INFO: 用户:jdlzl_bs 27 | 2022-01-26 12:46:05,389 - 13624-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/jd_spider_requests.py[line:462] - INFO: 商品名称:【茅台白酒】飞天 53%vol 500ml 贵州茅台酒(带杯)【行情 报价 价格 评测】-京东 28 | 2022-01-26 12:46:05,389 - 13624-MainThread - /Users/mac/Downloads/seconds_kills/jd_maotai_seckill/timer.py[line:54] - INFO: 正在等待到达设定时间:2022-01-26 09:59:59.500000,检测本地时间与京东服务器时间误差为【1641529166252】毫秒 29 | -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- 1 | import json 2 | import random 3 | import requests 4 | import os 5 | import time 6 | 7 | from config import global_config 8 | 9 | USER_AGENTS = [ 10 | "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", 11 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", 12 | "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", 13 | "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", 14 | "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", 15 | "Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", 16 | "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", 17 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", 18 | "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", 19 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", 20 | "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", 21 | "Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", 22 | "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", 23 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", 24 | "Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", 25 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", 26 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", 27 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", 28 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", 29 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", 30 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", 31 | "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", 32 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36 Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10", 33 | "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.517 Safari/537.36", 34 | "Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36", 35 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1664.3 Safari/537.36", 36 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1664.3 Safari/537.36", 37 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.16 Safari/537.36", 38 | "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1623.0 Safari/537.36", 39 | "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.17 Safari/537.36", 40 | "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.62 Safari/537.36", 41 | "Mozilla/5.0 (X11; CrOS i686 4319.74.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.57 Safari/537.36", 42 | "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.2 Safari/537.36", 43 | "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1468.0 Safari/537.36", 44 | "Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1467.0 Safari/537.36", 45 | "Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1464.0 Safari/537.36", 46 | "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1500.55 Safari/537.36", 47 | "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36", 48 | "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36", 49 | "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36", 50 | "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36", 51 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36", 52 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36", 53 | "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.90 Safari/537.36", 54 | "Mozilla/5.0 (X11; NetBSD) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36", 55 | "Mozilla/5.0 (X11; CrOS i686 3912.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36", 56 | "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.60 Safari/537.17", 57 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1309.0 Safari/537.17", 58 | "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.15 (KHTML, like Gecko) Chrome/24.0.1295.0 Safari/537.15", 59 | "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.14 (KHTML, like Gecko) Chrome/24.0.1292.0 Safari/537.14" 60 | ] 61 | 62 | 63 | def parse_json(s): 64 | begin = s.find('{') 65 | end = s.rfind('}') + 1 66 | return json.loads(s[begin:end]) 67 | 68 | 69 | def get_random_useragent(): 70 | """生成随机的UserAgent 71 | :return: UserAgent字符串 72 | """ 73 | return random.choice(USER_AGENTS) 74 | 75 | 76 | def wait_some_time(): 77 | time.sleep(random.randint(100, 300) / 1000) 78 | 79 | 80 | def send_wechat(message): 81 | """推送信息到微信""" 82 | url = 'http://sc.ftqq.com/{}.send'.format(global_config.getRaw('messenger', 'sckey')) 83 | payload = { 84 | "text":'抢购结果', 85 | "desp": message 86 | } 87 | headers = { 88 | 'User-Agent':global_config.getRaw('config', 'DEFAULT_USER_AGENT') 89 | } 90 | requests.get(url, params=payload, headers=headers) 91 | 92 | 93 | def response_status(resp): 94 | if resp.status_code != requests.codes.OK: 95 | print('Status: %u, Url: %s' % (resp.status_code, resp.url)) 96 | return False 97 | return True 98 | 99 | 100 | def open_image(image_file): 101 | if os.name == "nt": 102 | os.system('start ' + image_file) # for Windows 103 | else: 104 | if os.uname()[0] == "Linux": 105 | if "deepin" in os.uname()[2]: 106 | os.system("deepin-image-viewer " + image_file) # for deepin 107 | else: 108 | os.system("eog " + image_file) # for Linux 109 | else: 110 | os.system("open " + image_file) # for Mac 111 | 112 | 113 | def save_image(resp, image_file): 114 | with open(image_file, 'wb') as f: 115 | for chunk in resp.iter_content(chunk_size=1024): 116 | f.write(chunk) 117 | -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | """ 4 | Setuptools bootstrapping installer. 5 | 6 | Maintained at https://github.com/pypa/setuptools/tree/bootstrap. 7 | 8 | Run this script to install or upgrade setuptools. 9 | 10 | This method is DEPRECATED. Check https://github.com/pypa/setuptools/issues/581 for more details. 11 | """ 12 | 13 | import os 14 | import shutil 15 | import sys 16 | import tempfile 17 | import zipfile 18 | import optparse 19 | import subprocess 20 | import platform 21 | import textwrap 22 | import contextlib 23 | 24 | from distutils import log 25 | 26 | try: 27 | from urllib.request import urlopen 28 | except ImportError: 29 | from urllib2 import urlopen 30 | 31 | try: 32 | from site import USER_SITE 33 | except ImportError: 34 | USER_SITE = None 35 | 36 | # 33.1.1 is the last version that supports setuptools self upgrade/installation. 37 | DEFAULT_VERSION = "33.1.1" 38 | DEFAULT_URL = "https://pypi.io/packages/source/s/setuptools/" 39 | DEFAULT_SAVE_DIR = os.curdir 40 | DEFAULT_DEPRECATION_MESSAGE = "ez_setup.py is deprecated and when using it setuptools will be pinned to {0} since it's the last version that supports setuptools self upgrade/installation, check https://github.com/pypa/setuptools/issues/581 for more info; use pip to install setuptools" 41 | 42 | MEANINGFUL_INVALID_ZIP_ERR_MSG = 'Maybe {0} is corrupted, delete it and try again.' 43 | 44 | log.warn(DEFAULT_DEPRECATION_MESSAGE.format(DEFAULT_VERSION)) 45 | 46 | 47 | def _python_cmd(*args): 48 | """ 49 | Execute a command. 50 | 51 | Return True if the command succeeded. 52 | """ 53 | args = (sys.executable,) + args 54 | return subprocess.call(args) == 0 55 | 56 | 57 | def _install(archive_filename, install_args=()): 58 | """Install Setuptools.""" 59 | with archive_context(archive_filename): 60 | # installing 61 | log.warn('Installing Setuptools') 62 | if not _python_cmd('setup.py', 'install', *install_args): 63 | log.warn('Something went wrong during the installation.') 64 | log.warn('See the error message above.') 65 | # exitcode will be 2 66 | return 2 67 | 68 | 69 | def _build_egg(egg, archive_filename, to_dir): 70 | """Build Setuptools egg.""" 71 | with archive_context(archive_filename): 72 | # building an egg 73 | log.warn('Building a Setuptools egg in %s', to_dir) 74 | _python_cmd('setup.py', '-q', 'bdist_egg', '--dist-dir', to_dir) 75 | # returning the result 76 | log.warn(egg) 77 | if not os.path.exists(egg): 78 | raise IOError('Could not build the egg.') 79 | 80 | 81 | class ContextualZipFile(zipfile.ZipFile): 82 | 83 | """Supplement ZipFile class to support context manager for Python 2.6.""" 84 | 85 | def __enter__(self): 86 | return self 87 | 88 | def __exit__(self, type, value, traceback): 89 | self.close() 90 | 91 | def __new__(cls, *args, **kwargs): 92 | """Construct a ZipFile or ContextualZipFile as appropriate.""" 93 | if hasattr(zipfile.ZipFile, '__exit__'): 94 | return zipfile.ZipFile(*args, **kwargs) 95 | return super(ContextualZipFile, cls).__new__(cls) 96 | 97 | 98 | @contextlib.contextmanager 99 | def archive_context(filename): 100 | """ 101 | Unzip filename to a temporary directory, set to the cwd. 102 | 103 | The unzipped target is cleaned up after. 104 | """ 105 | tmpdir = tempfile.mkdtemp() 106 | log.warn('Extracting in %s', tmpdir) 107 | old_wd = os.getcwd() 108 | try: 109 | os.chdir(tmpdir) 110 | try: 111 | with ContextualZipFile(filename) as archive: 112 | archive.extractall() 113 | except zipfile.BadZipfile as err: 114 | if not err.args: 115 | err.args = ('', ) 116 | err.args = err.args + ( 117 | MEANINGFUL_INVALID_ZIP_ERR_MSG.format(filename), 118 | ) 119 | raise 120 | 121 | # going in the directory 122 | subdir = os.path.join(tmpdir, os.listdir(tmpdir)[0]) 123 | os.chdir(subdir) 124 | log.warn('Now working in %s', subdir) 125 | yield 126 | 127 | finally: 128 | os.chdir(old_wd) 129 | shutil.rmtree(tmpdir) 130 | 131 | 132 | def _do_download(version, download_base, to_dir, download_delay): 133 | """Download Setuptools.""" 134 | py_desig = 'py{sys.version_info[0]}.{sys.version_info[1]}'.format(sys=sys) 135 | tp = 'setuptools-{version}-{py_desig}.egg' 136 | egg = os.path.join(to_dir, tp.format(**locals())) 137 | if not os.path.exists(egg): 138 | archive = download_setuptools(version, download_base, 139 | to_dir, download_delay) 140 | _build_egg(egg, archive, to_dir) 141 | sys.path.insert(0, egg) 142 | 143 | # Remove previously-imported pkg_resources if present (see 144 | # https://bitbucket.org/pypa/setuptools/pull-request/7/ for details). 145 | if 'pkg_resources' in sys.modules: 146 | _unload_pkg_resources() 147 | 148 | import setuptools 149 | setuptools.bootstrap_install_from = egg 150 | 151 | 152 | def use_setuptools( 153 | version=DEFAULT_VERSION, download_base=DEFAULT_URL, 154 | to_dir=DEFAULT_SAVE_DIR, download_delay=15): 155 | """ 156 | Ensure that a setuptools version is installed. 157 | 158 | Return None. Raise SystemExit if the requested version 159 | or later cannot be installed. 160 | """ 161 | to_dir = os.path.abspath(to_dir) 162 | 163 | # prior to importing, capture the module state for 164 | # representative modules. 165 | rep_modules = 'pkg_resources', 'setuptools' 166 | imported = set(sys.modules).intersection(rep_modules) 167 | 168 | try: 169 | import pkg_resources 170 | pkg_resources.require("setuptools>=" + version) 171 | # a suitable version is already installed 172 | return 173 | except ImportError: 174 | # pkg_resources not available; setuptools is not installed; download 175 | pass 176 | except pkg_resources.DistributionNotFound: 177 | # no version of setuptools was found; allow download 178 | pass 179 | except pkg_resources.VersionConflict as VC_err: 180 | if imported: 181 | _conflict_bail(VC_err, version) 182 | 183 | # otherwise, unload pkg_resources to allow the downloaded version to 184 | # take precedence. 185 | del pkg_resources 186 | _unload_pkg_resources() 187 | 188 | return _do_download(version, download_base, to_dir, download_delay) 189 | 190 | 191 | def _conflict_bail(VC_err, version): 192 | """ 193 | Setuptools was imported prior to invocation, so it is 194 | unsafe to unload it. Bail out. 195 | """ 196 | conflict_tmpl = textwrap.dedent(""" 197 | The required version of setuptools (>={version}) is not available, 198 | and can't be installed while this script is running. Please 199 | install a more recent version first, using 200 | 'easy_install -U setuptools'. 201 | 202 | (Currently using {VC_err.args[0]!r}) 203 | """) 204 | msg = conflict_tmpl.format(**locals()) 205 | sys.stderr.write(msg) 206 | sys.exit(2) 207 | 208 | 209 | def _unload_pkg_resources(): 210 | sys.meta_path = [ 211 | importer 212 | for importer in sys.meta_path 213 | if importer.__class__.__module__ != 'pkg_resources.extern' 214 | ] 215 | del_modules = [ 216 | name for name in sys.modules 217 | if name.startswith('pkg_resources') 218 | ] 219 | for mod_name in del_modules: 220 | del sys.modules[mod_name] 221 | 222 | 223 | def _clean_check(cmd, target): 224 | """ 225 | Run the command to download target. 226 | 227 | If the command fails, clean up before re-raising the error. 228 | """ 229 | try: 230 | subprocess.check_call(cmd) 231 | except subprocess.CalledProcessError: 232 | if os.access(target, os.F_OK): 233 | os.unlink(target) 234 | raise 235 | 236 | 237 | def download_file_powershell(url, target): 238 | """ 239 | Download the file at url to target using Powershell. 240 | 241 | Powershell will validate trust. 242 | Raise an exception if the command cannot complete. 243 | """ 244 | target = os.path.abspath(target) 245 | ps_cmd = ( 246 | "[System.Net.WebRequest]::DefaultWebProxy.Credentials = " 247 | "[System.Net.CredentialCache]::DefaultCredentials; " 248 | '(new-object System.Net.WebClient).DownloadFile("%(url)s", "%(target)s")' 249 | % locals() 250 | ) 251 | cmd = [ 252 | 'powershell', 253 | '-Command', 254 | ps_cmd, 255 | ] 256 | _clean_check(cmd, target) 257 | 258 | 259 | def has_powershell(): 260 | """Determine if Powershell is available.""" 261 | if platform.system() != 'Windows': 262 | return False 263 | cmd = ['powershell', '-Command', 'echo test'] 264 | with open(os.path.devnull, 'wb') as devnull: 265 | try: 266 | subprocess.check_call(cmd, stdout=devnull, stderr=devnull) 267 | except Exception: 268 | return False 269 | return True 270 | download_file_powershell.viable = has_powershell 271 | 272 | 273 | def download_file_curl(url, target): 274 | cmd = ['curl', url, '--location', '--silent', '--output', target] 275 | _clean_check(cmd, target) 276 | 277 | 278 | def has_curl(): 279 | cmd = ['curl', '--version'] 280 | with open(os.path.devnull, 'wb') as devnull: 281 | try: 282 | subprocess.check_call(cmd, stdout=devnull, stderr=devnull) 283 | except Exception: 284 | return False 285 | return True 286 | download_file_curl.viable = has_curl 287 | 288 | 289 | def download_file_wget(url, target): 290 | cmd = ['wget', url, '--quiet', '--output-document', target] 291 | _clean_check(cmd, target) 292 | 293 | 294 | def has_wget(): 295 | cmd = ['wget', '--version'] 296 | with open(os.path.devnull, 'wb') as devnull: 297 | try: 298 | subprocess.check_call(cmd, stdout=devnull, stderr=devnull) 299 | except Exception: 300 | return False 301 | return True 302 | download_file_wget.viable = has_wget 303 | 304 | 305 | def download_file_insecure(url, target): 306 | """Use Python to download the file, without connection authentication.""" 307 | src = urlopen(url) 308 | try: 309 | # Read all the data in one block. 310 | data = src.read() 311 | finally: 312 | src.close() 313 | 314 | # Write all the data in one block to avoid creating a partial file. 315 | with open(target, "wb") as dst: 316 | dst.write(data) 317 | download_file_insecure.viable = lambda: True 318 | 319 | 320 | def get_best_downloader(): 321 | downloaders = ( 322 | download_file_powershell, 323 | download_file_curl, 324 | download_file_wget, 325 | download_file_insecure, 326 | ) 327 | viable_downloaders = (dl for dl in downloaders if dl.viable()) 328 | return next(viable_downloaders, None) 329 | 330 | 331 | def download_setuptools( 332 | version=DEFAULT_VERSION, download_base=DEFAULT_URL, 333 | to_dir=DEFAULT_SAVE_DIR, delay=15, 334 | downloader_factory=get_best_downloader): 335 | """ 336 | Download setuptools from a specified location and return its filename. 337 | 338 | `version` should be a valid setuptools version number that is available 339 | as an sdist for download under the `download_base` URL (which should end 340 | with a '/'). `to_dir` is the directory where the egg will be downloaded. 341 | `delay` is the number of seconds to pause before an actual download 342 | attempt. 343 | 344 | ``downloader_factory`` should be a function taking no arguments and 345 | returning a function for downloading a URL to a target. 346 | """ 347 | # making sure we use the absolute path 348 | to_dir = os.path.abspath(to_dir) 349 | zip_name = "setuptools-%s.zip" % version 350 | url = download_base + zip_name 351 | saveto = os.path.join(to_dir, zip_name) 352 | if not os.path.exists(saveto): # Avoid repeated downloads 353 | log.warn("Downloading %s", url) 354 | downloader = downloader_factory() 355 | downloader(url, saveto) 356 | return os.path.realpath(saveto) 357 | 358 | 359 | def _build_install_args(options): 360 | """ 361 | Build the arguments to 'python setup.py install' on the setuptools package. 362 | 363 | Returns list of command line arguments. 364 | """ 365 | return ['--user'] if options.user_install else [] 366 | 367 | 368 | def _parse_args(): 369 | """Parse the command line for options.""" 370 | parser = optparse.OptionParser() 371 | parser.add_option( 372 | '--user', dest='user_install', action='store_true', default=False, 373 | help='install in user site package') 374 | parser.add_option( 375 | '--download-base', dest='download_base', metavar="URL", 376 | default=DEFAULT_URL, 377 | help='alternative URL from where to download the setuptools package') 378 | parser.add_option( 379 | '--insecure', dest='downloader_factory', action='store_const', 380 | const=lambda: download_file_insecure, default=get_best_downloader, 381 | help='Use internal, non-validating downloader' 382 | ) 383 | parser.add_option( 384 | '--version', help="Specify which version to download", 385 | default=DEFAULT_VERSION, 386 | ) 387 | parser.add_option( 388 | '--to-dir', 389 | help="Directory to save (and re-use) package", 390 | default=DEFAULT_SAVE_DIR, 391 | ) 392 | options, args = parser.parse_args() 393 | # positional arguments are ignored 394 | return options 395 | 396 | 397 | def _download_args(options): 398 | """Return args for download_setuptools function from cmdline args.""" 399 | return dict( 400 | version=options.version, 401 | download_base=options.download_base, 402 | downloader_factory=options.downloader_factory, 403 | to_dir=options.to_dir, 404 | ) 405 | 406 | 407 | def main(): 408 | """Install or upgrade setuptools and EasyInstall.""" 409 | options = _parse_args() 410 | archive = download_setuptools(**_download_args(options)) 411 | return _install(archive, _build_install_args(options)) 412 | 413 | if __name__ == '__main__': 414 | sys.exit(main()) 415 | -------------------------------------------------------------------------------- /jd_spider_requests.py: -------------------------------------------------------------------------------- 1 | import random 2 | import time 3 | import requests 4 | import functools 5 | import json 6 | import os 7 | import pickle 8 | 9 | from lxml import etree 10 | from jd_logger import logger 11 | from timer import Timer 12 | from config import global_config 13 | from concurrent.futures import ProcessPoolExecutor 14 | from exception import SKException 15 | from util import ( 16 | parse_json, 17 | send_wechat, 18 | wait_some_time, 19 | response_status, 20 | save_image, 21 | open_image 22 | ) 23 | 24 | 25 | class SpiderSession: 26 | """ 27 | Session相关操作 28 | """ 29 | def __init__(self): 30 | self.cookies_dir_path = "./cookies/" 31 | self.user_agent = global_config.getRaw('config', 'DEFAULT_USER_AGENT') 32 | 33 | self.session = self._init_session() 34 | 35 | def _init_session(self): 36 | session = requests.session() 37 | session.headers = self.get_headers() 38 | return session 39 | 40 | def get_headers(self): 41 | return {"User-Agent": self.user_agent, 42 | "Accept": "text/html,application/xhtml+xml,application/xml;" 43 | "q=0.9,image/webp,image/apng,*/*;" 44 | "q=0.8,application/signed-exchange;" 45 | "v=b3", 46 | "Connection": "keep-alive"} 47 | 48 | def get_user_agent(self): 49 | return self.user_agent 50 | 51 | def get_session(self): 52 | """ 53 | 获取当前Session 54 | :return: 55 | """ 56 | return self.session 57 | 58 | def get_cookies(self): 59 | """ 60 | 获取当前Cookies 61 | :return: 62 | """ 63 | return self.get_session().cookies 64 | 65 | def set_cookies(self, cookies): 66 | self.session.cookies.update(cookies) 67 | 68 | def load_cookies_from_local(self): 69 | """ 70 | 从本地加载Cookie 71 | :return: 72 | """ 73 | cookies_file = '' 74 | if not os.path.exists(self.cookies_dir_path): 75 | return False 76 | for name in os.listdir(self.cookies_dir_path): 77 | if name.endswith(".cookies"): 78 | cookies_file = '{}{}'.format(self.cookies_dir_path, name) 79 | break 80 | if cookies_file == '': 81 | return False 82 | with open(cookies_file, 'rb') as f: 83 | local_cookies = pickle.load(f) 84 | self.set_cookies(local_cookies) 85 | 86 | def save_cookies_to_local(self, cookie_file_name): 87 | """ 88 | 保存Cookie到本地 89 | :param cookie_file_name: 存放Cookie的文件名称 90 | :return: 91 | """ 92 | cookies_file = '{}{}.cookies'.format(self.cookies_dir_path, cookie_file_name) 93 | directory = os.path.dirname(cookies_file) 94 | if not os.path.exists(directory): 95 | os.makedirs(directory) 96 | with open(cookies_file, 'wb') as f: 97 | pickle.dump(self.get_cookies(), f) 98 | 99 | 100 | class QrLogin: 101 | """ 102 | 扫码登录 103 | """ 104 | def __init__(self, spider_session: SpiderSession): 105 | """ 106 | 初始化扫码登录 107 | 大致流程: 108 | 1、访问登录二维码页面,获取Token 109 | 2、使用Token获取票据 110 | 3、校验票据 111 | :param spider_session: 112 | """ 113 | self.qrcode_img_file = 'qr_code.png' 114 | 115 | self.spider_session = spider_session 116 | self.session = self.spider_session.get_session() 117 | 118 | self.is_login = False 119 | self.refresh_login_status() 120 | 121 | def refresh_login_status(self): 122 | """ 123 | 刷新是否登录状态 124 | :return: 125 | """ 126 | self.is_login = self._validate_cookies() 127 | 128 | def _validate_cookies(self): 129 | """ 130 | 验证cookies是否有效(是否登陆) 131 | 通过访问用户订单列表页进行判断:若未登录,将会重定向到登陆页面。 132 | :return: cookies是否有效 True/False 133 | """ 134 | url = 'https://order.jd.com/center/list.action' 135 | payload = { 136 | 'rid': str(int(time.time() * 1000)), 137 | } 138 | try: 139 | resp = self.session.get(url=url, params=payload, allow_redirects=False) 140 | if resp.status_code == requests.codes.OK: 141 | return True 142 | except Exception as e: 143 | logger.error("验证cookies是否有效发生异常", e) 144 | return False 145 | 146 | def _get_login_page(self): 147 | """ 148 | 获取PC端登录页面 149 | :return: 150 | """ 151 | url = "https://passport.jd.com/new/login.aspx" 152 | page = self.session.get(url, headers=self.spider_session.get_headers()) 153 | return page 154 | 155 | def _get_qrcode(self): 156 | """ 157 | 缓存并展示登录二维码 158 | :return: 159 | """ 160 | url = 'https://qr.m.jd.com/show' 161 | payload = { 162 | 'appid': 133, 163 | 'size': 147, 164 | 't': str(int(time.time() * 1000)), 165 | } 166 | headers = { 167 | 'User-Agent': self.spider_session.get_user_agent(), 168 | 'Referer': 'https://passport.jd.com/new/login.aspx', 169 | } 170 | resp = self.session.get(url=url, headers=headers, params=payload) 171 | 172 | if not response_status(resp): 173 | logger.info('获取二维码失败') 174 | return False 175 | 176 | save_image(resp, self.qrcode_img_file) 177 | logger.info('二维码获取成功,请打开京东APP扫描') 178 | open_image(self.qrcode_img_file) 179 | return True 180 | 181 | def _get_qrcode_ticket(self): 182 | """ 183 | 通过 token 获取票据 184 | :return: 185 | """ 186 | url = 'https://qr.m.jd.com/check' 187 | payload = { 188 | 'appid': '133', 189 | 'callback': 'jQuery{}'.format(random.randint(1000000, 9999999)), 190 | 'token': self.session.cookies.get('wlfstk_smdl'), 191 | '_': str(int(time.time() * 1000)), 192 | } 193 | headers = { 194 | 'User-Agent': self.spider_session.get_user_agent(), 195 | 'Referer': 'https://passport.jd.com/new/login.aspx', 196 | } 197 | resp = self.session.get(url=url, headers=headers, params=payload) 198 | 199 | if not response_status(resp): 200 | logger.error('获取二维码扫描结果异常') 201 | return False 202 | 203 | resp_json = parse_json(resp.text) 204 | if resp_json['code'] != 200: 205 | logger.info('Code: %s, Message: %s', resp_json['code'], resp_json['msg']) 206 | return None 207 | else: 208 | logger.info('已完成手机客户端确认') 209 | return resp_json['ticket'] 210 | 211 | def _validate_qrcode_ticket(self, ticket): 212 | """ 213 | 通过已获取的票据进行校验 214 | :param ticket: 已获取的票据 215 | :return: 216 | """ 217 | url = 'https://passport.jd.com/uc/qrCodeTicketValidation' 218 | headers = { 219 | 'User-Agent': self.spider_session.get_user_agent(), 220 | 'Referer': 'https://passport.jd.com/uc/login?ltype=logout', 221 | } 222 | 223 | resp = self.session.get(url=url, headers=headers, params={'t': ticket}) 224 | if not response_status(resp): 225 | return False 226 | 227 | resp_json = json.loads(resp.text) 228 | if resp_json['returnCode'] == 0: 229 | return True 230 | else: 231 | logger.info(resp_json) 232 | return False 233 | 234 | def login_by_qrcode(self): 235 | """ 236 | 二维码登陆 237 | :return: 238 | """ 239 | self._get_login_page() 240 | 241 | # download QR code 242 | if not self._get_qrcode(): 243 | raise SKException('二维码下载失败') 244 | 245 | # get QR code ticket 246 | ticket = None 247 | retry_times = 85 248 | for _ in range(retry_times): 249 | ticket = self._get_qrcode_ticket() 250 | if ticket: 251 | break 252 | time.sleep(2) 253 | else: 254 | raise SKException('二维码过期,请重新获取扫描') 255 | 256 | # validate QR code ticket 257 | if not self._validate_qrcode_ticket(ticket): 258 | raise SKException('二维码信息校验失败') 259 | 260 | self.refresh_login_status() 261 | 262 | logger.info('二维码登录成功') 263 | 264 | 265 | class JdSeckill(object): 266 | def __init__(self): 267 | self.spider_session = SpiderSession() 268 | self.spider_session.load_cookies_from_local() 269 | 270 | self.qrlogin = QrLogin(self.spider_session) 271 | 272 | # 初始化信息 273 | self.sku_id = global_config.getRaw('config', 'sku_id') 274 | self.seckill_num = 2 275 | self.seckill_init_info = dict() 276 | self.seckill_url = dict() 277 | self.seckill_order_data = dict() 278 | self.timers = Timer() 279 | 280 | self.session = self.spider_session.get_session() 281 | self.user_agent = self.spider_session.user_agent 282 | self.nick_name = None 283 | 284 | def login_by_qrcode(self): 285 | """ 286 | 二维码登陆 287 | :return: 288 | """ 289 | if self.qrlogin.is_login: 290 | logger.info('登录成功') 291 | return 292 | 293 | self.qrlogin.login_by_qrcode() 294 | 295 | if self.qrlogin.is_login: 296 | self.nick_name = self.get_username() 297 | self.spider_session.save_cookies_to_local(self.nick_name) 298 | else: 299 | raise SKException("二维码登录失败!") 300 | 301 | def check_login(func): 302 | """ 303 | 用户登陆态校验装饰器。若用户未登陆,则调用扫码登陆 304 | """ 305 | @functools.wraps(func) 306 | def new_func(self, *args, **kwargs): 307 | if not self.qrlogin.is_login: 308 | logger.info("{0} 需登陆后调用,开始扫码登陆".format(func.__name__)) 309 | self.login_by_qrcode() 310 | return func(self, *args, **kwargs) 311 | return new_func 312 | 313 | @check_login 314 | def reserve(self): 315 | """ 316 | 预约 317 | """ 318 | self._reserve() 319 | 320 | @check_login 321 | def seckill(self): 322 | """ 323 | 抢购 324 | """ 325 | self._seckill() 326 | 327 | @check_login 328 | def seckill_by_proc_pool(self, work_count=5): 329 | """ 330 | 多进程进行抢购 331 | work_count:进程数量 332 | """ 333 | with ProcessPoolExecutor(work_count) as pool: 334 | for i in range(work_count): 335 | pool.submit(self.seckill) 336 | 337 | def _reserve(self): 338 | """ 339 | 预约 340 | """ 341 | while True: 342 | try: 343 | self.make_reserve() 344 | break 345 | except Exception as e: 346 | logger.info('预约发生异常!', e) 347 | wait_some_time() 348 | 349 | def _seckill(self): 350 | """ 351 | 抢购 352 | """ 353 | while True: 354 | try: 355 | self.request_seckill_url() 356 | while True: 357 | self.request_seckill_checkout_page() 358 | self.submit_seckill_order() 359 | except Exception as e: 360 | logger.info('抢购发生异常,稍后继续执行!', e) 361 | wait_some_time() 362 | 363 | def make_reserve(self): 364 | """商品预约""" 365 | logger.info('商品名称:{}'.format(self.get_sku_title())) 366 | url = 'https://yushou.jd.com/youshouinfo.action?' 367 | payload = { 368 | 'callback': 'fetchJSON', 369 | 'sku': self.sku_id, 370 | '_': str(int(time.time() * 1000)), 371 | } 372 | headers = { 373 | 'User-Agent': self.user_agent, 374 | 'Referer': 'https://item.jd.com/{}.html'.format(self.sku_id), 375 | } 376 | resp = self.session.get(url=url, params=payload, headers=headers) 377 | resp_json = parse_json(resp.text) 378 | reserve_url = resp_json.get('url') 379 | self.timers.start() 380 | while True: 381 | try: 382 | self.session.get(url='https:' + reserve_url) 383 | logger.info('预约成功,已获得抢购资格 / 您已成功预约过了,无需重复预约') 384 | if global_config.getRaw('messenger', 'enable') == 'true': 385 | success_message = "预约成功,已获得抢购资格 / 您已成功预约过了,无需重复预约" 386 | send_wechat(success_message) 387 | break 388 | except Exception as e: 389 | logger.error('预约失败正在重试...') 390 | 391 | def get_username(self): 392 | """获取用户信息""" 393 | url = 'https://passport.jd.com/user/petName/getUserInfoForMiniJd.action' 394 | payload = { 395 | 'callback': 'jQuery{}'.format(random.randint(1000000, 9999999)), 396 | '_': str(int(time.time() * 1000)), 397 | } 398 | headers = { 399 | 'User-Agent': self.user_agent, 400 | 'Referer': 'https://order.jd.com/center/list.action', 401 | } 402 | 403 | resp = self.session.get(url=url, params=payload, headers=headers) 404 | 405 | try_count = 5 406 | while not resp.text.startswith("jQuery"): 407 | try_count = try_count - 1 408 | if try_count > 0: 409 | resp = self.session.get(url=url, params=payload, headers=headers) 410 | else: 411 | break 412 | wait_some_time() 413 | # 响应中包含了许多用户信息,现在在其中返回昵称 414 | # jQuery2381773({"imgUrl":"//storage.360buyimg.com/i.imageUpload/xxx.jpg","lastLoginTime":"","nickName":"xxx","plusStatus":"0","realName":"xxx","userLevel":x,"userScoreVO":{"accountScore":xx,"activityScore":xx,"consumptionScore":xxxxx,"default":false,"financeScore":xxx,"pin":"xxx","riskScore":x,"totalScore":xxxxx}}) 415 | return parse_json(resp.text).get('nickName') 416 | 417 | def get_sku_title(self): 418 | """获取商品名称""" 419 | url = 'https://item.jd.com/{}.html'.format(global_config.getRaw('config', 'sku_id')) 420 | resp = self.session.get(url).content 421 | x_data = etree.HTML(resp) 422 | sku_title = x_data.xpath('/html/head/title/text()') 423 | return sku_title[0] 424 | 425 | def get_seckill_url(self): 426 | """获取商品的抢购链接 427 | 点击"抢购"按钮后,会有两次302跳转,最后到达订单结算页面 428 | 这里返回第一次跳转后的页面url,作为商品的抢购链接 429 | :return: 商品的抢购链接 430 | """ 431 | url = 'https://itemko.jd.com/itemShowBtn' 432 | payload = { 433 | 'callback': 'jQuery{}'.format(random.randint(1000000, 9999999)), 434 | 'skuId': self.sku_id, 435 | 'from': 'pc', 436 | '_': str(int(time.time() * 1000)), 437 | } 438 | headers = { 439 | 'User-Agent': self.user_agent, 440 | 'Host': 'itemko.jd.com', 441 | 'Referer': 'https://item.jd.com/{}.html'.format(self.sku_id), 442 | } 443 | while True: 444 | resp = self.session.get(url=url, headers=headers, params=payload) 445 | resp_json = parse_json(resp.text) 446 | if resp_json.get('url'): 447 | # https://divide.jd.com/user_routing?skuId=8654289&sn=c3f4ececd8461f0e4d7267e96a91e0e0&from=pc 448 | router_url = 'https:' + resp_json.get('url') 449 | # https://marathon.jd.com/captcha.html?skuId=8654289&sn=c3f4ececd8461f0e4d7267e96a91e0e0&from=pc 450 | seckill_url = router_url.replace( 451 | 'divide', 'marathon').replace( 452 | 'user_routing', 'captcha.html') 453 | logger.info("抢购链接获取成功: %s", seckill_url) 454 | return seckill_url 455 | else: 456 | logger.info("抢购链接获取失败,稍后自动重试") 457 | wait_some_time() 458 | 459 | def request_seckill_url(self): 460 | """访问商品的抢购链接(用于设置cookie等""" 461 | logger.info('用户:{}'.format(self.get_username())) 462 | logger.info('商品名称:{}'.format(self.get_sku_title())) 463 | self.timers.start() 464 | self.seckill_url[self.sku_id] = self.get_seckill_url() 465 | logger.info('访问商品的抢购连接...') 466 | headers = { 467 | 'User-Agent': self.user_agent, 468 | 'Host': 'marathon.jd.com', 469 | 'Referer': 'https://item.jd.com/{}.html'.format(self.sku_id), 470 | } 471 | self.session.get( 472 | url=self.seckill_url.get( 473 | self.sku_id), 474 | headers=headers, 475 | allow_redirects=False) 476 | 477 | def request_seckill_checkout_page(self): 478 | """访问抢购订单结算页面""" 479 | logger.info('访问抢购订单结算页面...') 480 | url = 'https://marathon.jd.com/seckill/seckill.action' 481 | payload = { 482 | 'skuId': self.sku_id, 483 | 'num': self.seckill_num, 484 | 'rid': int(time.time()) 485 | } 486 | headers = { 487 | 'User-Agent': self.user_agent, 488 | 'Host': 'marathon.jd.com', 489 | 'Referer': 'https://item.jd.com/{}.html'.format(self.sku_id), 490 | } 491 | self.session.get(url=url, params=payload, headers=headers, allow_redirects=False) 492 | 493 | def _get_seckill_init_info(self): 494 | """获取秒杀初始化信息(包括:地址,发票,token) 495 | :return: 初始化信息组成的dict 496 | """ 497 | logger.info('获取秒杀初始化信息...') 498 | url = 'https://marathon.jd.com/seckillnew/orderService/pc/init.action' 499 | data = { 500 | 'sku': self.sku_id, 501 | 'num': self.seckill_num, 502 | 'isModifyAddress': 'false', 503 | } 504 | headers = { 505 | 'User-Agent': self.user_agent, 506 | 'Host': 'marathon.jd.com', 507 | } 508 | resp = self.session.post(url=url, data=data, headers=headers) 509 | 510 | resp_json = None 511 | try: 512 | resp_json = parse_json(resp.text) 513 | except Exception: 514 | raise SKException('抢购失败,返回信息:{}'.format(resp.text[0: 128])) 515 | 516 | return resp_json 517 | 518 | def _get_seckill_order_data(self): 519 | """生成提交抢购订单所需的请求体参数 520 | :return: 请求体参数组成的dict 521 | """ 522 | logger.info('生成提交抢购订单所需参数...') 523 | # 获取用户秒杀初始化信息 524 | self.seckill_init_info[self.sku_id] = self._get_seckill_init_info() 525 | init_info = self.seckill_init_info.get(self.sku_id) 526 | default_address = init_info['addressList'][0] # 默认地址dict 527 | invoice_info = init_info.get('invoiceInfo', {}) # 默认发票信息dict, 有可能不返回 528 | token = init_info['token'] 529 | data = { 530 | 'skuId': self.sku_id, 531 | 'num': self.seckill_num, 532 | 'addressId': default_address['id'], 533 | 'yuShou': 'true', 534 | 'isModifyAddress': 'false', 535 | 'name': default_address['name'], 536 | 'provinceId': default_address['provinceId'], 537 | 'cityId': default_address['cityId'], 538 | 'countyId': default_address['countyId'], 539 | 'townId': default_address['townId'], 540 | 'addressDetail': default_address['addressDetail'], 541 | 'mobile': default_address['mobile'], 542 | 'mobileKey': default_address['mobileKey'], 543 | 'email': default_address.get('email', ''), 544 | 'postCode': '', 545 | 'invoiceTitle': invoice_info.get('invoiceTitle', -1), 546 | 'invoiceCompanyName': '', 547 | 'invoiceContent': invoice_info.get('invoiceContentType', 1), 548 | 'invoiceTaxpayerNO': '', 549 | 'invoiceEmail': '', 550 | 'invoicePhone': invoice_info.get('invoicePhone', ''), 551 | 'invoicePhoneKey': invoice_info.get('invoicePhoneKey', ''), 552 | 'invoice': 'true' if invoice_info else 'false', 553 | 'password': global_config.get('account', 'payment_pwd'), 554 | 'codTimeType': 3, 555 | 'paymentType': 4, 556 | 'areaCode': '', 557 | 'overseas': 0, 558 | 'phone': '', 559 | 'eid': global_config.getRaw('config', 'eid'), 560 | 'fp': global_config.getRaw('config', 'fp'), 561 | 'token': token, 562 | 'pru': '' 563 | } 564 | 565 | return data 566 | 567 | def submit_seckill_order(self): 568 | """提交抢购(秒杀)订单 569 | :return: 抢购结果 True/False 570 | """ 571 | url = 'https://marathon.jd.com/seckillnew/orderService/pc/submitOrder.action' 572 | payload = { 573 | 'skuId': self.sku_id, 574 | } 575 | try: 576 | self.seckill_order_data[self.sku_id] = self._get_seckill_order_data() 577 | except Exception as e: 578 | logger.info('抢购失败,无法获取生成订单的基本信息,接口返回:【{}】'.format(str(e))) 579 | return False 580 | 581 | logger.info('提交抢购订单...') 582 | headers = { 583 | 'User-Agent': self.user_agent, 584 | 'Host': 'marathon.jd.com', 585 | 'Referer': 'https://marathon.jd.com/seckill/seckill.action?skuId={0}&num={1}&rid={2}'.format( 586 | self.sku_id, self.seckill_num, int(time.time())), 587 | } 588 | resp = self.session.post( 589 | url=url, 590 | params=payload, 591 | data=self.seckill_order_data.get( 592 | self.sku_id), 593 | headers=headers) 594 | resp_json = None 595 | try: 596 | resp_json = parse_json(resp.text) 597 | except Exception as e: 598 | logger.info('抢购失败,返回信息:{}'.format(resp.text[0: 128])) 599 | return False 600 | # 返回信息 601 | # 抢购失败: 602 | # {'errorMessage': '很遗憾没有抢到,再接再厉哦。', 'orderId': 0, 'resultCode': 60074, 'skuId': 0, 'success': False} 603 | # {'errorMessage': '抱歉,您提交过快,请稍后再提交订单!', 'orderId': 0, 'resultCode': 60017, 'skuId': 0, 'success': False} 604 | # {'errorMessage': '系统正在开小差,请重试~~', 'orderId': 0, 'resultCode': 90013, 'skuId': 0, 'success': False} 605 | # 抢购成功: 606 | # {"appUrl":"xxxxx","orderId":820227xxxxx,"pcUrl":"xxxxx","resultCode":0,"skuId":0,"success":true,"totalMoney":"xxxxx"} 607 | if resp_json.get('success'): 608 | order_id = resp_json.get('orderId') 609 | total_money = resp_json.get('totalMoney') 610 | pay_url = 'https:' + resp_json.get('pcUrl') 611 | logger.info('抢购成功,订单号:{}, 总价:{}, 电脑端付款链接:{}'.format(order_id, total_money, pay_url)) 612 | if global_config.getRaw('messenger', 'enable') == 'true': 613 | success_message = "抢购成功,订单号:{}, 总价:{}, 电脑端付款链接:{}".format(order_id, total_money, pay_url) 614 | send_wechat(success_message) 615 | return True 616 | else: 617 | logger.info('抢购失败,返回信息:{}'.format(resp_json)) 618 | if global_config.getRaw('messenger', 'enable') == 'true': 619 | error_message = '抢购失败,返回信息:{}'.format(resp_json) 620 | send_wechat(error_message) 621 | return False 622 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------