Scrapy from outside of project - empty settingsDjango add management command without installing as appHow do I check if a list is empty?How to add timeout to Deferred from Twisted's deferToThread API?building scrapy spiders into my own program, i don't want to call scrapy from command line)Why my Scrapy project stop scraping, but still scrawling website wellCan't run Scrapy project in DjangoGetting scrapy project settings when script is outside of root directoryScrapy Shell and Scrapy SplashScrapy: Multiple crawler in one projectCalling Scrapy Spider from DjangoUsing parsel in Scrapy project

Is it a problem that pull requests are approved without any comments

Will TSA allow me to carry a Continuous Positive Airway Pressure (CPAP) device?

What does War Machine's "Canopy! Canopy!" line mean in "Avengers: Endgame"?

I wrote a scene that the majority of my readers loved. How do I get back to that place while writing my new book?

Java 8: How to convert String to Map<String,List<String>>?

Align text within align

Do I include animal companions when calculating difficulty of an encounter?

How to connect an offset point symbol to its original position in QGIS?

Short story written from alien perspective with this line: "It's too bright to look at, so they don't"

California: "For quality assurance, this phone call is being recorded"

3 as a Sum of 3 Pan Digital Expressions

Explain Ant-Man's "not it" scene from Avengers: Endgame

Is there any rule preventing me from starting multiple bardic performances in a single round?

Who operates delivery flights for commercial airlines?

Pronoun introduced before its antecedent

Is there any word or phrase for negative bearing?

Credit card offering 0.5 miles for every cent rounded up. Too good to be true?

Does any lore text explain why the planes of Acheron, Gehenna, and Carceri are the alignment they are?

Diet Coke or water?

Past participle agreement with the subject in the case of pronominal verbs

Incremental Ranges!

Is it legal in the UK for politicians to lie to the public for political gain?

Does the growth of home value benefit from compound interest?

