14 lines
283 B
Python
14 lines
283 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
from source_python_http_tutorial import SourcePythonHttpTutorial
|
|
|
|
if __name__ == "__main__":
|
|
source = SourcePythonHttpTutorial()
|
|
launch(source, sys.argv[1:])
|