https://github.com/facsimiles/beautifulsoup
🌐 BeautifulSoup: Effortlessly scrape and parse web data with this powerful Python library! Perfect for developers needing quick and reliable HTML/XML data extraction. Start saving time on your projects today! [MIRROR][UNOFFICIAL]
https://github.com/facsimiles/beautifulsoup
api-scraping css-selectors data-extraction data-mining dynamic-web-scraping html-parsing mirror mirrored-repository python python3 unofficial unofficial-mirror web-automation web-content-extraction web-crawler web-scraping xpath
Last synced: 3 months ago
JSON representation
🌐 BeautifulSoup: Effortlessly scrape and parse web data with this powerful Python library! Perfect for developers needing quick and reliable HTML/XML data extraction. Start saving time on your projects today! [MIRROR][UNOFFICIAL]
- Host: GitHub
- URL: https://github.com/facsimiles/beautifulsoup
- Owner: facsimiles
- License: other
- Created: 2024-08-30T21:43:09.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-03T20:50:07.000Z (over 1 year ago)
- Last Synced: 2025-02-22T06:13:55.626Z (11 months ago)
- Topics: api-scraping, css-selectors, data-extraction, data-mining, dynamic-web-scraping, html-parsing, mirror, mirrored-repository, python, python3, unofficial, unofficial-mirror, web-automation, web-content-extraction, web-crawler, web-scraping, xpath
- Language: HTML
- Homepage: https://www.crummy.com/software/BeautifulSoup/
- Size: 15.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Beautiful Soup is a library that makes it easy to scrape information
from web pages. It sits atop an HTML or XML parser, providing Pythonic
idioms for iterating, searching, and modifying the parse tree.
# Quick start
```
>>> from bs4 import BeautifulSoup
>>> soup = BeautifulSoup("
SomebadHTML")
>>> print(soup.prettify())
Some
bad
HTML
>>> soup.find(text="bad")
'bad'
>>> soup.i
HTML
#
>>> soup = BeautifulSoup("SomebadXML", "xml")
#
>>> print(soup.prettify())
Some
bad
XML
```
To go beyond the basics, [comprehensive documentation is available](https://www.crummy.com/software/BeautifulSoup/bs4/doc/).
# Links
* [Homepage](https://www.crummy.com/software/BeautifulSoup/bs4/)
* [Documentation](https://www.crummy.com/software/BeautifulSoup/bs4/doc/)
* [Discussion group](https://groups.google.com/group/beautifulsoup/)
* [Development](https://code.launchpad.net/beautifulsoup/)
* [Bug tracker](https://bugs.launchpad.net/beautifulsoup/)
* [Complete changelog](https://bazaar.launchpad.net/~leonardr/beautifulsoup/bs4/view/head:/CHANGELOG)
# Note on Python 2 sunsetting
Beautiful Soup's support for Python 2 was discontinued on December 31,
2020: one year after the sunset date for Python 2 itself. From this
point onward, new Beautiful Soup development will exclusively target
Python 3. The final release of Beautiful Soup 4 to support Python 2
was 4.9.3.
# Supporting the project
If you use Beautiful Soup as part of your professional work, please consider a
[Tidelift subscription](https://tidelift.com/subscription/pkg/pypi-beautifulsoup4?utm_source=pypi-beautifulsoup4&utm_medium=referral&utm_campaign=readme).
This will support many of the free software projects your organization
depends on, not just Beautiful Soup.
If you use Beautiful Soup for personal projects, the best way to say
thank you is to read
[Tool Safety](https://www.crummy.com/software/BeautifulSoup/zine/), a zine I
wrote about what Beautiful Soup has taught me about software
development.
# Building the documentation
The bs4/doc/ directory contains full documentation in Sphinx
format. Run `make html` in that directory to create HTML
documentation.
# Running the unit tests
Beautiful Soup supports unit test discovery using Pytest:
```
$ pytest
```