GUI+CLI+Library webscraper built specifically for iGEM team wiki pages
Project description
igem-wikiscraper
A quick-and-dirty Python CLI tool for scraping iGEM wikis. Can be used to pull out any relevant HTML-based information. Note that this tool will not function on, for example, lab manuals involving PDFs, pages that dynamically load in content on user interaction or page scroll, or pages that redirect to other websites (not that this is allowed by iGEM).
Use
This tool currently only functions with Python3. Python2 compatibility is on the backburner. Any instructions assume you have Python3 installed and on PATH.
- Install via
pip
- Create a new folder to hold all your information and scrapes. Add
data
andoutput
subdirectories - Copy
config.json
from here into this new folder - Retrieve data from http://igem.org/Team_List.
- Modify
config.json
as you see fit. Descriptions of config options are available below. - Use either
wikiscraper
orwikiscraper-gui
. See below.
GUI
A GUI tool is available. This tool can either be found on the releases page, and can be downloaded as a Windows executable, or can be accessed via wikiscraper-gui
once installed with pip install igemwikiscraper
. Steps 1-5 above should be followed before using this GUI.
Terminal
These commands should work for Ubuntu. For Windows or any
pip3 install igemwikiscraper
mkdir igem-scrapes
cd igem-scrapes
wget https://github.com/Virginia-iGEM/igem-wikiscraper/blob/master/igemwikiscraper/config.json
nano config.json # modify as needed
mkdir {data,output}
cd data
wget https://raw.githubusercontent.com/Virginia-iGEM/igem-wikiscraper/master/data/2018__team_list__2018-07-02.csv
cd ..
wikiscraper data/2018__team_list__2018-07-02.csv
Output file can be found under output/
or as configured.
Brief Description of Tool Function
The tool retrieves raw HTML from URLs generated from a list of team names and years. This raw HTML is then passed through BeautifulSoup, a combination HTML Parser and HTML Selector built specifically for webscraping.
Specific HTML tags are removed in preprocessing (such as script and style tags, which we don't need), then a set of tags is selected with an emulated JQuery selector (with the htmlselector
option). This set of tags is then "strained" by their content, removing entries that are too short, do not contain sentences, and which contain any JavaScript or CSS motifs.
All of the children of selected tags are then unwrapped, discarding their attributes and keeping only their content in (what I believe is) a pre-ordered tree traversal.
This process occurs for each page specified by subpages
, leaving us with a list of lists of strings for each team. This 2d list is flattened to 1d by joining the sublists with newlines, before being appended to team information and written out as one row in a .csv file specified by outputfile
. This is repeated for each team in the teamlist, building up a list of team information paired with useful scraped data.
Configuration
Note: Some of these options can be set when using the CLI. Enter wikiscraper -h
for a list of options which can be set through the CLI. This is convenient for options like -vv
which you may not want to see on every scrape attempt.
- data: Options for what kind of data we take in and look for
- subpages: Which pages on the wiki to look at.
""
denotes the index. Note that each page is lead with a forward slash; every page must be lead with a forward slash. Examples:/Team
,/Safety
- filedelimiter: What kind of csv delimiter is the team name list using? The iGEM Team List page seems to generate CSV's with comma delimiters.
- start: Which team in the list to start with. Set to negative to remove limit.
- end: Which team in the list to end with. Set to negative to remove limit.
- subpages: Which pages on the wiki to look at.
- scraper: Options for how the scraper filters and interprets data
- htmlselector: JQuery-style selector for html elements.
#content
seems to include all hand-written team info without including any extra junk. Upon inspecting many iGEM wikis, we found all content should be wrapped in#mw-content-text
, but because there are so many (about 10% of) iGEM wikis with broken HTML, mostly in the form of unpaired HTML tags, we have to be a bit generous with our selectors. - gracetime: Number of seconds to wait between HTML GET requests. Strongly reccommend this to be kept at 1 or above; any lower is considered impolite by web scraping standards, may break the iGEM Wiki, and may be considered a crime (a Denial of Service Attack, albeit a poor one).
- stripwhitespace: Removes leading and trailing whitespace. Cleans up output a little.
- collapsenewlines: Removes strings of newlines in retrieved strings
- excisescripts: Removes any script tags when preprocessing HTML
- excisestyles: Removes any style tags when preprocessing HTML
- use: Enables/disables filters listed below.
- space_count: Filters strings by the number of spaces they contain. If a string has less than this number of spaces, it will be excluded.
- period_count: Filters string by number of periods contained. If a string has less than this number of periods, it will be excluded.
- negative_regex: Regex with double-escaped backslashes. If a string matches this regex, it will be excluded.
- htmlselector: JQuery-style selector for html elements.
- output: Options for the output file
- outputfile: Path to the file we output our results to.
- filedelimiter: Delimits columns in the output .csv file. Default is a vertical pipe,
|
, useful for plain HTML content. - filequotechar: Used to encapsulate escaped strings in .csv files. Doublequotes
"
are fairly standard. - verbose: Set to
0
to print progress reports only. Set to1
to print useful information above each wiki page scraped. Set to2
to print all content scraped.
Todo
- Expand collapsenewlines option to also collapse strings of newlines and tabs into just one newline
- Make it so that options under
scraper.use
actually enable/disable the filter - Replace
excisescripts
andexcisestyles
flags with an HTML selector that excises arbitrary HTML elements - Either enable output to multiple files or ensure multiple inputs lead to a sane single output
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 igemwikiscraper-0.5.0.tar.gz
.
File metadata
- Download URL: igemwikiscraper-0.5.0.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eeaed44cbedb263a9ba4a61d4b35574cab8de5066aab8327db5aa0c92f1cc54d |
|
MD5 | 2f6fc17724a0234d44d63d66229336c1 |
|
BLAKE2b-256 | 918f157908dc7313de8d236c67ab2998c9a0c0e8bae53b8e20ecc67f649461cd |
File details
Details for the file igemwikiscraper-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: igemwikiscraper-0.5.0-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5967d7cac093fb35a9e570ea9c826bd33725ca16a4c50ac3fb9bd9f4b6893f6 |
|
MD5 | d18a9b2d57c503baa6f30dd6c1e6cf0f |
|
BLAKE2b-256 | c71beb9ed2006e10ed8796f3499e7ae2e59528acf111650239e010924a7668bd |