I wrote a simple example in Python. the goal is to fetch the HTML and use "beautifulsoup"(html parser library) to parse the data I want. The tools I used as following 1. curl : to fetch specific url resource 2. beauifulsoup : make me parse the complex html more easier
Now, I want to achieve the goal by pure javascript, Because I want the to put the functionality on the my web site, however if put the computation tasks on Server side is heavy for server, so I want to pass the tasks to the client-side.
Is there any good way (some libraries?) to achieve the goal quickly?
Many thanks in advance