使用python获取cgedt网站的所有股票代码

更多精彩内容详见个人量化交易专辑索引 

1. 在items.py中添加如下代码

import scrapy

class CodeItem(scrapy.Item):
    # define the fields for your item here like:
    # name = scrapy.Field()
    code = scrapy.Field()
    market = scrapy.Field()
    type = scrapy.Field()
    name = scrapy.Field()
    pass

2. 在spiders/codes_cgedt.py中添加如下代码

import scrapy
import re
import logging
from reptile.items import CodeItem

class CodesCgedtSpider(scrapy.Spider):
    name = "codes_cgedt"
    allowed_domains = ["www.cgedt.com"]
    start_urls = ["http://www.cgedt.com/stockcode/hushi.asp", 
                  "http://www.cgedt.com/stockcode/shenshi.asp"]

    def start_requests(self):
        for url in self.start_urls:
            yield scrapy.Request(url)

    def parse(self, response):
        if self.start_urls[0] == response.url:
            market = 'SH'
        elif self.start_urls[1] == response.url:
            market = 'SZ'
        else:
            logging.error('unknown url')
            return

        # 存放股票代码的集合
        stockcodelist = response.xpath("//*[@id='stockcodelist']/ul[1]")
        for each in stockcodelist.xpath("li"):
            item = CodeItem()
            string = each.xpath("a/text()").extract_first()

            p_code = re.compile(r'[(](.*?)[)]', re.S)
            p_name = re.compile(r'(.*?)[(]', re.S)
            code = re.findall(p_code, string)
            name = re.findall(p_name, string)

            item['market'] = market            
            item['code'] = code[0]
            item['name'] = name[0]
            yield item

        pass

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

我的小白兔奶糖

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值