tests.system.google.cloud.gcs.example_http_to_gcs¶
Example Airflow DAG for HTTP to Google Cloud Storage transfer operators.
Attributes¶
Module Contents¶
- tests.system.google.cloud.gcs.example_http_to_gcs.BUCKET_NAME = 'bucket-example_http_to_gcs-Uninferable'[source]¶
- tests.system.google.cloud.gcs.example_http_to_gcs.cmd = Multiline-String[source]¶
Show Value
""" #!/bin/bash echo 'foo' > /tmp/test_file cd /tmp nohup python3 -m http.server 8083 > /dev/null 2>&1 & echo $! sleep 2 exit 0 """