please help me i am really stuck here ,
my code is ruining properly when i am running it it its own directory i.e
where my code is present , but i am unable to run it properly from other
directory
code3forlinkparsing
└── code3forlinkparsing
└── spiders
├── brand_info_by_date
│ └── hand-bags31012014
├── brands_htmls
│ └── hand-bags31012014
├── code1_brandcollection
│ └── code1_brandcollection
│ └── spiders
├── code2_scrolling
│ └── code2_scrolling
│ └── spiders
│ └── dumpsss
├── item_details_csv 31012014
├── project2
│ └── project2
│ └── spiders
└── project3
└── project3
└── spiders
want to run
code3forlinkparsing.spiders.project2/project2/spiders/mycode.py from
topmost directory
i tried
scrapy runspider
code3forlinkparsing.spiders.project2/project2/spiders/mycode.py
but it skips its own setting i.e setting of project2.project2.settings.py
under setting i am using
BOT_NAME = 'project2'
SCRAPY_SETTINGS_MODULE = "project2.spiders"
SPIDER_MODULES = ['project2.spiders']
NEWSPIDER_MODULE = 'project2.spiders'
# Crawl responsibly by identifying yourself (and your website) on the
user-agent
#USER_AGENT = 'project2 (+http://www.yourdomain.com)'
DOWNLOADER_MIDDLEWARES = {
'scrapy.contrib.downloadermiddleware.httpproxy.HttpProxyMiddleware':
110,
'project2.proxymiddle.ProxyMiddleware': 100,
}
--
You received this message because you are subscribed to the Google Groups
"scrapy-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/scrapy-users.
For more options, visit https://groups.google.com/groups/opt_out.