Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pharo-contributions/soup
A Pharo implementation of beautiful Soup
https://github.com/pharo-contributions/soup
html pharo scraping
Last synced: about 1 month ago
JSON representation
A Pharo implementation of beautiful Soup
- Host: GitHub
- URL: https://github.com/pharo-contributions/soup
- Owner: pharo-contributions
- License: mit
- Created: 2019-06-29T05:01:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-27T09:34:01.000Z (almost 2 years ago)
- Last Synced: 2024-05-21T00:01:26.944Z (7 months ago)
- Topics: html, pharo, scraping
- Language: Smalltalk
- Size: 349 KB
- Stars: 6
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Tests](https://github.com/pharo-contributions/Soup/actions/workflows/runTests.yaml/badge.svg)](https://github.com/pharo-contributions/Soup/actions/workflows/runTests.yaml)
Soup is a simple HTML scraping library, ported from Python of [Beautiful Soup](http://www.crummy.com/software/BeautifulSoup/).
## Install
```Smalltalk
Metacello new
baseline: 'Soup';
repository: 'github://pharo-contributions/Soup';
load
```
## If you want to depend on itAdd the following code to your Metacello baseline or configuration
```
spec
baseline: 'Soup'
with: [ spec repository: 'github://pharo-contributions/Soup/' ]
```
## Example Usage
[![Example Usage](http://img.youtube.com/vi/y17pTysVddg/0.jpg)](http://www.youtube.com/watch?v=y17pTysVddg "Example Usage")## History
- Initial versions by Zulq Alam.
- Copied from http://smalltalkhub.com/#!/~PharoExtras/Soup on 7/28/2016