-4

我在一个包含磁铁种子列表的蜘蛛中有一个 python 列表。现在我如何将此列表/磁力种子存储在数据库字段中?这是代码:

class MySpider(BaseSpider):

    name = "myspider"
    allowed_domains = ["thepiratebay.se"]
    base_url = "http://www.thepiratebay.se/search/%s/"
    start_urls = []

    def __init__(self, *args, **kwargs):
        movies = Movie.objects.all()
        for movie in movies:
            self.start_urls.append(self.base_url % movie.name)
        super(MySpider, self).__init__(*args, **kwargs)

    def parse(self, response):
        self.log('Hi, this is an item page! %s' % response.url)
        hxs = HtmlXPathSelector(response)
        items = hxs.select('//table/tr/td[contains(@class, "detName")]')
        item = items
        item_name = hxs.select('//a[@class="detLink"]/text()').extract()[1]
        print item_name  #list containing movie names      
        torrent_link = hxs.select('//a[@title="Download this torrent using magnet"]/@href').extract()[1]
        print torrent_link # torrent_link contains list of torrent links

现在我想将这些链接保存在数据库中???怎么做 ???

4

2 回答 2

0

如果您不知道如何保存到数据库,那么我强烈建议您在此处学习 django 教程。它将向您展示所有使用 sqlite 的 CRUD 内容。

于 2012-06-28T12:25:21.307 回答
0

假设您没有使用 python 进行数据库编程的经验,我建议您在谷歌上搜索“python 数据库教程”(我建议从 sqlite 开始)并尝试遵循它并将其调整为您当前的脚本。

于 2012-06-28T10:32:16.117 回答