1
0
mirror of synced 2025-12-20 18:39:31 -05:00
Files
airbyte/airbyte-integrations/connectors/source-python-http-tutorial/main.py
Marcos Marx dca2256a7c Bump 2022 license version (#13233)
* Bump year in license short to 2022

* remove protocol from cdk
2022-05-26 15:00:42 -03:00

14 lines
283 B
Python

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