+ 1

Guys is it easy to create a web crawler?

Help me how to create it

21st Oct 2018, 5:58 AM
Diako
Diako - avatar
1 Antwort
0
In C#, if you're using .NET Framework 4.5 or later you can use HttpClient to create web request and get the response. In order to parse html from the webpage (to extract or gather expected information) there are a lot of open source yet very useful libraries such as AngleSharp or HtmlAgilityPack. Google it. In Python, "Scrapy" will be your friend.
22nd Oct 2018, 10:36 PM
camelCase
camelCase - avatar