You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django-dynamic-scraper
I scrape only detailed pages with GET requests and works fine. But i found a detailed page that need to use GET request for 2 elements and a FormRequest/POST for 1 element too. After extensive testing i didnt find a way to combine both of them. Is it possible with DDS and what setup it needs? Thanks in advance
k bez
unread,
May 2, 2017, 7:21:49 PM5/2/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django-dynamic-scraper
OK after some more testing i found a way to combine GET and FormRequest/POST. I have another problem now. I need to provide dynamically form data for example {"pid" : "{temp_attr}"} where {temp_attr} is an attribute placeholder from another scrapped item. But if i read right django_spider.py only with {page} placeholder we can do this and attribute placeholders isnt supporting there. Is there another way to do this?