鱼C论坛

 找回密码
 立即注册
查看: 3676|回复: 6

[已解决]Python 爬虫 正则

[复制链接]
发表于 2017-6-9 01:13:47 | 显示全部楼层 |阅读模式
5鱼币
  1. import re
  2. import csv
  3. import time
  4. import random
  5. import  threading
  6. import requests
  7. import urllib.request
  8. from bs4 import BeautifulSoup
  9. from urllib.error import URLError
  10. from multiprocessing import Queue


  11. User_Agent=["Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36",
  12.             "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50",
  13.             "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50",
  14.             "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0.1) Gecko/20100101 Firefox/4.0.1",
  15.             "Mozilla/5.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1",
  16.             'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0']
  17. HEADERS = {
  18.     'User-Agent':  User_Agent[random.randint(0,6)],
  19.     # 'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:55.0) Gecko/201002201 Firefox/55.0',
  20.     'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
  21.     'Accept-Language': 'zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3',
  22.     'Accept-Encoding': 'gzip, deflate, br',
  23.     'Cookie': '',
  24.     'Connection': 'keep-alive',
  25.     'Pragma': 'no-cache',
  26.     'Cache-Control': 'no-cache'
  27. }
  28. proxies = {
  29.   "http": "http://",
  30.   "https": "https://1.196.123.98:808",
  31. }

  32. def Ip(i, x): # 爬取ip
  33.     try:
  34.         r = requests.get('http://www.kuaidaili.com/free/inha/' + str(i) + '/', timeout=30)
  35.         r.raise_for_status()
  36.         r.encoding = r.apparent_encoding
  37.         html = r.text
  38.     except URLError as e:
  39.         if hasattr(e, 'reason'):
  40.             print('没有找到服务器')
  41.             print('Reason:', 'e.reason')
  42.         elif hasattr(e, 'code'):
  43.             print('服务器无法完成请求')
  44.             print('Error code', e.code)
  45.     ip = r'<td data-title="IP">(.*?)</td>'
  46.     port = r'<td data-title="PORT">(.*?)</td>'
  47.     ip_list = re.findall(ip, html)
  48.     port_list = re.findall(port, html)
  49.     print(len(ip_list), len(port_list))
  50.     for i in range(len(ip_list)):
  51.         x.append(ip_list[i] + ':' + port_list[i])
  52.     return x

  53. def Page(): # 确定爬取ip的页面数
  54.     list_ip = []
  55.     for i in range(1,2):
  56.         list_ip = Ip(i,list_ip)
  57.         time.sleep(3)
  58.     return list_ip



  59. def Scenic(ip_list):
  60.     url = 'http://piao.qunar.com/ticket/detail_648971909.html?st=' \
  61.           'a3clM0QlRTYlQjklOTglRTYlQkQlQUQlMjZpZCUzRDM3NDIlMjZ0eXBlJTNEMCUyNmlke' \
  62.           'CUzRDMlMjZxdCUzRHJlZ2lvbiUyNmFwayUzRDIlMjZzYyUzRFdXVyUyNmFidHJhY2UlM0R' \
  63.           'id2QlNDAlRTUlQTQlOTYlRTUlOUMlQjAlMjZ1ciUzRCVFNiVCOSU5NiVFNSU4RCU5NyUyNmxy' \
  64.           'JTNEJUU2JUI5JTk4JUU2JUJEJUFEJTI2ZnQlM0QlN0IlN0Q%3D#from=mps_search_suggest_h'
  65.     proxies['http'] = 'http://' +str(list_ip[random.randint(0, 15)])
  66.     response= requests.get(url,headers=HEADERS,allow_redirects=False,timeout=5).content.decode('utf-8')
  67.     print(response)
  68.     with open('ceshi2.txt', 'w') as f:
  69.         f.write(response)


  70. if __name__ == '__main__':
  71.     list_ip = Page()
  72.     Scenic(list_ip)
复制代码

想写个爬数据的代码,这是写得一部分测试代码   但抓取的页面代码不全 后面评论区的基本没有,
前面也有一些空白的行 如:
                     <div class="mp-charact-desc">

                         <p>

                           

                                9:00~17:00开放;

                                

                           

                         </p>
