Python library to work with ARC and WARC files, with fixes for ClueWeb09
Project description
Note: This is a fork of the original (now dead) warc repository.
Updated to handle problems with the ClueWeb09 files.
Changes are based on this repository (which only supports python2)
WARC (Web ARChive) is a file format for storing web crawls.
This warc library makes it very easy to work with WARC files.:
import warc with warc.open("test.warc") as f: for record in f: print(record['WARC-Target-URI'], record['Content-Length'])
And WET files.:
import warc with warc.open("test.warc.wet") as f: for record in f: print(record['WARC-Target-URI'], record['Content-Length'])
Documentation
The documentation of the warc library is available at http://warc.readthedocs.org/.
Apart from the install from pip, which will not work for this warc3 version, the interface as described there is unchanged.
License
This software is licensed under GPL v2. See LICENSE file for details.
Change Log
0.2.5 replace utf8 errors in headers
0.2.4 support ClueWeb09
0.2.3 Support seeking in WARC/WET
0.2.2 Allow WET parse
older… see https://github.com/internetarchive/warc
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
Hashes for warc3-wet-clueweb09-0.2.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3054bfc07da525d5967df8ca3175f78fa3f78514c82643f8c81fbca96300b836 |
|
MD5 | f3d9fb0ed6590d008ddfc241ac62af26 |
|
BLAKE2b-256 | 9fc1dd817bf57e0274dacb10e0ac868cb6cd70876950cf361c41879c030a2b8b |