Home > Software design >  web scraping with Python and displaying data on React app
web scraping with Python and displaying data on React app

Time:07-16

I have learnt how to web scrape with python and create react apps, I'm wondering what the general way would be if I wanted to web scrape data with python display that data on a react app if possible?

CodePudding user response:

I have scraped images with python on the backend and react.js on the frontend. What I did was to get the URLs of thousands of images and save them in json file and send it to the react part

  • Related