mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-25 15:20:42 -04:00
in warcprox 2.0b2, captures table field has been renamed to "record_length"
This commit is contained in:
parent
55c9ae07b7
commit
9567c088c8
2 changed files with 3 additions and 3 deletions
|
@ -65,7 +65,7 @@ class RethinkCDXSource(pywb.cdx.cdxsource.CDXSource):
|
||||||
'url': record['url'],
|
'url': record['url'],
|
||||||
'status': str(record['response_code']),
|
'status': str(record['response_code']),
|
||||||
'digest': record['sha1base32'],
|
'digest': record['sha1base32'],
|
||||||
'length': str(record['length']), # XXX is this the right length?
|
'length': str(record['record_length']),
|
||||||
'offset': str(record['offset']),
|
'offset': str(record['offset']),
|
||||||
'filename': record['filename'],
|
'filename': record['filename'],
|
||||||
}
|
}
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -32,7 +32,7 @@ def find_package_data(package):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.1b8.dev128',
|
version='1.1b8.dev129',
|
||||||
description='Distributed web crawling with browsers',
|
description='Distributed web crawling with browsers',
|
||||||
url='https://github.com/internetarchive/brozzler',
|
url='https://github.com/internetarchive/brozzler',
|
||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
|
@ -71,7 +71,7 @@ setuptools.setup(
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'dashboard': ['flask>=0.11', 'gunicorn'],
|
'dashboard': ['flask>=0.11', 'gunicorn'],
|
||||||
'easy': ['warcprox>=2.0b1', 'pywb', 'flask>=0.11', 'gunicorn'],
|
'easy': ['warcprox>=2.0b2', 'pywb', 'flask>=0.11', 'gunicorn'],
|
||||||
},
|
},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue