Skip to main content

A multithreaded webcrawler and scraper

Project description

arackpy is a web spider used to crawl and scrape web pages. It can be helpful in the event you quickly need some data from a site without the hassle of having to sign up and go through hoops for getting access to the information you need.

Requirements

arackpy currently supports Python 2.7 and 3.6+ out of the box. Depending on the data you want to extract, future releases will require one or more of the dependencies below to be installed to support the various backends:

  • BeautifulSoup

  • Selenium

  • requests

  • stem

  • fake_useragent

Installation

For the vanilla arackpy install do a simple pip install:

pip install arackpy

The following packages may also be installed:

pip install bs4, selenium, requests, stem, fake_useragent

Quickstart

Open up your favorite python text editor and type the following:

# hello_spider.py

from __future__ import division # for python 2.7

from arackpy.spider import Spider

class HelloSpider(Spider):

“””A simple spider in just five lines of working code”””

start_urls = [”https://www.python.org”]

def parse(self, url, html):

“””Extract data from the raw html””” print(“Crawling url, %s” % url)

if __name__ == “__main__”:

print(“Press Ctrl-c to stop crawling”) spider = HelloSpider() spider.crawl()

Run the program using:

python hello_spider.py

Note

Press Ctrl-c to terminate crawling.

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

arackpy-0.1.0a1.tar.gz (10.6 kB view hashes)

Uploaded Source

Built Distribution

arackpy-0.1.0a1-py2-none-any.whl (16.1 kB view hashes)

Uploaded Python 2

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