1
0
mirror of synced 2026-01-19 09:07:23 -05:00
Files
airbyte/airbyte-integrations/connector-templates/source-python/main.py.hbs
Marcos Marx 10434372de Change license in connector generator base files (#6522)
* change license in generator base files

* run gradlew scaffold

* format eof

* add eof singer base

* remove license from test_* http source

* format test_incremental http source
2021-09-29 04:45:42 -03:00

14 lines
283 B
Handlebars

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_{{snakeCase name}} import Source{{properCase name}}
if __name__ == "__main__":
source = Source{{properCase name}}()
launch(source, sys.argv[1:])