Metadata-Version: 2.1
Name: target-typo
Version: 0.1.0
Summary: Typo is the intelligent data quality barrier for enterprise information systems. The Typo target communicates with Singer taps, and consumes data that conforms to the Singer JSON specification.
Home-page: https://www.typo.ai/
Author: Typo
License: Apache 2.0
Description: # target-typo
        
        [Singer](https://singer.io) target to load data to [Typo](https://www.typo.ai/). 
        
        ## Install
        
        Requires Python 3
        ```bash
        pip install target-typo
        ```
        
        ## Use
        target-typo takes two types of input:
        1. A stream of Singer-formatted data on stdin
        2. A config file containing:
            1. api_key - API Key created in the Typo Dashboard
            2. api_secret - API secret created in the Typo Dashboard
            3. cluster_api_endpoint - URL to your Typo cluster.  See your account details on the Typo Dashboard.
            4. repository - Name of the repository
            5. send_threshold - The batch size in number of rows to send in each import request to Typo
        
        Sample config file:
        ```json
        {
          "disable_collection": false,
          "api_key": "my_apikey",
          "api_secret": "my_apisecret",
          "cluster_api_endpoint": "https://cluster.typo.ai/management/api/v1",
          "repository": "my_repository",
          "send_threshold": 250
        }
        ```
        
        ```bash
        > TAP-some-api | target-typo -c config.json
        ```
        
        ## Development Install
        ```
        python3 -m venv .venv
        source .venv/bin/activate
        pip install -e .
        ```
        
        ## Support
        
        You may reach Typo Support at the email handle support@typo.ai or See the contact information at [https://www.typo.ai](https://www.typo.ai/)
        
        ---
        
        Copyright 2019 Typo. All Rights Reserved.
        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the
        License.
        
        You may obtain a copy of the License at
        http://www.apache.org/licenses/LICENSE-2.0
        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
        implied. See the License for the specific language governing
        permissions and limitations under the License.
        
        This product includes software developed at
        or by Typo (https://www.typo.ai/).
        
Keywords: typo.ai data quality singer target
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/markdown
