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
3
votes
1 answer

Django1.10 Error: django.contrib.contenttypes.models.ContentType doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS

I am using Django 1.10, and trying to use the django-dynamic-scraper package following the tutorial: http://django-dynamic-scraper.readthedocs.io/en/latest/getting_started.html I have encountered the problem when I was calling "python manage.py…
3
votes
1 answer

django-dynamic-scraper : No module named django.core.management

My experience with django-dynamic-scraper is limited,I try to install django-dynamic-scraper with my MAC but when I finish everything I got this error : File "manage.py", line 9, in from django.core.management import…
Haythem Hedfi
  • 569
  • 1
  • 5
  • 11
1
vote
0 answers

Django Dynamic Scraper: Automatically Scrape a HUGE amount of urls at scale #143

I am currently working on a project whose goal is to create scrapers in a dynamic way and then being able to process a huge amount of urls at scale. For example, I have in DDS two websites: www.xxx.it associated with Scraper IT and www.xxx.ca…
1
vote
0 answers

Python requests return status code 400 on Django but without django it is working fine

I am making an Amazon Scraper and facing some kind of problem. Here is my code def scrapedPage(self,URL, user_agent): header = {"User-Agent": user_agent, 'Accept-Encoding': 'identity', 'Server': 'Server', 'Content-Type':…
1
vote
1 answer

Django, Django Dynamic Scraper, Djcelery and Scrapyd - Not Sending Tasks in Production

I'm using Django Dynamic Scraper to build a basic web scraper. I have it 99% of the way finished. It works perfectly in development alongside Celery and Scrapyd. Tasks are sent and fulfilled perfectly. As for production I'm pretty sure I have things…
Dean Sherwin
  • 478
  • 5
  • 13
1
vote
0 answers

Configure DDS with scrapy-splash. ERROR: no base objects

LS, I have installed Django-Dynamic-Scraper. And i would like to render Javascript via Splash. Therefor i have installed scrapy-splash and installed the docker splash image. The image below shows that the docker container can be reached. Splash…
Siggy
  • 11
  • 3
1
vote
2 answers

Django-dynamic-scraper unable to scrape the data

I am new to using dynamic scraper, and I have used the following sample for learningopen_news. I have everything set up but it keeps me showing the same error: dynamic_scraper.models.DoesNotExist: RequestPageType matching query does not…
iamsujit
  • 1,679
  • 2
  • 12
  • 20
1
vote
1 answer

How to get celery working with scrapy server on heroku and django-dynamic-scraper?

I am in the process of building my first project incorporating scrapy. Everything works well on my development server (windows), but have a few issues on heroku. I am using django-dynamic-scraper which handled allot of the integration work for…
Arctelix
  • 4,478
  • 3
  • 27
  • 38
0
votes
1 answer

Make virtual environment using a different python 3 version

I've had issues with installing django dynamic scraper on Windows (pillow installation was causing problems..), but found it works perfectly well on python 3.5.3. As I am currently using python 3.7, I thought it'd be a good idea to work with django…
0
votes
0 answers

I installed django dynamic scraper to my app and when i pushed it my app broke

I added django dynamic scraper to my app. it worked locally so I deployed it to my heroku server and It's giving me a server error of 500. I have no error messages in my heroku logs and it works fine locally. since I have no errors and it works…
losee
  • 2,190
  • 3
  • 29
  • 55
0
votes
0 answers

I am getting weird error in my django app

I am trying to use Django dynamic scraper in my app and when I try to run the server I get this error message RuntimeError: Model class dynamic_scraper.models.ScrapedObjClass doesn't declare an explicit app_label and isn't in an application in…
losee
  • 2,190
  • 3
  • 29
  • 55
0
votes
0 answers

Trying gather data with django-dynamic-scraper (django, scrapy)

I am using django-dynamic-scraper in one of my applications, I have gone through the docs and following is my setup: 1)Unfortunately, the scraper works only with first page and gathers well only url_proiect and question, on the other side, other…
Vasile
  • 801
  • 2
  • 13
  • 31
0
votes
1 answer

How to scrape datetime ind different format using django-dynamic-scraper

I am new in django and perhaps my problem is easy to solve but i cant find any way to resolve it in docs. I want to crape datetime from webside and store it in model as datetime field. In documentation i found something like date preprocesor but it…
Max
  • 59
  • 1
  • 12
0
votes
0 answers

Django-dynamic-scraper get 301 error when downloading image

I am trying to configure scraping data using django-dynamic-scraper. Everything have been working fine until i desided to add image scraping. I have done everything like in this docs part Scrapy images/screenshots But when i run scraper i get…
Max
  • 59
  • 1
  • 12
0
votes
0 answers

Django django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: dynamic_scraper

Hello i am new to django_dynamic_scraper. as i have installed it and also djcelery but when i apply migrations it shows this error. i Google it but didnt find anything. Please be specific that i will understand better this is my…
iamsujit
  • 1,679
  • 2
  • 12
  • 20
1
2