File: zipfileextractor.py

package info (click to toggle)
python-stetl 2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 90,360 kB
  • sloc: python: 5,618; xml: 707; sql: 430; makefile: 147; sh: 71
file content (12 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
# Deprecated use from module fileextractor.
#
# Author: Just van den Broecke
#

from stetl.filters.fileextractor import ZipFileExtractor as NewZipFileExtractor


def ZipFileExtractor(*args, **kwargs):
    from warnings import warn
    warn("Use the new stetl.filter.fileextractor.ZipFileExtractor!")
    return NewZipFileExtractor(*args, **kwargs)