singer-python 5.12.2__tar.gz → 5.13.1__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.
- singer_python-5.13.1/PKG-INFO +20 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/setup.cfg +1 -1
- {singer-python-5.12.2 → singer_python-5.13.1}/setup.py +1 -1
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/utils.py +6 -0
- singer_python-5.13.1/singer_python.egg-info/PKG-INFO +20 -0
- singer-python-5.12.2/PKG-INFO +0 -11
- singer-python-5.12.2/singer_python.egg-info/PKG-INFO +0 -11
- {singer-python-5.12.2 → singer_python-5.13.1}/LICENSE +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/README.md +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/__init__.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/bookmarks.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/catalog.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/exceptions.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/logger.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/logging.conf +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/messages.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/metadata.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/metrics.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/requests.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/schema.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/statediff.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer/transform.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/SOURCES.txt +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/dependency_links.txt +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/requires.txt +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/top_level.txt +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/__init__.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_bookmarks.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_catalog.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_exceptions.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_metadata.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_metrics.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_schema.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_singer.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_statediff.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_transform.py +0 -0
- {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_utils.py +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: singer-python
|
|
3
|
+
Version: 5.13.1
|
|
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.6.0
|
|
11
|
+
Requires-Dist: simplejson==3.11.1
|
|
12
|
+
Requires-Dist: python-dateutil>=2.6.0
|
|
13
|
+
Requires-Dist: backoff==1.8.0
|
|
14
|
+
Requires-Dist: ciso8601
|
|
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"
|
|
@@ -134,6 +134,7 @@ def parse_args(required_config_keys):
|
|
|
134
134
|
-d,--discover Run in discover mode
|
|
135
135
|
-p,--properties Properties file: DEPRECATED, please use --catalog instead
|
|
136
136
|
--catalog Catalog file
|
|
137
|
+
--dev Runs the tap in dev mode
|
|
137
138
|
|
|
138
139
|
Returns the parsed args object from argparse. For each argument that
|
|
139
140
|
point to JSON files (config, state, properties), we will automatically
|
|
@@ -163,6 +164,11 @@ def parse_args(required_config_keys):
|
|
|
163
164
|
action='store_true',
|
|
164
165
|
help='Do schema discovery')
|
|
165
166
|
|
|
167
|
+
parser.add_argument(
|
|
168
|
+
'--dev',
|
|
169
|
+
action='store_true',
|
|
170
|
+
help='Runs tap in dev mode')
|
|
171
|
+
|
|
166
172
|
args = parser.parse_args()
|
|
167
173
|
if args.config:
|
|
168
174
|
setattr(args, 'config_path', args.config)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: singer-python
|
|
3
|
+
Version: 5.13.1
|
|
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.6.0
|
|
11
|
+
Requires-Dist: simplejson==3.11.1
|
|
12
|
+
Requires-Dist: python-dateutil>=2.6.0
|
|
13
|
+
Requires-Dist: backoff==1.8.0
|
|
14
|
+
Requires-Dist: ciso8601
|
|
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"
|
singer-python-5.12.2/PKG-INFO
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: singer-python
|
|
3
|
-
Version: 5.12.2
|
|
4
|
-
Summary: Singer.io utility library
|
|
5
|
-
Home-page: http://singer.io
|
|
6
|
-
Author: Stitch
|
|
7
|
-
License: UNKNOWN
|
|
8
|
-
Description: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
10
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
-
Provides-Extra: dev
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: singer-python
|
|
3
|
-
Version: 5.12.2
|
|
4
|
-
Summary: Singer.io utility library
|
|
5
|
-
Home-page: http://singer.io
|
|
6
|
-
Author: Stitch
|
|
7
|
-
License: UNKNOWN
|
|
8
|
-
Description: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
10
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
-
Provides-Extra: dev
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|