Questions tagged [django-dynamic-scraper]

Django Dynamic Scraper (DDS) is an app for Django which builds on top of the scraping framework Scrapy and lets you create and manage Scrapy spiders via the Django admin interface.

Django Dynamic Scraper (DDS) is an app for Django build on top of the scraping framework Scrapy. While preserving many of the features of Scrapy it lets you dynamically create and manage spiders via the Django admin interface.

Features:

  • Create and manage scrapers for your Django models in the Django admin interface
  • Many features of Scrapy like regular expressions, processors, pipelines (see Scrapy Docs)
  • Image/screenshot scraping
  • Dynamic scheduling depending on crawling success via Django Celery
  • Checkers to check if items once scraped are still existing
17 questions
0
votes
1 answer

super call to DjangoSpider's parse method not working

I am using django-dynamic-scraper in one of my django projects. What I am doing is pretty simple. I am inheriting dynamic_scraper.spiders.DjangoSpider class to have some custom functionality in its parse method. Following is what I did: from…
Amyth
  • 32,527
  • 26
  • 93
  • 135
0
votes
1 answer

django dynamic scraper range_funct pagination

I am using django-dynamic-scraper in one of my applications, I have gone through the docs and following is my setup: object class url I am using is : http://www.example.com/products/brandname_products.html The pagination on the site is something…
Amyth
  • 32,527
  • 26
  • 93
  • 135
1
2