What I'd Add FIRST To a new Scrapy Project

preview_player
Показать описание


-------------------------------------
Disclaimer: These are affiliate links and as an Amazon Associate I earn from qualifying purchases
-------------------------------------

Sound like me:

-------------------------------------

Video like me:
-------------------------------------

PC Stuff:
Рекомендации по теме
Комментарии
Автор

You videos helped me understand scrapy more than any other resource, ty!

janekstern
Автор

I wish this video had more exposure. I greatly appreciate that you took the time to put this series together. Being able to see these examples of the various mechanics behind scrapy has been hugely helpful. Thank you again.

linuxinstalled
Автор

Thanks for the tutorial, after watching it, it gave me a better understanding of scrapy itemloader documents.

shihlun
Автор

Thanks! the documentation did not go into enough depth and im glad someone made a comprehensive video on it

davyroger
Автор

Great tutorial! very easy to follow, had no problems, about the typos, I'm the worst typer ever, but tabnine always saves my life.

victormaia
Автор

Great tutorial!! It really helps to understand

woldemarkiev
Автор

Another great video ! Very well done John 👏🏼

amineboutaghou
Автор

Thank you! I watched the previous video and then this, and it felt like I know so much about scrapy already. Really really good videos. Keep it up!

gwulfwud
Автор

Great explanation as always, really helpful tutorial

milank
Автор

Awesome vid! It answered my questions with Item Loaders. Docs were confusing me haha

codewithnacho
Автор

Thanks a lot. The videos are very clear. Do you mind explaining please in one of your next videos the correct folder structure of a Scrapy project and what file goes where and why.

hendrikfeddersen
Автор

Thanks a lot, what you do is amazing.

nadyamoscow
Автор

great tutorial, explain the exact thing I was looking for, thank you

vidproli
Автор

Thank you, I learned a lot from this video:)

carinafelnecan
Автор

As the others have said, thanks for your time and effort, a great help. The links connecting to Amazon (e.g. the lighting link) are dead, and you might want to update them. On another front, have you added a video on caching? All in all, really well done, and, again, thanks.
jA

justinames
Автор

Hello John, could you do a video on how to host the scrapy scripts

byroncodes
Автор

Amazing Tutorial 😍
I do have a question - I am trying to get basic information from a shoe website and the spider is only returning half the items on the website because of the DUPEFILTER setting. Maybe there are same links for same shoe and different color or multiple items with the same link but if I try to change the filter setting, it goes into infinite loop. Is there a way around that?

RahulYadav-wvl
Автор

Super nice, however I am struggling to understand how would that work with a dynamic website where I am following a GET method which returns a data in json format. I do a bit of working around and convert it to a dictionary - but can’t seem to get it to return an item… any ideas that can help me?

Daviuliano
Автор

what would you recommend? splash or playwright?

Abdul_Rafay_Pal
Автор

I scraped a product and some items don't have some data so the result is a nonetype which means None,
I created in the items.py a function to check if it is None print something:
def check_gift(value):
if value is None:
return "No gift"
else:
return value
but it don't work where is the problem?

MohAmuza