4

I want to run scrapy server with this command:

scrapy server

It failed because there is no project.Then I create an empty project to run server, an deploy another project successfully. But, scrapy server cannot work with this project, and tell me it cannot find the spider. Why? It means I must run a different server with each project?

Kara
  • 6,115
  • 16
  • 50
  • 57
Zhang Jiuzhou
  • 759
  • 8
  • 22

1 Answers1

1

It sounds like you created a spider under one project, and need it in another project. To do that, you can just copy the spider.py file.

Another option is to get by without the server, that depends on what you want to do. That's discussed here

MrMartin
  • 411
  • 5
  • 18