mirror of https://github.com/CIRCL/PyCIRCLean
Rename bin/ to filecheck/
parent
058a446d78
commit
7b275c7e6f
|
@ -79,7 +79,7 @@ install:
|
|||
# - popd
|
||||
|
||||
script:
|
||||
- travis_wait py.test --cov=kittengroomer --cov=bin tests/
|
||||
- travis_wait py.test --cov=kittengroomer --cov=filecheck tests/
|
||||
|
||||
notifications:
|
||||
email:
|
||||
|
|
|
@ -7,8 +7,8 @@ PyCIRCLean is the core Python code used by [CIRCLean](https://github.com/CIRCL/C
|
|||
USB key and document sanitizer created by [CIRCL](https://www.circl.lu/). This module has been separated from the
|
||||
device-specific scripts and can be used for dedicated security applications to sanitize documents from hostile environments
|
||||
to trusted environments. PyCIRCLean is currently Python 3.3+ compatible. Also, while [kittengroomer](./kittengroomer) can
|
||||
run on any platform supported by python-magic/libmagic, [filecheck.py](./bin/filecheck.py) has some dependencies that are
|
||||
Linux-only, and running the full test suite will require access to a Linux box or VM.
|
||||
run on any platform supported by python-magic/libmagic, [filecheck.py](./filecheck/filecheck.py) has some dependencies that
|
||||
are Linux-only, and running the full test suite will require access to a Linux box or VM.
|
||||
|
||||
# Installation
|
||||
|
||||
|
@ -30,7 +30,7 @@ and sanitization workflows in different organizations such as industrial
|
|||
environments or restricted/classified ICT environments. A series of practical examples utilizing PyCIRCLean can be found
|
||||
in the [./examples](./examples) directory. Note: for commits beyond version 2.2.0 these
|
||||
examples are out of date and not guaranteed to work with the PyCIRCLean API. Please check [helpers.py](./kittengroomer/
|
||||
helpers.py) or [filecheck.py](./bin/filecheck.py) to see the new API interface.
|
||||
helpers.py) or [filecheck.py](./filecheck/filecheck.py) to see the new API interface.
|
||||
|
||||
The following simple example using PyCIRCLean will only copy files with a .conf extension matching the 'text/plain'
|
||||
mimetype. If any other file is found in the source directory, the files won't be copied to the destination directory.
|
||||
|
|
|
@ -17,7 +17,7 @@ from PIL import Image
|
|||
from pdfid import PDFiD, cPDFiD
|
||||
|
||||
from kittengroomer import FileBase, KittenGroomerBase, Logging
|
||||
from bin.config import Config
|
||||
from filecheck.config import Config
|
||||
|
||||
|
||||
SEVENZ_PATH = '/usr/bin/7z'
|
|
@ -1,6 +1,6 @@
|
|||
import sys
|
||||
|
||||
from bin.filecheck import File
|
||||
from filecheck.filecheck import File
|
||||
|
||||
|
||||
PATH = 'tests/dangerous/bypass.docx'
|
||||
|
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ setup(
|
|||
description='Standalone CIRCLean/KittenGroomer code.',
|
||||
packages=['kittengroomer'],
|
||||
scripts=[
|
||||
'bin/filecheck.py'
|
||||
'filecheck/filecheck.py'
|
||||
],
|
||||
classifiers=[
|
||||
'License :: OSI Approved :: BSD License',
|
||||
|
|
|
@ -7,7 +7,7 @@ import pytest
|
|||
import yaml
|
||||
|
||||
try:
|
||||
from bin.filecheck import KittenGroomerFileCheck, File
|
||||
from filecheck.filecheck import KittenGroomerFileCheck, File
|
||||
NODEPS = False
|
||||
except ImportError:
|
||||
NODEPS = True
|
||||
|
|
|
@ -7,7 +7,7 @@ from datetime import datetime
|
|||
import pytest
|
||||
|
||||
try:
|
||||
from bin.filecheck import KittenGroomerFileCheck
|
||||
from filecheck.filecheck import KittenGroomerFileCheck
|
||||
NODEPS = False
|
||||
except ImportError:
|
||||
NODEPS = True
|
||||
|
|
Loading…
Reference in New Issue