Spidy (/spˈɪdi/) is the simple, easy to use command line web crawler.
Given a list of web links, it uses Python requests
to query the webpages, and lxml
to extract all links from the page.
Pretty simple!
Created by rivermont (/rɪvɜːrmɒnt/) and FalconWarriorr (/fælcʌnraɪjɔːr/), and developed with help from these awesome people.
Looking for technical documentation? Check out DOCS.md
Looking to contribute to this project? Have a look at CONTRIBUTING.md
, then check out the docs.
Crawl all the things! Run separate threads to work on multiple pages at the same time.
Such fast. Very wow.
Install spidy with one line: pip install spidy-web-crawler
!
Spidy has two working lists, TODO
and DONE
.
'TODO' is the list of URLs it hasn't yet visited.
'DONE' is the list of URLs it has already been to.
The crawler visits each page in TODO, scrapes the DOM of the page for links, and adds those back into TODO.
It can also save each page, because datahoarding 😜.
What sets spidy apart from other web crawling solutions written in Python?
Most of the other options out there are not web crawlers themselves, simply frameworks and libraries through which one can create and deploy a web spider for example Scrapy and BeautifulSoup. Scrapy is a Web crawling framework, written in Python, specifically created for downloading, cleaning and saving data from the web whereas BeautifulSoup is a parsing library that allows a programmer to get specific elements out of a webpage but BeautifulSoup alone is not enough because you have to actually get the webpage in the first place.
But with Spidy, everything runs right out of the box. Spidy is a Web Crawler which is easy to use and is run from the command line. You have to give it a URL link of the webpage and it starts crawling away! A very simple and effective way of fetching stuff off of the web.
We built a lot of the functionality in spidy by watching the console scroll by and going, "Hey, we should add that!"
Here are some features we figure are worth noting.
Content-Type
header returned with most files to determine the file type.saved/
directory to a .zip
file, and then clear saved/
.Spidy can be easily run in a Docker container.
Dockerfile
: docker build -t spidy .
docker images
docker run --rm -it -v $PWD:/data spidy
--rm
tells Docker to clean up after itself by removing stopped containers.-it
tells Docker to run the container interactively and allocate a pseudo-TTY.-v $PWD:/data
tells Docker to mount the current working directory as /data
directory inside the container. This is needed if you want Spidy's files (e.g. crawler_done.txt
, crawler_words.txt
, crawler_todo.txt
) written back to your host filesystem.Spidy can be found on the Python Package Index as spidy-web-crawler
.
You can install it from your package manager of choice and simple run the spidy
command.
The working files will be found in your home directory.
Alternatively, you can download the source code and run it.
The way that you will run spidy depends on the way you have Python installed.
There are many different versions of Python, and hundreds of different installations for each them.
Spidy is developed for Python v3.5.2, but should run without errors in other versions of Python 3.
We recommend the Anaconda distribution.
It comes pre-packaged with lots of goodies, including lxml
, which is required for spidy to run and not including in the standard Python package.
You can also just install default Python, and install the external libraries separately.
This can be done with pip
:
pip install -r requirements.txt
Python 3 should come preinstalled with most flavors of Linux, but if not, simply run
sudo apt update
sudo apt install python3 python3-lxml python3-requests
Then cd
into the crawler's directory and run python3 crawler.py
.
If you have git or GitHub Desktop installed, you can clone the repository from here. If not, download the latest source code or grab the latest release.
Use cd
to navigate to the directory that spidy is located in, then run:
python crawler.py
Spidy logs a lot of information to the command line throughout its life.
Once started, a bunch of [INIT]
lines will print.
These announce where spidy is in its initialization process.
On running, spidy asks for input regarding certain parameters it will run off of.
However, you can also use one of the configuration files, or even create your own.
To use spidy with a configuration file, input the name of the file when the crawler asks
The config files included with spidy are:
blank.txt
: Template for creating your own configurations.default.cfg
: The default version.heavy.cfg
: Run spidy with all of its features enabled.infinite.cfg
: The default config, but it never stops itself.light.cfg
: Disable most features; only crawls pages for links.rivermont.cfg
: My personal favorite settings.rivermont-infinite.cfg
: My favorite, never-ending configuration.Sample start log.
Sample log after hitting the autosave cap.
Sample log after performing a ^C
(CONTROL + C) to force quit the crawler.
The easiest thing you can do is Star spidy if you think it's cool, or Watch it if you would like to get updates.
If you have a suggestion, create an Issue or Fork the master
branch and open a Pull Request.
See the CONTRIBUTING.md
The logo was designed by Cutwell
3onyc - PEP8 Compliance.
DeKaN - Getting PyPI packaging to work.
esouthren - Unit testing.
Hrily - Multithreading.
j-setiawan - Paths that work on all OS's.
michellemorales - Confirmed OS/X support.
petermbenjamin - Docker support.
quatroka - Fixed testing bugs.
stevelle - Respect robots.txt.
thatguywiththatname - README link corrections.
We used the Gnu General Public License (see LICENSE
) as it was the license that best suited our needs.
Honestly, if you link to this repo and credit rivermont
and FalconWarriorr
, and you aren't selling spidy in any way, then we would love for you to distribute it.
Thanks!