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
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
Built Distribution
File details
Details for the file arackpy-0.1.0a1.tar.gz
.
File metadata
- Download URL: arackpy-0.1.0a1.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b400954dbcc21d5d0517fdd87ca58a555fefecd76057c2b5008e708543430274 |
|
MD5 | 5e3398ecdb50d2e4ecc7a6b272c3a5e8 |
|
BLAKE2b-256 | f69034d1dae35c432d4d9c0232ae9d596a4f5f19bd4e13e707e85dc9b5b42a7d |
File details
Details for the file arackpy-0.1.0a1-py2-none-any.whl
.
File metadata
- Download URL: arackpy-0.1.0a1-py2-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89fa26d64f64859a04214f6e761adc1864349851bdbf31dcbe5d481d204b0861 |
|
MD5 | d1ef5e5da30656881f239862ea2dac42 |
|
BLAKE2b-256 | c0ed5de9e81104a250f71955df5b7c1557d8b76ee58355c747f6c9b45466e83d |