commit dcbf518e27d1cc3d8867ab07aa550293d70dfaec
parent 4f15f335ff8637f77b5a9e527ffd1b741a4f0d85
Author: nikita <nikita@n0.is>
Date: Mon, 22 Jun 2020 11:58:15 +0200
name
Diffstat:
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/AUTHORS b/AUTHORS
@@ -1,3 +1,3 @@
Bader Ladjemi <bader@tele2.fr>
Christian Grothoff <christian@grothoff.org>
-Nils Gillmann <gillmann@n0.is>
-\ No newline at end of file
+Nikita Gillmann <nikita@n0.is>
+\ No newline at end of file
diff --git a/README b/README
@@ -8,20 +8,20 @@ About libextractor
such that you can quickly add extractors for additional formats, even
without recompiling libextractor. libextractor typically ships with a
dozen helper-libraries that can be used to obtain keywords from common
- file-types.
+ file-types.
libextractor is a part of the GNU project (http://www.gnu.org/).
Dependencies
============
-
+
* python >= 2.7
web site: http://www.python.org/
* libextractor >= 1.6
web site: http://www.gnu.org/software/libextractor/
- * ctypes >= 0.9
+ * ctypes >= 0.9
web site: http://starship.python.net/crew/theller/ctypes/
* setuptools (optional)
@@ -32,11 +32,11 @@ Performances
Surprisingly the original C native library is only 20% faster than
this python ctypes bindings. Here a quick and dirty bench:
-
+
The C extract on Extractor test files:
$ time `find Extractor/test -type f -not -name "*.svn*"|xargs extract`
-
+
real 0m0.403s
user 0m0.303s
sys 0m0.061s
@@ -44,7 +44,7 @@ Performances
Same data with the ctypes python bindings:
$ time `find Extractor/test -type f -not -name "*.svn*"|xargs extract.py`
-
+
real 0m0.661s
user 0m0.529s
sys 0m0.074s
@@ -60,10 +60,10 @@ Install
Copyright
=========
-
+
Copyright (C) 2006 Bader Ladjemi <bader@tele2.fr>
Copyright (C) 2011 Christian Grothoff <christian@grothoff.org>
- Copyright (C) 2017, 2018 Nils Gillmann <gillmann@n0.is>
+ Copyright (C) 2017, 2018 Nikita Gillmann <nikita@n0.is>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/setup.py b/setup.py
@@ -11,7 +11,7 @@ setup(
packages = find_packages(),
entry_points = { "console_scripts": [ "extract.py = libextractor.examples.__main__:main", ] },
- author = "Bader Ladjemi, Christian Grothoff, Nils Gillmann (ng0)",
+ author = "Bader Ladjemi, Christian Grothoff, Nikita Gillmann",
author_email = "libextractor@gnu.org",
description = "Python bindings for GNU libextractor",
license = "GNU GPLv3+",