Declarative web parsers
Project description
Soupstars :stew: :star: :boom:
Soupstars makes it easier than ever to build web parsers in Python.
Install it with pip.
pip install soupstars
Let's go!
Quickstart
You need two objects to get started.
>>> from soupstars import Parser, serialize
We'll build a parser to extract data from a github page.
>>> class GithubParser(Parser):
... "Parse data from a github page"
...
... @serialize
... def title(self):
... return str(self.h1.text.strip())
Now all we need is a github web page to parse.
>>> parser = GithubParser("https://github.com/tjwaterman99/soupstars")
Let's see what we've got!
>>> parser.to_dict()
{'title': 'tjwaterman99/soupstars'}
You're now ready to start building your own web parsers with soupstars. Nice job. :beers:
Going further
- Check out some more examples.
- Review the API documentation.
Contributing
We're thrilled you asked! Just open a PR on github, and we'll take a look.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
soupstars-1.0.5.tar.gz
(3.6 kB
view details)
File details
Details for the file soupstars-1.0.5.tar.gz.
File metadata
- Download URL: soupstars-1.0.5.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94dac165522344767d9a5741b93c19c6ce0e0287cc115fb73243a96bfb30ad12
|
|
| MD5 |
9cfe74206dc7829025510e6a0d000f83
|
|
| BLAKE2b-256 |
b01ba35250bb0207a412e6476ee85f8b0b33d417ad12c0867a2a90e7cae6d15a
|