Skip to content

singer-io/tap-mailshake

Repository files navigation

tap-mailshake

This is a Singer tap that produces JSON-formatted data following the Singer spec.

This tap:

  • Pulls raw data from the MAILSHAKE API
  • Extracts the following resources:
    • Campaigns
    • Recipients
    • Leads
    • Senders
    • Team Members
    • Activities
      • Clicks
      • Opens
      • Replies
      • Sent Messages
  • Outputs the schema for each resource
  • Incrementally pulls data based on the input state

Streams

campaigns

recipients

leads

senders

team_members

sent_messages

opens

clicks

replies

Authentication

This tap uses simple authentication as defined by the Mailshake API docs.

Quick Start

  1. Install

    Clone this repository, and then install using setup.py. We recommend using a virtualenv:

    > virtualenv -p python3 venv
    > source venv/bin/activate
    > python setup.py install
    OR
    > cd .../tap-mailshake
    > pip install .
  2. Dependent libraries The following dependent libraries were installed.

    > pip install singer-python
    > pip install singer-tools
    > pip install target-stitch
    > pip install target-json
    
  3. Create your tap's config.json file. The api_key is your Mailshake account's specific API key from the Extensions>API selection in the Mailshake UI.

    {
        "api_key": "YourApiKeyFromMailshake",
        "domain": "api.mailshake.com",
        "start_date": "2019-01-01T00:00:00Z",
        "user_agent": "tap-mailshake <api_user_email@your_company.com>"
    }

    Optionally, also create a state.json file. currently_syncing is an optional attribute used for identifying the last object to be synced in case the job is interrupted mid-stream. The next run would begin where the last job left off.

    {
        "currently_syncing": "campaigns",
        "bookmarks": {
            "campaigns": "2019-09-27T22:34:39.000000Z",
            "recipients": "2019-09-28T15:30:26.000000Z",
            "leads": "2019-09-28T18:23:53Z",
            "senders": "2019-09-27T22:40:30.000000Z"
        }
    }
  4. Run the Tap in Discovery Mode This creates a catalog.json for selecting objects/fields to integrate:

    tap-mailshake --config config.json --discover > catalog.json

    See the Singer docs on discovery mode here.

  5. Run the Tap in Sync Mode (with catalog) and write out to state file

    For Sync mode:

    > tap-mailshake --config tap_config.json --catalog catalog.json > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json

    To load to json files to verify outputs:

    > tap-mailshake --config tap_config.json --catalog catalog.json | target-json > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json

    To pseudo-load to Stitch Import API with dry run:

    > tap-mailshake --config tap_config.json --catalog catalog.json | target-stitch --config target_config.json --dry-run > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json
  6. Test the Tap

    While developing the mailshake tap, the following utilities were run in accordance with Singer.io best practices: Pylint to improve code quality:

    > pylint tap_mailshake -d missing-docstring -d logging-format-interpolation -d too-many-locals -d too-many-arguments

    Pylint test resulted in the following score:

    ************* Module tap_mailshake.sync
    tap_mailshake/sync.py:153:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
    tap_mailshake/sync.py:113:0: R0915: Too many statements (69/50) (too-many-statements)
    
    ------------------------------------------------------------------
    Your code has been rated at 9.95/10 (previous run: 9.95/10, +0.00)

    To check the tap and verify working:

    > tap-mailshake --config tap_config.json --catalog catalog.json | singer-check-tap > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json

    Check tap resulted in the following:

    Checking stdin for valid Singer-formatted data
    The output is valid.
    It contained 33101 messages for 9 streams.
    
         11 schema messages
      33066 record messages
         24 state messages
    
    Details by stream:
    +---------------+---------+---------+
    | stream        | records | schemas |
    +---------------+---------+---------+
    | clicks        | 1341    | 1       |
    | team_members  | 7       | 1       |
    | senders       | 5       | 1       |
    | recipients    | 6203    | 3       |
    | campaigns     | 31      | 1       |
    | opens         | 13642   | 1       |
    | leads         | 812     | 1       |
    | sent_messages | 9207    | 1       |
    | replies       | 1818    | 1       |
    +---------------+---------+---------+

Copyright © 2020 Stitch

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages