singer-python 6.3.0__tar.gz → 6.4.0__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 (39) hide show
  1. singer_python-6.4.0/PKG-INFO +27 -0
  2. {singer-python-6.3.0 → singer_python-6.4.0}/setup.py +1 -1
  3. {singer-python-6.3.0 → singer_python-6.4.0}/singer/bookmarks.py +1 -3
  4. singer_python-6.4.0/singer_python.egg-info/PKG-INFO +27 -0
  5. singer-python-6.3.0/PKG-INFO +0 -9
  6. singer-python-6.3.0/singer_python.egg-info/PKG-INFO +0 -9
  7. {singer-python-6.3.0 → singer_python-6.4.0}/LICENSE +0 -0
  8. {singer-python-6.3.0 → singer_python-6.4.0}/README.md +0 -0
  9. {singer-python-6.3.0 → singer_python-6.4.0}/setup.cfg +0 -0
  10. {singer-python-6.3.0 → singer_python-6.4.0}/singer/__init__.py +0 -0
  11. {singer-python-6.3.0 → singer_python-6.4.0}/singer/catalog.py +0 -0
  12. {singer-python-6.3.0 → singer_python-6.4.0}/singer/exceptions.py +0 -0
  13. {singer-python-6.3.0 → singer_python-6.4.0}/singer/logger.py +0 -0
  14. {singer-python-6.3.0 → singer_python-6.4.0}/singer/logging.conf +0 -0
  15. {singer-python-6.3.0 → singer_python-6.4.0}/singer/messages.py +0 -0
  16. {singer-python-6.3.0 → singer_python-6.4.0}/singer/metadata.py +0 -0
  17. {singer-python-6.3.0 → singer_python-6.4.0}/singer/metrics.py +0 -0
  18. {singer-python-6.3.0 → singer_python-6.4.0}/singer/requests.py +0 -0
  19. {singer-python-6.3.0 → singer_python-6.4.0}/singer/schema.py +0 -0
  20. {singer-python-6.3.0 → singer_python-6.4.0}/singer/schema_generation.py +0 -0
  21. {singer-python-6.3.0 → singer_python-6.4.0}/singer/statediff.py +0 -0
  22. {singer-python-6.3.0 → singer_python-6.4.0}/singer/transform.py +0 -0
  23. {singer-python-6.3.0 → singer_python-6.4.0}/singer/utils.py +0 -0
  24. {singer-python-6.3.0 → singer_python-6.4.0}/singer_python.egg-info/SOURCES.txt +0 -0
  25. {singer-python-6.3.0 → singer_python-6.4.0}/singer_python.egg-info/dependency_links.txt +0 -0
  26. {singer-python-6.3.0 → singer_python-6.4.0}/singer_python.egg-info/requires.txt +0 -0
  27. {singer-python-6.3.0 → singer_python-6.4.0}/singer_python.egg-info/top_level.txt +0 -0
  28. {singer-python-6.3.0 → singer_python-6.4.0}/tests/__init__.py +0 -0
  29. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_bookmarks.py +0 -0
  30. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_catalog.py +0 -0
  31. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_exceptions.py +0 -0
  32. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_metadata.py +0 -0
  33. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_metrics.py +0 -0
  34. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_schema.py +0 -0
  35. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_schema_generation.py +0 -0
  36. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_singer.py +0 -0
  37. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_statediff.py +0 -0
  38. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_transform.py +0 -0
  39. {singer-python-6.3.0 → singer_python-6.4.0}/tests/test_utils.py +0 -0
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: singer-python
3
+ Version: 6.4.0
4
+ Summary: Singer.io utility library
5
+ Home-page: http://singer.io
6
+ Author: Stitch
7
+ Classifier: Programming Language :: Python :: 3 :: Only
8
+ License-File: LICENSE
9
+ Requires-Dist: pytz>=2018.4
10
+ Requires-Dist: jsonschema==2.*,>=2.6.0
11
+ Requires-Dist: simplejson==3.*,>=3.13.2
12
+ Requires-Dist: python-dateutil==2.*,>=2.7.3
13
+ Requires-Dist: backoff==2.*,>=2.2.1
14
+ Requires-Dist: ciso8601==2.*,>=2.3.1
15
+ Provides-Extra: dev
16
+ Requires-Dist: pylint; extra == "dev"
17
+ Requires-Dist: ipython; extra == "dev"
18
+ Requires-Dist: ipdb; extra == "dev"
19
+ Requires-Dist: nose; extra == "dev"
20
+ Requires-Dist: singer-tools; extra == "dev"
21
+ Dynamic: author
22
+ Dynamic: classifier
23
+ Dynamic: home-page
24
+ Dynamic: license-file
25
+ Dynamic: provides-extra
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
4
4
  import subprocess
5
5
 
6
6
  setup(name="singer-python",
7
- version='6.3.0',
7
+ version='6.4.0',
8
8
  description="Singer.io utility library",
9
9
  author="Stitch",
10
10
  classifiers=['Programming Language :: Python :: 3 :: Only'],
@@ -31,9 +31,7 @@ def set_offset(state, tap_stream_id, offset_key, offset_value):
31
31
  return state
32
32
 
33
33
  def clear_offset(state, tap_stream_id):
34
- state = ensure_bookmark_path(state, ['bookmarks', tap_stream_id, "offset"])
35
- state['bookmarks'][tap_stream_id]["offset"] = {}
36
- return state
34
+ return clear_bookmark(state, tap_stream_id, "offset")
37
35
 
38
36
  def get_offset(state, tap_stream_id, default=None):
39
37
  return state.get('bookmarks', {}).get(tap_stream_id, {}).get("offset", default)
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: singer-python
3
+ Version: 6.4.0
4
+ Summary: Singer.io utility library
5
+ Home-page: http://singer.io
6
+ Author: Stitch
7
+ Classifier: Programming Language :: Python :: 3 :: Only
8
+ License-File: LICENSE
9
+ Requires-Dist: pytz>=2018.4
10
+ Requires-Dist: jsonschema==2.*,>=2.6.0
11
+ Requires-Dist: simplejson==3.*,>=3.13.2
12
+ Requires-Dist: python-dateutil==2.*,>=2.7.3
13
+ Requires-Dist: backoff==2.*,>=2.2.1
14
+ Requires-Dist: ciso8601==2.*,>=2.3.1
15
+ Provides-Extra: dev
16
+ Requires-Dist: pylint; extra == "dev"
17
+ Requires-Dist: ipython; extra == "dev"
18
+ Requires-Dist: ipdb; extra == "dev"
19
+ Requires-Dist: nose; extra == "dev"
20
+ Requires-Dist: singer-tools; extra == "dev"
21
+ Dynamic: author
22
+ Dynamic: classifier
23
+ Dynamic: home-page
24
+ Dynamic: license-file
25
+ Dynamic: provides-extra
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
@@ -1,9 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: singer-python
3
- Version: 6.3.0
4
- Summary: Singer.io utility library
5
- Home-page: http://singer.io
6
- Author: Stitch
7
- Classifier: Programming Language :: Python :: 3 :: Only
8
- Provides-Extra: dev
9
- License-File: LICENSE
@@ -1,9 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: singer-python
3
- Version: 6.3.0
4
- Summary: Singer.io utility library
5
- Home-page: http://singer.io
6
- Author: Stitch
7
- Classifier: Programming Language :: Python :: 3 :: Only
8
- Provides-Extra: dev
9
- License-File: LICENSE
File without changes
File without changes
File without changes