dsff 1.0.6__py3-none-any.whl → 1.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dsff/VERSION.txt +1 -1
- dsff/__info__.py +7 -2
- dsff/__init__.py +4 -292
- dsff/formats/__common__.py +33 -0
- dsff/formats/__init__.py +346 -0
- dsff/{arff.py → formats/arff.py} +51 -55
- dsff/{csv.py → formats/csv.py} +5 -11
- dsff/{dataset.py → formats/dataset.py} +4 -12
- dsff/formats/db.py +76 -0
- dsff/formats/pa.py +29 -0
- {dsff-1.0.6.dist-info → dsff-1.2.0.dist-info}/METADATA +9 -9
- dsff-1.2.0.dist-info/RECORD +15 -0
- {dsff-1.0.6.dist-info → dsff-1.2.0.dist-info}/WHEEL +1 -1
- {dsff-1.0.6.dist-info → dsff-1.2.0.dist-info/licenses}/LICENSE +674 -674
- dsff/__common__.py +0 -20
- dsff-1.0.6.dist-info/RECORD +0 -12
- {dsff-1.0.6.dist-info → dsff-1.2.0.dist-info}/top_level.txt +0 -0
dsff/__common__.py
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# -*- coding: UTF-8 -*-
|
|
2
|
-
import csv as csvmod
|
|
3
|
-
import json
|
|
4
|
-
import re
|
|
5
|
-
from io import StringIO
|
|
6
|
-
from os import makedirs, remove
|
|
7
|
-
from os.path import basename, expanduser, isfile, isdir, join, splitext
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
__all__ = ["basename", "csvmod", "expanduser", "isfile", "isdir", "join", "json", "makedirs", "remove", "splitext",
|
|
11
|
-
"re", "StringIO", "CSV_DELIMITER", "DEFAULT_EXCL", "INMEMORY", "META_EXCL", "MISSING_TOKEN", "TARGET_NAME"]
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
CSV_DELIMITER = ";"
|
|
15
|
-
DEFAULT_EXCL = ("hash", "realpath", "format", "size", "ctime", "mtime") # origin: executables used in the Packing Box
|
|
16
|
-
INMEMORY = "<memory>"
|
|
17
|
-
META_EXCL = ["created", "modified", "revision"]
|
|
18
|
-
MISSING_TOKEN = "?"
|
|
19
|
-
TARGET_NAME = "label"
|
|
20
|
-
|
dsff-1.0.6.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
dsff/VERSION.txt,sha256=UcGNyGlIYb60emeJTmEESGQhRDU4n206J0cE2VZv-Ww,6
|
|
2
|
-
dsff/__common__.py,sha256=i6s7csIkrOQW2l3UiVhvDF6QoCKnRwkzpsvg3tOLMJ4,698
|
|
3
|
-
dsff/__info__.py,sha256=NbTFE4hnWsbEXirkhIn-QpdNZe-m_8Qy_VpZjUUGEZE,325
|
|
4
|
-
dsff/__init__.py,sha256=ChcWhw1SPX0eY8X4Xst4CFGIqhiBITHVGw46ZvQ_zdU,11626
|
|
5
|
-
dsff/arff.py,sha256=0Mtk_IgKfD6Fg4qTaVSKT3cvNJEn2yO9LbmrsbJUqSA,7097
|
|
6
|
-
dsff/csv.py,sha256=kCePo4H6PurZR0eYfznBCONTk3ZxfKMnRvy6s6z9A-c,1122
|
|
7
|
-
dsff/dataset.py,sha256=WGIqtdQaSIZerDKkXwQzXCI_hlIVRlPAwwTWUwMjAAs,1692
|
|
8
|
-
dsff-1.0.6.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
9
|
-
dsff-1.0.6.dist-info/METADATA,sha256=dQnLVxSK1lK7vq1Ps8rVgUpR7IBdVhqRlqAwS5hXm0o,46122
|
|
10
|
-
dsff-1.0.6.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
11
|
-
dsff-1.0.6.dist-info/top_level.txt,sha256=bmP8yHsEIiNYtYRJGnUl7TDsrLG_zb5g0-AVpVjKssI,5
|
|
12
|
-
dsff-1.0.6.dist-info/RECORD,,
|
|
File without changes
|