Personalization conditions switching doesn`t work in Experience Editor (9.1.0, Initial Release)



Scrapy from outside of project - empty settings


Django add management command without installing as appHow do I check if a list is empty?How to add timeout to Deferred from Twisted's deferToThread API?building scrapy spiders into my own program, i don't want to call scrapy from command line)Why my Scrapy project stop scraping, but still scrawling website wellCan't run Scrapy project in DjangoGetting scrapy project settings when script is outside of root directoryScrapy Shell and Scrapy SplashScrapy: Multiple crawler in one projectCalling Scrapy Spider from DjangoUsing parsel in Scrapy project






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I'm trying to run spiders from Django management command.



It works but it doesn't use settings from scrapy project.



django_project/
django_project/
app1/
scraping/ # This is app but it has scrapy project inside too
scrapy_spider/
settings.py
spiders/


When I try to specify settings inside the command, it returns:



ModuleNotFoundError: No module named 'scrapy_spider'


COMMAND



import os
from django.core.management.base import BaseCommand
from scrapy.utils.project import get_project_settings

from twisted.internet import reactor, defer
from scrapy.crawler import CrawlerRunner

from scraping.scrapy_spider.spiders.autoscrape_index_spider import AutoScrapeIndexSpider
from scraping.scrapy_spider.spiders.autoscrape_spider import AutoScrapeSpider


class Command(BaseCommand):

def handle(self, *args, **options):
os.environ['SCRAPY_SETTINGS_MODULE'] = 'scraping.scrapy_spider.settings'
runner = CrawlerRunner(settings=get_project_settings())

@defer.inlineCallbacks
def crawl():
yield runner.crawl(AutoScrapeIndexSpider)
yield runner.crawl(AutoScrapeSpider)
reactor.stop()

crawl()
reactor.run()


Do you know how to make it work?










share|improve this question
























  • Maybe it is related to this question: stackoverflow.com/questions/40333400/…

    – zeevb
    Mar 24 at 14:13






  • 1





    Do you have __init__.py in proper places?

    – vezunchik
    Mar 24 at 16:31

















0















I'm trying to run spiders from Django management command.



It works but it doesn't use settings from scrapy project.



django_project/
django_project/
app1/
scraping/ # This is app but it has scrapy project inside too
scrapy_spider/
settings.py
spiders/


When I try to specify settings inside the command, it returns:



ModuleNotFoundError: No module named 'scrapy_spider'


COMMAND



import os
from django.core.management.base import BaseCommand
from scrapy.utils.project import get_project_settings

from twisted.internet import reactor, defer
from scrapy.crawler import CrawlerRunner

from scraping.scrapy_spider.spiders.autoscrape_index_spider import AutoScrapeIndexSpider
from scraping.scrapy_spider.spiders.autoscrape_spider import AutoScrapeSpider


class Command(BaseCommand):

def handle(self, *args, **options):
os.environ['SCRAPY_SETTINGS_MODULE'] = 'scraping.scrapy_spider.settings'
runner = CrawlerRunner(settings=get_project_settings())

@defer.inlineCallbacks
def crawl():
yield runner.crawl(AutoScrapeIndexSpider)
yield runner.crawl(AutoScrapeSpider)
reactor.stop()

crawl()
reactor.run()


Do you know how to make it work?










share|improve this question
























  • Maybe it is related to this question: stackoverflow.com/questions/40333400/…

    – zeevb
    Mar 24 at 14:13






  • 1





    Do you have __init__.py in proper places?

    – vezunchik
    Mar 24 at 16:31













0












0








0


1






I'm trying to run spiders from Django management command.



It works but it doesn't use settings from scrapy project.



django_project/
django_project/
app1/
scraping/ # This is app but it has scrapy project inside too
scrapy_spider/
settings.py
spiders/


When I try to specify settings inside the command, it returns:



ModuleNotFoundError: No module named 'scrapy_spider'


COMMAND



import os
from django.core.management.base import BaseCommand
from scrapy.utils.project import get_project_settings

from twisted.internet import reactor, defer
from scrapy.crawler import CrawlerRunner

from scraping.scrapy_spider.spiders.autoscrape_index_spider import AutoScrapeIndexSpider
from scraping.scrapy_spider.spiders.autoscrape_spider import AutoScrapeSpider


class Command(BaseCommand):

def handle(self, *args, **options):
os.environ['SCRAPY_SETTINGS_MODULE'] = 'scraping.scrapy_spider.settings'
runner = CrawlerRunner(settings=get_project_settings())

@defer.inlineCallbacks
def crawl():
yield runner.crawl(AutoScrapeIndexSpider)
yield runner.crawl(AutoScrapeSpider)
reactor.stop()

crawl()
reactor.run()


Do you know how to make it work?










share|improve this question
















I'm trying to run spiders from Django management command.



It works but it doesn't use settings from scrapy project.



django_project/
django_project/
app1/
scraping/ # This is app but it has scrapy project inside too
scrapy_spider/
settings.py
spiders/


When I try to specify settings inside the command, it returns:



ModuleNotFoundError: No module named 'scrapy_spider'


COMMAND



import os
from django.core.management.base import BaseCommand
from scrapy.utils.project import get_project_settings

from twisted.internet import reactor, defer
from scrapy.crawler import CrawlerRunner

from scraping.scrapy_spider.spiders.autoscrape_index_spider import AutoScrapeIndexSpider
from scraping.scrapy_spider.spiders.autoscrape_spider import AutoScrapeSpider


class Command(BaseCommand):

def handle(self, *args, **options):
os.environ['SCRAPY_SETTINGS_MODULE'] = 'scraping.scrapy_spider.settings'
runner = CrawlerRunner(settings=get_project_settings())

@defer.inlineCallbacks
def crawl():
yield runner.crawl(AutoScrapeIndexSpider)
yield runner.crawl(AutoScrapeSpider)
reactor.stop()

crawl()
reactor.run()


Do you know how to make it work?







python scrapy






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 24 at 14:21







Milano

















asked Mar 24 at 13:24









MilanoMilano

4,7531445135




4,7531445135












  • Maybe it is related to this question: stackoverflow.com/questions/40333400/…

    – zeevb
    Mar 24 at 14:13






  • 1





    Do you have __init__.py in proper places?

    – vezunchik
    Mar 24 at 16:31

















  • Maybe it is related to this question: stackoverflow.com/questions/40333400/…

    – zeevb
    Mar 24 at 14:13






  • 1





    Do you have __init__.py in proper places?

    – vezunchik
    Mar 24 at 16:31
















Maybe it is related to this question: stackoverflow.com/questions/40333400/…

– zeevb
Mar 24 at 14:13





Maybe it is related to this question: stackoverflow.com/questions/40333400/…

– zeevb
Mar 24 at 14:13




1




1





Do you have __init__.py in proper places?

– vezunchik
Mar 24 at 16:31





Do you have __init__.py in proper places?

– vezunchik
Mar 24 at 16:31












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55324253%2fscrapy-from-outside-of-project-empty-settings%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55324253%2fscrapy-from-outside-of-project-empty-settings%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현