Soupstars 🍲 ⭐ 💥

https://travis-ci.org/tjwaterman99/soupstars.svg?branch=master https://coveralls.io/repos/github/tjwaterman99/soupstars/badge.svg?branch=master https://readthedocs.org/projects/soupstars/badge/?version=latest https://badge.fury.io/py/soupstars.svg https://img.shields.io/pypi/pyversions/soupstars.svg

Soupstars makes it fast and easy to build web parsers in Python.

Install it with pip.

pip install soupstars

Quickstart

We’ll create a parser to extract data from a github page.

Run the parser.

soupstars github_profile_parser.py

{
  "url": "...",
  "status": 200,
  "data": {
    "title": "tjwaterman99/soupstars"
  },
  "errors": {}
}

Let’s look more closely at what you need to get set up.

You’re now ready to start building your own web parsers with soupstars. Nice job. 🍻