Esempio n. 1
0
def test_client_wrong_credentials():
    source = SourceMailchimp()
    status, error = source.check_connection(logger=AirbyteLogger,
                                            config={
                                                "username": "******",
                                                "apikey": "blah-blah"
                                            })
    assert not status
Esempio n. 2
0
#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#


import sys

from airbyte_cdk.entrypoint import launch
from source_mailchimp import SourceMailchimp

if __name__ == "__main__":
    source = SourceMailchimp()
    launch(source, sys.argv[1:])