setlr 1.0.2__tar.gz → 1.0.3__tar.gz
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.
- {setlr-1.0.2 → setlr-1.0.3}/PKG-INFO +1 -1
- {setlr-1.0.2 → setlr-1.0.3}/pyproject.toml +1 -1
- {setlr-1.0.2 → setlr-1.0.3}/setlr/__init__.py +4 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/PKG-INFO +1 -1
- {setlr-1.0.2 → setlr-1.0.3}/setup.py +1 -1
- {setlr-1.0.2 → setlr-1.0.3}/CHANGELOG.md +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/LICENSE +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/MANIFEST.in +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/MIGRATION.md +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/README.md +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/ontology.csv +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/ontology.setl.ttl +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/ontology.ttl +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/social-naive.setl.ttl +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/social-naive.ttl +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/social.csv +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/social.setl.ttl +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/example/social.ttl +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr/core.py +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr/iterparse_filter.py +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr/trig_store.py +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/SOURCES.txt +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/dependency_links.txt +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/entry_points.txt +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/requires.txt +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/top_level.txt +0 -0
- {setlr-1.0.2 → setlr-1.0.3}/setup.cfg +0 -0
|
@@ -20,6 +20,8 @@ from .core import (
|
|
|
20
20
|
main,
|
|
21
21
|
|
|
22
22
|
# Utility functions that might be used by library users
|
|
23
|
+
FileLikeFromIter,
|
|
24
|
+
content_handlers,
|
|
23
25
|
read_csv,
|
|
24
26
|
read_excel,
|
|
25
27
|
read_json,
|
|
@@ -61,6 +63,8 @@ __all__ = [
|
|
|
61
63
|
'main',
|
|
62
64
|
# Include commonly used utilities
|
|
63
65
|
'logger',
|
|
66
|
+
'FileLikeFromIter',
|
|
67
|
+
'content_handlers',
|
|
64
68
|
'read_csv',
|
|
65
69
|
'read_excel',
|
|
66
70
|
'read_json',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|