Skip to main content

xpath/css based scraper with pagination

Project description

A simple html scraper with xpath or css.

Install

pip install hodorlive

Usage

As python package

*WARNING: This package by default doesn’t verify ssl connections. Please check the `arguments <#arguments>`__ to enable them.*

from hodor import Hodor

url = 'http://www.nasdaq.com/markets/stocks/symbol-change-history.aspx'

CONFIG = {
    'old_symbol': {
        'css': '#SymbolChangeList_table tr td:nth-child(1)',
        'many': True
    },
    'new_symbol': {
        'css': '#SymbolChangeList_table tr td:nth-child(2)',
        'many': True
    },
    'effective_date': {
        'css': '#SymbolChangeList_table tr td:nth-child(3)',
        'many': True
    },
    '_groups': {
        'data': ['old_symbol', 'new_symbol', 'effective_date']
    },
    '_paginate_by': {
        'xpath': '//*[@id="two_column_main_content_lb_NextPage"]/@href',
        'many': False
    }
}

h = Hodor(url=url, config=CONFIG, pagination_max_limit=5)

h.data

Arguments

  • ua (User-Agent)

  • proxies (check requesocks)

  • auth

  • crawl_delay (crawl delay in seconds across pagination - default: 3 seconds)

  • pagination_max_limit (max number of pages to crawl - default: 100)

  • ssl_verify (default: False)

  • robots (if set respects robots.txt - default: True)

  • trim_values (if set trims output for leading and trailing whitespace - default: True)

Config parameters:

  • By default any key in the config is a rule to parse.

  • Extra parameters include grouping (_groups) and pagination (_paginate_by) which is also of the rule format.

As tornado service

Server

docker-compose up

Client

curl -X POST -F "url=https://www.compile.com/" -F "config={\"src\": {\"css\": \"strong\", \"many\":false}, \"width\": {\"xpath\": \"/html/body/div[1]/nav/div/div[1]/a/img/@width\", \"many\":false}}" "http://localhost:8888"

Result

{'src': '/img/compile-logo-white.1002b288.svg', 'width': ['100px']}

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

hodorlive-1.1.tar.gz (4.1 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