Skip to main content

This package lets your script scrape web sites. JQuery-Like API.

Project description

Solid Scraper
=============

Easy to use JQuery-Like API for Web Scraping/Crawling. It also supports
Cookies and custom User Agents.

+-----+
| ## |
| 1. |
| Ins |
| tal |
| lat |
| ion |
+-----+
| ### |
| 1.1 |
| Usi |
| ng |
| pip |
+-----+
| ``p |
| ip |
| ins |
| tal |
| l s |
| oli |
| dsc |
| rap |
| er` |
| ` |
+-----+

2. "Hello World" Example
------------------------

Getting all url of all links:

.. code:: python

import solidscraper as ss

doc = ss.load("https://www.example.com/the/path")

# print the list of urls from all <a> elements
print doc.select("a").getAttribute("href")

Getting all url of all links inside <div>s whose class id is 'links':

.. code:: python

import solidscraper as ss

doc = ss.load("https://www.example.com/the/path")

# print the list of urls from all <a> elements inside <div id="links">
print doc.select("div #links").then("a").getAttribute("href")

Getting the text of all <span> elements inside <p> whose class are
'info':

.. code:: python

import solidscraper as ss

doc = ss.load("https://www.example.com/the/path")

# print the text of all <span> elements inside <p class="info">
print doc.select("p .info").then("span").text()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

solidscraper-0.7.4.tar.gz (13.2 kB view hashes)

Uploaded Source

Built Distribution

solidscraper-0.7.4-py2.7.egg (21.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page