A toolkit for extracting posts and post metadata from web forums
Project description
Harvest - A toolkit for extracting posts and post metadata from web forums
Automatic extraction of forum posts and metadata is a challenging task since forums do not expose their content in a standardized structure. Harvest performs this task reliably for many web forums and offers an easy way to extract data from web forums.
Installation
At the command line:
$ pip install harvest-webforum
If you want to install from the latest sources, you can do:
$ git clone https://github.com/fhgr/harvest.git
$ cd harvest
$ python3 setup.py install
Python library
Embedding harvest into your code is easy, as outlined below:
from urllib.request import urlopen, Request
from harvest import extract_data
USER_AGENT = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:70.0) Gecko/20100101 Firefox/70.0"
url = "https://forum.videolan.org/viewtopic.php?f=14&t=145604"
req = Request(url, headers={'User-Agent': USER_AGENT})
html = urlopen(req).read().decode('utf-8')
result = extract_data(html, url)
print(result)
WEB-FORUM-52 gold standard
The corpus currently contains from 52 different web forums gold standard documents. These documents are also used by the integrations test of harvest.
Publication
- Weichselbraun, Albert, Brasoveanu, Adrian M. P., Waldvogel, Roger and Odoni, Fabian. (2020). “Harvest - An Open Source Toolkit for Extracting Posts and Post Metadata from Web Forums”. IEEE/WIC/ACM International Joint Conference on Web Intelligence and Intelligent Agent Technology (WI-IAT 2020), Melbourne, Australia, Accepted 27 October 2020.
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 harvest-webforum-1.1.0.tar.gz
.
File metadata
- Download URL: harvest-webforum-1.1.0.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b31202776b515abc739e179c4b515f46d47b74b40ba1251510d32e89e8351b40 |
|
MD5 | be6401cdae92ab8dd24b1c73e6fed810 |
|
BLAKE2b-256 | df9d419fae66ea2381646b465ae76bff96d579fe8af8ebb342803c379ef606b2 |
File details
Details for the file harvest_webforum-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: harvest_webforum-1.1.0-py3-none-any.whl
- Upload date:
- Size: 26.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e69562cfd7baaedff1d297cd182704a12a67947f88578faf951516196050d9d |
|
MD5 | 19921b0b9e6f2a2fcba3ae2ab057979c |
|
BLAKE2b-256 | daa784f0d52101417a531ed39e4d7db898a355fed55095e832849d83aa32ce8b |