1
0
mirror of synced 2025-12-20 02:23:30 -05:00
Files
airbyte/airbyte-integrations/connectors/source-python-http-tutorial/main.py
2021-09-27 10:45:50 -07:00

14 lines
283 B
Python

#
# Copyright (c) 2021 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:])