gpt4 book ai didi

php - 如何使用 PHP 启动我的 scrapy 脚本?

转载 作者:行者123 更新时间:2023-12-01 09:29:52 26 4
gpt4 key购买 nike

这是我的脚本,我在 shell 中输入“scrapycrapyquotes”来执行它,那么我如何在 php 中启动这个命令?

import scrapy
class QuotesSpider(scrapy.Spider):
name = "quotes"
start_urls = [
'http://quotes.toscrape.com/page/1/',
'http://quotes.toscrape.com/page/2/',
]

def parse(self, response):
for quote in response.css('div.quote'):
yield {
'text': quote.css('span.text::text').extract_first(),
'author': quote.css('small.author::text').extract_first(),
'tags': quote.css('div.tags a.tag::text').extract(),
}

最佳答案

我给你我的项目使用的内容

chdir('/Path_to_folder');
shell_exec('scrapy crawl yourSpider -a firstParam="'.$firstParam.'"' . ' -a secondParam="'.$secondParam.'"');

了解更多信息

Chdir

shell_exec

关于php - 如何使用 PHP 启动我的 scrapy 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50062658/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com