Reputation: 151
I'm trying to use the Scrapy shell with this URL:
but it doesn't work. I get this:
[1] 7357
[2] 7358
[3] 7359
[4] 7360
and I can not write any command.
Upvotes: 1
Views: 261
Reputation: 2602
You have to put the url inside apostrophes 'http://url/name':
scrapy shell 'https://ueaeprints.uea.ac.uk/cgi/search/simple?screen=Public%3A%3AEPrintSearch&_action_search=Search&q_merge=ALL&q=fulltext&order=title%2Fcreators_name%2F-date'
Upvotes: 3