我想问下:
1、怎么才能抓取完整的页面代码?
2、若抓取的是这样的页面,若我想匹配如上所说的信息“9:00~17:00开放;”,该如何写正则表达式或用其他方法怎么实现?
急求,有高手能帮忙解决吗?
最佳答案
2017-6-9 01:13:48
本帖最后由 gopythoner 于 2017-6-9 18:09 编辑
太阳花田 发表于 2017-6-9 17:54
方法一:继续使用正则,先把网页中的空格和换行符都替换掉,replace()函数知道吧,这个应该怎么写
另 ...


你的意思是你在网页中能够看到的信息,但是用爬虫爬下来的源代码是没有的对吧?
我看了一下,这个网站的价格等信息都是通过异步加载出来的 ,如果你会看F12的抓包信息的话,看看HXR这个里面的就知道了,是存在一个json格式里面的


请求这个http://piao.qunar.com/ticket/detail/getTickets.json链接(你直接请求是没用的,要提交表单),然后使用POST发送信息
表单信息是
  1. sightId:3742
  2. from:detail
  3. supplierId:
复制代码

最佳答案

查看完整内容

你的意思是你在网页中能够看到的信息,但是用爬虫爬下来的源代码是没有的对吧? 我看了一下,这个网站的价格等信息都是通过异步加载出来的 ,如果你会看F12的抓包信息的话,看看HXR这个里面的就知道了,是存在一个json格式里面的 请求这个http://piao.qunar.com/ticket/detail/getTickets.json链接(你直接请求是没用的,要提交表单),然后使用POST发送信息 表单信息是
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-6-9 01:13:48 | 显示全部楼层    本楼为最佳答案   
本帖最后由 gopythoner 于 2017-6-9 18:09 编辑
太阳花田 发表于 2017-6-9 17:54
方法一:继续使用正则,先把网页中的空格和换行符都替换掉,replace()函数知道吧,这个应该怎么写
另 ...


你的意思是你在网页中能够看到的信息,但是用爬虫爬下来的源代码是没有的对吧?
我看了一下,这个网站的价格等信息都是通过异步加载出来的 ,如果你会看F12的抓包信息的话,看看HXR这个里面的就知道了,是存在一个json格式里面的


请求这个http://piao.qunar.com/ticket/detail/getTickets.json链接(你直接请求是没用的,要提交表单),然后使用POST发送信息
表单信息是
  1. sightId:3742
  2. from:detail
  3. supplierId:
复制代码

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-6-9 09:33:35 | 显示全部楼层
方法一:继续使用正则,先把网页中的空格和换行符都替换掉,replace()函数知道吧,
替换掉之后你得到的网页就是如下这样
  1. <div class="mp-charact-desc"><p>9:00~17:00开放;</p>
复制代码

到了这个地步然后再用正则匹配,搞定
方法二:使用BeautifulSoup4直接提取标签,这种做法就不用考虑空格的问题,因为会把<p>标签的信息都提取到,提取之后再用strip()函数去掉空格就行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2017-6-9 17:54:36 | 显示全部楼层
本帖最后由 太阳花田 于 2017-6-9 17:55 编辑
gopythoner 发表于 2017-6-9 09:33
方法一:继续使用正则,先把网页中的空格和换行符都替换掉,replace()函数知道吧,
替换掉之后你得到的网 ...


方法一:继续使用正则,先把网页中的空格和换行符都替换掉,replace()函数知道吧,这个应该怎么写
另怎样才能抓取完整的页面  不说后面评论区的完全没有  我抓取下来有的为什么好多缺失  价格都没法看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2017-6-9 20:21:44 | 显示全部楼层
gopythoner 发表于 2017-6-9 18:06
你的意思是你在网页中能够看到的信息,但是用爬虫爬下来的源代码是没有的对吧?
我看了一下,这个网站 ...

