run.py
1 # 2 # Copyright (c) 2023 Airbyte, Inc., all rights reserved. 3 # 4 5 6 import sys 7 8 from airbyte_cdk.entrypoint import launch 9 from .source import SourceTwitterFetcher 10 11 def run(): 12 source = SourceTwitterFetcher() 13 launch(source, sys.argv[1:])