0

I am trying to create an "Wenelo fashion shopping" iphone App effect where user submit a link and it will extract the site data to a structure.

What kind of web/non web technology should I be using for this?

Thanks in advance.

user1688346
  • 1,846
  • 5
  • 26
  • 48

2 Answers2

1

I suppose you are using a server for the scraping job. You could use jsoup if your server side language will be java, it's a very powerful library. For php there are a lot of options out there. I've used Simple HTML DOM Library, which is pretty simple and easy to use, but I'm sure there are others that are better. Check here HTML Scraping in Php

Community
  • 1
  • 1
Alkis Kalogeris
  • 17,044
  • 15
  • 59
  • 113
1

You want to do web scraping. You can see a related topic about it on StackoverFlow over here. You can read more on the technique over at Wikipedia.

Community
  • 1
  • 1
Vaughan Hilts
  • 2,839
  • 1
  • 20
  • 39