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.
Files changed (27) hide show
  1. {setlr-1.0.2 → setlr-1.0.3}/PKG-INFO +1 -1
  2. {setlr-1.0.2 → setlr-1.0.3}/pyproject.toml +1 -1
  3. {setlr-1.0.2 → setlr-1.0.3}/setlr/__init__.py +4 -0
  4. {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/PKG-INFO +1 -1
  5. {setlr-1.0.2 → setlr-1.0.3}/setup.py +1 -1
  6. {setlr-1.0.2 → setlr-1.0.3}/CHANGELOG.md +0 -0
  7. {setlr-1.0.2 → setlr-1.0.3}/LICENSE +0 -0
  8. {setlr-1.0.2 → setlr-1.0.3}/MANIFEST.in +0 -0
  9. {setlr-1.0.2 → setlr-1.0.3}/MIGRATION.md +0 -0
  10. {setlr-1.0.2 → setlr-1.0.3}/README.md +0 -0
  11. {setlr-1.0.2 → setlr-1.0.3}/example/ontology.csv +0 -0
  12. {setlr-1.0.2 → setlr-1.0.3}/example/ontology.setl.ttl +0 -0
  13. {setlr-1.0.2 → setlr-1.0.3}/example/ontology.ttl +0 -0
  14. {setlr-1.0.2 → setlr-1.0.3}/example/social-naive.setl.ttl +0 -0
  15. {setlr-1.0.2 → setlr-1.0.3}/example/social-naive.ttl +0 -0
  16. {setlr-1.0.2 → setlr-1.0.3}/example/social.csv +0 -0
  17. {setlr-1.0.2 → setlr-1.0.3}/example/social.setl.ttl +0 -0
  18. {setlr-1.0.2 → setlr-1.0.3}/example/social.ttl +0 -0
  19. {setlr-1.0.2 → setlr-1.0.3}/setlr/core.py +0 -0
  20. {setlr-1.0.2 → setlr-1.0.3}/setlr/iterparse_filter.py +0 -0
  21. {setlr-1.0.2 → setlr-1.0.3}/setlr/trig_store.py +0 -0
  22. {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/SOURCES.txt +0 -0
  23. {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/dependency_links.txt +0 -0
  24. {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/entry_points.txt +0 -0
  25. {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/requires.txt +0 -0
  26. {setlr-1.0.2 → setlr-1.0.3}/setlr.egg-info/top_level.txt +0 -0
  27. {setlr-1.0.2 → setlr-1.0.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setlr
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: setlr is a tool for Semantic Extraction, Transformation, and Loading.
5
5
  Author-email: Jamie McCusker <mccusj@cs.rpi.edu>
6
6
  Project-URL: Homepage, http://packages.python.org/setlr
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "setlr"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  description = "setlr is a tool for Semantic Extraction, Transformation, and Loading."
9
9
  readme = "README.md"
10
10
  authors = [
@@ -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',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setlr
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: setlr is a tool for Semantic Extraction, Transformation, and Loading.
5
5
  Author-email: Jamie McCusker <mccusj@cs.rpi.edu>
6
6
  Project-URL: Homepage, http://packages.python.org/setlr
@@ -1,7 +1,7 @@
1
1
  from setuptools import setup
2
2
  from sys import argv
3
3
 
4
- __version__='1.0.2'
4
+ __version__='1.0.3'
5
5
 
6
6
  if '--version' in argv:
7
7
  print(__version__)
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