Ahmed Rezaahmedreza.hashnode.dev·May 6, 2024Web Scraping with Python Beautiful SoupBeautiful Soup is a Python library designed for web scraping HTML and XML files. It offers a convenient way to extract data from web pages by parsing the HTML/XML markup and navigating the document's structure. Here's why Beautiful Soup is useful for...Python
Prabhu Rblog.teamnexus.in·Mar 11, 2024jsoup: A Powerful Java Library for Working With HTML and XML Documentsjsoup is a popular open-source Java library that enables developers to parse, manipulate, and extract data from HTML and XML documents. In this article, we will explore the basics of using jsoup, including parsing HTML documents, selecting and manipu...Java
tsawant635sawant.hashnode.dev·Mar 6, 2024Sync vs Defer: Unraveling the Mystery Behind JavaScript Execution ⏳Introduction: In the realm of web development, optimizing JavaScript execution is a crucial aspect to ensure smooth user experiences. Two commonly used attributes, "async" and "defer" play significant roles in controlling how JavaScript is loaded and...24 likes·40 readsJavaScript
Vladimir Kolevvladoko.dev·Dec 1, 2022PyParsy the HTML parsing library I neededThe problem When crawling a task of the crawler sometimes is to parse the resulting HTML page for a given request. I see in a lot of crawling tutorials and examples that the BeautifulSoup4 library is suggested. So what developers and up doing is - th...html-parsing