Skip to main content

three ways for spider by python

Project description

djangospider is light web crawling framework, it have a few code, but can do high speed crawling, it support three modes to crawl: multithreading, tornado IOloop, and twisted rector.you can easily to understand to how to use async crawler.

Requirement:

Python2.7 Works on Linux

Install:

you can download the zip package in github. then unpack the zip package, find the path of setup.py, Execute the command: $sudo python setup.py install

The entry function: Start(start_urls,mode)

start_urls parameter: is a list, and it’s element is tuple:

the first of the tuple is url which you will crawl, the second of the tuple is the callback for url.

the mode parameter: the crawler’s way, it has three types:

if mode is int 1 : multithreading ways if mode is int 2 : tornado async ways if mode is int 3 : twisted async ways

For example:

from djangospider.mycrawl.run import Start ,_crawl

def callback(response,url):

print “get the %s” %url

start_urls=[(’http://github.com/’,callback),]

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

djangospider-0.11.tar.gz (61.4 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