按F12我去网络部分看了HXR,点击F5刷新确实有些信息在主页上没加载,但我在的GET里面好像也没有看到那些信息    旁边是消息头,响应,cookie,参数,耗时五个部分
另外我是不是先用requests.post提交表单之后再用get就能获得全部信息吗?另外表单上的三个参数代表什么意思,为什么最后一个supplierID后面是空的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-6-9 21:20:02 | 显示全部楼层
哎,直接写给你算了
  1. import requests
  2. import json
  3. url = "http://piao.qunar.com/ticket/detail/getTickets.json"
  4. data = {"sightId":3742,"from":"detail","supplierId":""}
  5. html = requests.post(url,data=data).text
  6. infos = json.loads(html)
  7. print(infos)
复制代码


输出
  1. {'data': {'suppliers': {'9143': {'supplierId': '9143', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 5.0, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '50%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '中旅总社自由行', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '中旅总社自由行', 'supplierBusinessHour': '00:00-23:59', 'supplierTelephone': '010-89677900转25439'}, '794': {'supplierId': '794', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.99, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.8%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '薇票网', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '薇票网', 'supplierBusinessHour': '08:00-18:00', 'supplierTelephone': '010-89930496'}, '7151': {'supplierId': '7151', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.96, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.2%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '私人定制', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '私人定制', 'supplierBusinessHour': '08:00-23:59', 'supplierTelephone': '010-89677900转11449'}, '10303': {'supplierId': '10303', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.97, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.4%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '中原通票务', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '中原通票务', 'supplierBusinessHour': '08:00-23:00', 'supplierTelephone': '010-89677900转26049'}, '10657': {'supplierId': '10657', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.86, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '47.2%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '锦鲤票务', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '锦鲤票务', 'supplierBusinessHour': '08:00-23:00', 'supplierTelephone': '010-89677900转26292'}, '296': {'supplierId': '296', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 5.0, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '50%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '三亚民间', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '三亚民间', 'supplierBusinessHour': '00:00-23:59', 'supplierTelephone': '010-89677724'}, '10006': {'supplierId': '10006', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.96, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.2%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '景秀旅游', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '景秀旅游', 'supplierBusinessHour': '08:00-23:45', 'supplierTelephone': '010-89677900转25958'}, '9764': {'supplierId': '9764', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.96, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.2%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '票票券', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '票票券', 'supplierBusinessHour': '08:00-23:00', 'supplierTelephone': '010-89677900转13514'}, '15334': {'supplierId': '15334', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 5.0, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '50%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '同程旅游', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '同程旅游', 'supplierBusinessHour': '08:00-23:30', 'supplierTelephone': '010-89677900转16141'}, '10765': {'supplierId': '10765', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.98, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.6%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '龙腾旅行', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '龙腾旅行', 'supplierBusinessHour': '07:00-22:00', 'supplierTelephone': '010-89677900转26191'}, '1987': {'supplierId': '1987', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.93, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '48.6%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '和乐假期', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '和乐假期', 'supplierBusinessHour': '08:00-20:00', 'supplierTelephone': '010-89930676'}, '13085': {'supplierId': '13085', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.94, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '48.8%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '飞马旅', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '飞马旅', 'supplierBusinessHour': '08:00-18:00', 'supplierTelephone': '010-89677900转13303'}, '14638': {'supplierId': '14638', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.99, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.8%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '掌上旅游', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '掌上旅游', 'supplierBusinessHour': '00:00-23:59', 'supplierTelephone': '01089677900转12842'}, '9533': {'supplierId': '9533', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.97, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.4%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '惠游天下旅游公司', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '惠游天下旅游公司', 'supplierBusinessHour': '00:00-23:59', 'supplierTelephone': '010-89677900转25605'}, '262': {'supplierId': '262', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.97, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.4%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '行游天下', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '行游天下', 'supplierBusinessHour': '08:00-23:59', 'supplierTelephone': '010-89677718'}, '11736': {'supplierId': '11736', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.82, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '46.4%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '欧亚旅行社', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '欧亚旅行社', 'supplierBusinessHour': '08:00-23:59', 'supplierTelephone': '010-89677900转26429'}, '7072': {'supplierId': '7072', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 4.99, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '49.8%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '酷游天下', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '酷游天下', 'supplierBusinessHour': '00:00-23:59', 'supplierTelephone': '010-81041244'}, '10352': {'supplierId': '10352', 'score': {'serviceScoreMax': 5, 'sendServiceCodeReference': '很快', 'serviceScoreRateDesc': '比行业水平高', 'serviceScore': 5.0, 'sendServiceCodeReferenceDesc': '优于同行业', 'complainReferenceDesc': '优于同行业', 'refundDealReferenceDesc': '优于同行业', 'serviceScoreRate': '50%', 'refundDealReference': '较好', 'complainReference': '较少'}, 'supplierNameDisplay': '奇点旅行', 'isQunarStraightSale': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'supplierName': '奇点旅行', 'supplierBusinessHour': '08:00-18:00', 'supplierTelephone': '010-89677900转26218'}}, 'discount': 8.5, 'marketPrice': 60, 'markets': [], 'priceType': 'default', 'qunarPrice': 51.2, 'groups': [[{'hasPromotion': False, 'totalCount': 15, 'typeId': 53307, 'marketPrice': 60, 'exInfo': '', 'ticketZoneName': '门票', 'qunarPrice': 51.2, 'typeName': '毛泽东同志纪念馆成人票', 'tickets': [{'supplierId': '10765', 'bookDescription': '需要在游玩前1天的23:59前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '龙腾旅行', 'supplierScore': 4.98, 'supplierName': '龙腾旅行', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=2389408608&supplierId=10765&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '23:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': True, 'cutPrice': 9, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '2389408608', 'isStraightSight': False, 'refundDescription': '使用日期截止前当天23:00可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 51.2, 'priceId': 481104, 'title': '毛泽东纪念园成人票'}, {'supplierId': '7072', 'bookDescription': '需要在游玩前1天的23:59前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '酷游天下', 'supplierScore': 4.99, 'supplierName': '酷游天下', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=942207219&supplierId=7072&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '随心退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 9, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '942207219', 'isStraightSight': False, 'refundDescription': '90天内支持随时退款,经核实如未取票,可免费取消', 'supplierType': 3, 'qunarPrice': 51.4, 'priceId': 279100555, 'title': '毛泽东纪念园成人票'}, {'supplierId': '10006', 'bookDescription': '需要在游玩前1天的23:59前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '景秀旅游', 'supplierScore': 4.96, 'supplierName': '景秀旅游', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=922112726&supplierId=10006&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '随心退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 9, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '922112726', 'isStraightSight': False, 'refundDescription': '90天内支持随时退款,经核实如未取票,可免费取消', 'supplierType': 3, 'qunarPrice': 51.5, 'priceId': 273943254, 'title': '毛泽东纪念园成人票'}, {'supplierId': '262', 'bookDescription': '需要在游玩前1天的23:15前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '行游天下', 'supplierScore': 4.97, 'supplierName': '行游天下', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=720092700&supplierId=262&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '18:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': True, 'cutPrice': 9, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 0, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '720092700', 'isStraightSight': False, 'refundDescription': '使用日期开始前1天18:00可申请退款<br/>不支持部分退款<br/>', 'supplierType': 3, 'qunarPrice': 51.2, 'priceId': 269654254, 'title': '毛泽东纪念园成人票'}, {'supplierId': '7151', 'bookDescription': '需要在游玩前1天的23:15前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '私人定制', 'supplierScore': 4.96, 'supplierName': '私人定制', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3084833010&supplierId=7151&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '18:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': True, 'cutPrice': 9, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 0, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3084833010', 'isStraightSight': False, 'refundDescription': '使用日期开始前1天18:00可申请退款<br/>不支持部分退款<br/>', 'supplierType': 3, 'qunarPrice': 51.2, 'priceId': 269954981, 'title': '毛泽东纪念园成人票'}, {'supplierId': '13085', 'bookDescription': '需要在游玩前1天的00:00前预订', 'bookAtAnyTimeStr': '可订6月11日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '飞马旅', 'supplierScore': 4.94, 'supplierName': '飞马旅', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3250936804&supplierId=13085&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 9, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3250936804', 'isStraightSight': False, 'refundDescription': '不支持部分退款<br/>', 'supplierType': 3, 'qunarPrice': 51.5, 'priceId': 508070, 'title': '免预约,自动出票!毛泽东纪念园成人票'}, {'supplierId': '10657', 'bookDescription': '需要在游玩前1天的23:55前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '锦鲤票务', 'supplierScore': 4.86, 'supplierName': '锦鲤票务', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=2924469602&supplierId=10657&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '随心退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 1, 'isLowestPrice': False, 'cutPrice': 7, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '2924469602', 'isStraightSight': False, 'refundDescription': '90天内支持随时退款,经核实如未取票,可免费取消', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 317788, 'title': '【电子票】免预约!湖南毛泽东纪念园成人票'}, {'supplierId': '14638', 'bookDescription': '需要在游玩当天的00:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '掌上旅游', 'supplierScore': 4.99, 'supplierName': '掌上旅游', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3354414553&supplierId=14638&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '随心退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3354414553', 'isStraightSight': False, 'refundDescription': '90天内支持随时退款,经核实如未取票,可免费取消', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 244678314, 'title': '【出票快、随心退】毛泽东纪念园成人票K'}, {'supplierId': '9533', 'bookDescription': '需要在游玩当天的00:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '惠游天下旅游公司', 'supplierScore': 4.97, 'supplierName': '惠游天下旅游公司', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=4209809853&supplierId=9533&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '随心退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '4209809853', 'isStraightSight': False, 'refundDescription': '90天内支持随时退款,经核实如未取票,可免费取消', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 249543934, 'title': '【出票快、随心退】毛泽东纪念园成人票K'}, {'supplierId': '10303', 'bookDescription': '需要在游玩当天的00:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中原通票务', 'supplierScore': 4.97, 'supplierName': '中原通票务', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3099726173&supplierId=10303&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '随心退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3099726173', 'isStraightSight': False, 'refundDescription': '90天内支持随时退款,经核实如未取票,可免费取消', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 345596, 'title': '电子票,免预约,毛泽东纪念园成人票'}, {'supplierId': '296', 'bookDescription': '需要在游玩前1天的00:00前预订', 'bookAtAnyTimeStr': '可订6月11日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '三亚民间', 'supplierScore': 5.0, 'supplierName': '三亚民间', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3719368127&supplierId=296&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '随心退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3719368127', 'isStraightSight': False, 'refundDescription': '90天内支持随时退款,经核实如未取票,可免费取消', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 270128610, 'title': '【提前一天购买】毛泽东纪念园成人票'}, {'supplierId': '15334', 'bookDescription': '需要在游玩前1天的23:59前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '同程旅游', 'supplierScore': 5.0, 'supplierName': '同程旅游', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3280960929&supplierId=15334&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '23:59:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3280960929', 'isStraightSight': False, 'refundDescription': '使用日期截止前当天23:59可申请退款<br/>不支持部分退款<br/>', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 275583953, 'title': '毛泽东纪念园成人票'}, {'supplierId': '9764', 'bookDescription': '需要在游玩前1天的22:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '票票券', 'supplierScore': 4.96, 'supplierName': '票票券', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=1462525905&supplierId=9764&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '23:59:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 30, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '1462525905', 'isStraightSight': False, 'refundDescription': '使用日期截止后30天23:59可申请退款<br/>不支持部分退款<br/>', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 278885201, 'title': '韶山毛泽东纪念园成人票'}, {'supplierId': '10352', 'bookDescription': '需要在游玩当天的15:00前预订;预订后2小时才能入园', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '奇点旅行', 'supplierScore': 5.0, 'supplierName': '奇点旅行', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=2823454533&supplierId=10352&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '23:59:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '2823454533', 'isStraightSight': False, 'refundDescription': '使用日期截止前当天23:59可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 267653118, 'title': '韶山毛泽东纪念园(成人票)'}, {'supplierId': '794', 'bookDescription': '需要在游玩前1天的22:45前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '薇票网', 'supplierScore': 4.99, 'supplierName': '薇票网', 'refundPoundage': 0, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=685664905&supplierId=794&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '22:45:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'marketPrice': 60, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 6, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '685664905', 'isStraightSight': False, 'refundDescription': '使用日期截止前当天22:45可申请退款<br/>不支持部分退款<br/>', 'supplierType': 3, 'qunarPrice': 54, 'priceId': 248531062, 'title': '毛泽东纪念园成人票'}]}], [{'hasPromotion': False, 'totalCount': 3, 'typeId': 371142, 'exInfo': '', 'ticketZoneName': '一日游', 'qunarPrice': 37, 'typeName': '{长沙出发}花明楼、韶山毛主席故居、纪念馆一日游【可含中餐】', 'tickets': [{'supplierId': '1987', 'bookDescription': '需要在游玩前1天的23:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '和乐假期', 'supplierScore': 4.93, 'supplierName': '和乐假期', 'refundPoundage': 5, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=1318889204&supplierId=1987&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': True, 'cutPrice': 113, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '1318889204', 'isStraightSight': False, 'refundDescription': '退款手续费5元/张<br/>使用日期截止前1天17:00可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 37, 'priceId': 273353857, 'title': '{长沙出发}花明楼、韶山毛主席故居、纪念馆一日游【可含中餐】【成人 08:30 不含餐 进店】'}, {'supplierId': '1987', 'bookDescription': '需要在游玩前1天的23:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '和乐假期', 'supplierScore': 4.93, 'supplierName': '和乐假期', 'refundPoundage': 5, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=417324017&supplierId=1987&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 38, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '417324017', 'isStraightSight': False, 'refundDescription': '退款手续费5元/张<br/>使用日期截止前1天17:00可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 52, 'priceId': 182705757, 'title': '{长沙出发}花明楼、韶山毛主席故居、纪念馆一日游【可含中餐】【成人 08:30 不含餐 纯玩】'}, {'supplierId': '1987', 'bookDescription': '需要在游玩前1天的23:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '和乐假期', 'supplierScore': 4.93, 'supplierName': '和乐假期', 'refundPoundage': 5, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3854104068&supplierId=1987&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 91, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3854104068', 'isStraightSight': False, 'refundDescription': '退款手续费5元/张<br/>使用日期截止前1天17:00可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 68, 'priceId': 263758482, 'title': '{长沙出发}花明楼、韶山毛主席故居、纪念馆一日游【可含中餐】【成人 08:30 含餐 纯玩】'}]}, {'hasPromotion': False, 'totalCount': 1, 'typeId': 372338, 'exInfo': '', 'ticketZoneName': '一日游', 'qunarPrice': 120, 'typeName': '[长沙出发}]韶山毛主席故居、花明楼、滴水洞一日游【含中餐】', 'tickets': [{'supplierId': '1987', 'bookDescription': '需要在游玩前1天的23:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '和乐假期', 'supplierScore': 4.93, 'supplierName': '和乐假期', 'refundPoundage': 20, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=2126344859&supplierId=1987&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 78, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '2126344859', 'isStraightSight': False, 'refundDescription': '退款手续费20元/张<br/>使用日期截止前1天17:00可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 120, 'priceId': 245222764, 'title': '[长沙出发}]韶山毛主席故居、花明楼、滴水洞一日游【含中餐】【成人 08:15 含餐 中文】'}]}, {'hasPromotion': False, 'totalCount': 5, 'typeId': 393663, 'exInfo': '', 'ticketZoneName': '一日游', 'qunarPrice': 37, 'typeName': '【长沙出发】刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)', 'tickets': [{'supplierId': '9143', 'bookDescription': '需要在游玩当天的07:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 7, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=232634822&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': True, 'cutPrice': 13, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '232634822', 'isStraightSight': False, 'refundDescription': '退款手续费7元/张<br/>', 'supplierType': 3, 'qunarPrice': 37, 'priceId': 256226190, 'title': '【长沙出发】刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)【成人 08:30 不含餐 进店】'}, {'supplierId': '9143', 'bookDescription': '需要在游玩当天的07:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 7, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3654750217&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 30, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3654750217', 'isStraightSight': False, 'refundDescription': '退款手续费7元/张<br/>', 'supplierType': 3, 'qunarPrice': 50, 'priceId': 222548858, 'title': '【长沙出发】刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)【成人 08:30 不含餐 纪念馆】'}, {'supplierId': '9143', 'bookDescription': '需要在游玩当天的07:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 7, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=2678492008&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 20, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '2678492008', 'isStraightSight': False, 'refundDescription': '退款手续费7元/张<br/>', 'supplierType': 3, 'qunarPrice': 60, 'priceId': 256226534, 'title': '【长沙出发】刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)【成人 08:30 含餐 进店】'}, {'supplierId': '9143', 'bookDescription': '需要在游玩当天的07:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 7, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=2211363443&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 33, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '2211363443', 'isStraightSight': False, 'refundDescription': '退款手续费7元/张<br/>', 'supplierType': 3, 'qunarPrice': 95, 'priceId': 222548128, 'title': '【长沙出发】刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)【成人 08:30 不含餐 滴水洞】'}, {'supplierId': '9143', 'bookDescription': '需要在游玩当天的07:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 7, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3277817603&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 50, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3277817603', 'isStraightSight': False, 'refundDescription': '退款手续费7元/张<br/>', 'supplierType': 3, 'qunarPrice': 110, 'priceId': 222548493, 'title': '【长沙出发】刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)【成人 08:30 含餐 滴水洞】'}]}, {'hasPromotion': False, 'totalCount': 2, 'typeId': 424067, 'exInfo': '', 'ticketZoneName': '一日游', 'qunarPrice': 37, 'typeName': '韶山+刘少奇纪念馆+毛泽东故居+毛泽东纪念馆+直通车', 'tickets': [{'supplierId': '1987', 'bookDescription': '需要在游玩前1天的23:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '和乐假期', 'supplierScore': 4.93, 'supplierName': '和乐假期', 'refundPoundage': 5, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=1845441086&supplierId=1987&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:30:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': True, 'cutPrice': 119, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '1845441086', 'isStraightSight': False, 'refundDescription': '退款手续费5元/张<br/>使用日期截止前1天17:30可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 37, 'priceId': 217372089, 'title': '韶山+刘少奇纪念馆+毛泽东故居+毛泽东纪念馆+直通车【成人 08:00 不含餐 进店】'}, {'supplierId': '1987', 'bookDescription': '需要在游玩前1天的23:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '和乐假期', 'supplierScore': 4.93, 'supplierName': '和乐假期', 'refundPoundage': 5, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=1561628746&supplierId=1987&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:30:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 106, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '1561628746', 'isStraightSight': False, 'refundDescription': '退款手续费5元/张<br/>使用日期截止前1天17:30可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 50, 'priceId': 217371537, 'title': '韶山+刘少奇纪念馆+毛泽东故居+毛泽东纪念馆+直通车【成人 08:00 不含餐 纯玩】'}]}, {'hasPromotion': False, 'totalCount': 4, 'typeId': 1562241, 'exInfo': '', 'ticketZoneName': '一日游', 'qunarPrice': 34, 'typeName': '刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)不含环保车', 'tickets': [{'supplierId': '9143', 'bookDescription': '需要在游玩当天的08:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 6, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=4143786381&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': True, 'cutPrice': 24, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '4143786381', 'isStraightSight': False, 'refundDescription': '退款手续费6元/张<br/>', 'supplierType': 3, 'qunarPrice': 34, 'priceId': 238288016, 'title': '刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)不含环保车【成人 08:30 不含餐 纪念馆】'}, {'supplierId': '9143', 'bookDescription': '需要在游玩当天的08:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 6, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3352667486&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 20, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3352667486', 'isStraightSight': False, 'refundDescription': '退款手续费6元/张<br/>', 'supplierType': 3, 'qunarPrice': 58, 'priceId': 238287650, 'title': '刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)不含环保车【成人 08:30 含餐 纪念馆】'}, {'supplierId': '9143', 'bookDescription': '需要在游玩当天的08:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 6, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=899307295&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 20, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '899307295', 'isStraightSight': False, 'refundDescription': '退款手续费6元/张<br/>', 'supplierType': 3, 'qunarPrice': 90, 'priceId': 238287282, 'title': '刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)不含环保车【成人 08:30 不含餐 滴水洞】'}, {'supplierId': '9143', 'bookDescription': '需要在游玩当天的08:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '中旅总社自由行', 'supplierScore': 5.0, 'supplierName': '中旅总社自由行', 'refundPoundage': 6, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=1499525627&supplierId=9143&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': False, 'refundAdvanceTime': '00:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 0, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 28, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '1499525627', 'isStraightSight': False, 'refundDescription': '退款手续费6元/张<br/>', 'supplierType': 3, 'qunarPrice': 110, 'priceId': 238286915, 'title': '刘少奇、毛主席故居+韶山一日(可选滴水洞可含餐)不含环保车【成人 08:30 含餐 滴水洞】'}]}, {'hasPromotion': False, 'totalCount': 2, 'typeId': 1589670, 'exInfo': '', 'ticketZoneName': '一日游', 'qunarPrice': 35, 'typeName': '{长沙出发}花明楼、韶山毛主席故居、纪念馆一日游', 'tickets': [{'supplierId': '11736', 'bookDescription': '需要在游玩当天的17:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '欧亚旅行社', 'supplierScore': 4.82, 'supplierName': '欧亚旅行社', 'refundPoundage': 5, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=2552820836&supplierId=11736&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 25, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '2552820836', 'isStraightSight': False, 'refundDescription': '退款手续费5元/张<br/>使用日期截止前1天17:00可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 35, 'priceId': 277365647, 'title': '{长沙出发}花明楼、韶山毛主席故居、纪念馆一日游【儿童 08:00 不含餐 中文】'}, {'supplierId': '11736', 'bookDescription': '需要在游玩当天的17:00前预订', 'bookAtAnyTimeStr': '可订明日', 'isFastestSpeed': False, 'isTuan': False, 'sightId': 3742, 'todayCanBook': False, 'noPriceInThreeDays': False, 'limitEnterType': 1, 'supplierNameDisplay': '欧亚旅行社', 'supplierScore': 4.82, 'supplierName': '欧亚旅行社', 'refundPoundage': 5, 'bookingUrl': '//piao.qunar.com/order/confirm.htm?productId=3637080740&supplierId=11736&isTuan=false&sightId=3742&isCpc=false', 'canRefundType': '条件退', 'limitRefundAdvance': True, 'refundAdvanceTime': '17:00:00', 'cpcsupplier': False, 'payWay': '在线支付', 'canOrder': True, 'refundAdvanceDay': 1, 'guarantee': True, 'promotionInfoIds': '', 'cashBack': 0, 'isLowestPrice': False, 'cutPrice': 25, 'preference': False, 'shopNameType': 'ACTUAL_SHOP_NAME', 'refundPoundageType': 1, 'isQunarStraightSale': False, 'canRefund': True, 'productId': '3637080740', 'isStraightSight': False, 'refundDescription': '退款手续费5元/张<br/>使用日期截止前1天17:00可申请退款<br/>', 'supplierType': 3, 'qunarPrice': 35, 'priceId': 277365377, 'title': '{长沙出发}花明楼、韶山毛主席故居、纪念馆一日游【成人 08:00 不含餐 中文】'}]}]]}, 'ret': True}
复制代码


剩下的信息提取不用我说了吧,自己来吧,我只能帮到这里了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2017-6-9 22:13:14 | 显示全部楼层
gopythoner 发表于 2017-6-9 21:20
哎,直接写给你算了

谢谢了,开始不知道为什么没有POST只有GET,刚刚在POST里找到了  表单信息也在cookie里面找到了   
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-20 16:42

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表