Integration¶
Azure: Microsoft Azure¶
Airflow has limited support for Microsoft Azure: interfaces exist only for Azure Blob Storage. Note that the Hook, Sensor and Operator are in the contrib section.
Azure Blob Storage¶
All classes communicate via the Window Azure Storage Blob protocol. Make sure that a Airflow connection of type wasb exists. Authorization can be done by supplying a login (=Storage account name) and password (=KEY), or login and SAS token in the extra field (see connection wasb_default for an example).
- WasbBlobSensor: Checks if a blob is present on Azure Blob storage.
- WasbPrefixSensor: Checks if blobs matching a prefix are present on Azure Blob storage.
- FileToWasbOperator: Uploads a local file to a container as a blob.
- WasbHook: Interface with Azure Blob Storage.
WasbBlobSensor¶
WasbPrefixSensor¶
FileToWasbOperator¶
WasbHook¶
AWS: Amazon Webservices¶
—
Databricks¶
Databricks has contributed an Airflow operator which enables
submitting runs to the Databricks platform. Internally the operator talks to the
api/2.0/jobs/runs/submit endpoint.
DatabricksSubmitRunOperator¶
-
class
airflow.contrib.operators.databricks_operator.DatabricksSubmitRunOperator(json=None, spark_jar_task=None, notebook_task=None, new_cluster=None, existing_cluster_id=None, libraries=None, run_name=None, timeout_seconds=None, databricks_conn_id=’databricks_default’, polling_period_seconds=30, databricks_retry_limit=3, **kwargs)[source]¶ Submits an Spark job run to Databricks using the api/2.0/jobs/runs/submit API endpoint.
There are two ways to instantiate this operator.
In the first way, you can take the JSON payload that you typically use to call the
api/2.0/jobs/runs/submitendpoint and pass it directly to ourDatabricksSubmitRunOperatorthrough thejsonparameter. For examplejson = { 'new_cluster': { 'spark_version': '2.1.0-db3-scala2.11', 'num_workers': 2 }, 'notebook_task': { 'notebook_path': '/Users/airflow@example.com/PrepareData', }, } notebook_run = DatabricksSubmitRunOperator(task_id='notebook_run', json=json)
Another way to accomplish the same thing is to use the named parameters of the
DatabricksSubmitRunOperatordirectly. Note that there is exactly one named parameter for each top level parameter in theruns/submitendpoint. In this method, your code would look like this:new_cluster = { 'spark_version': '2.1.0-db3-scala2.11', 'num_workers': 2 } notebook_task = { 'notebook_path': '/Users/airflow@example.com/PrepareData', } notebook_run = DatabricksSubmitRunOperator( task_id='notebook_run', new_cluster=new_cluster, notebook_task=notebook_task)
In the case where both the json parameter AND the named parameters are provided, they will be merged together. If there are conflicts during the merge, the named parameters will take precedence and override the top level
jsonkeys.- Currently the named parameters that
DatabricksSubmitRunOperatorsupports are spark_jar_tasknotebook_tasknew_clusterexisting_cluster_idlibrariesrun_nametimeout_seconds
Parameters: - json (dict) –
A JSON object containing API parameters which will be passed directly to the
api/2.0/jobs/runs/submitendpoint. The other named parameters (i.e.spark_jar_task,notebook_task..) to this operator will be merged with this json dictionary if they are provided. If there are conflicts during the merge, the named parameters will take precedence and override the top level json keys. This field will be templated.See also
For more information about templating see Jinja Templating. https://docs.databricks.com/api/latest/jobs.html#runs-submit
- spark_jar_task (dict) –
The main class and parameters for the JAR task. Note that the actual JAR is specified in the
libraries. EITHERspark_jar_taskORnotebook_taskshould be specified. This field will be templated. - notebook_task (dict) –
The notebook path and parameters for the notebook task. EITHER
spark_jar_taskORnotebook_taskshould be specified. This field will be templated. - new_cluster (dict) –
Specs for a new cluster on which this task will be run. EITHER
new_clusterORexisting_cluster_idshould be specified. This field will be templated. - existing_cluster_id (string) – ID for existing cluster on which to run this task.
EITHER
new_clusterORexisting_cluster_idshould be specified. This field will be templated. - libraries (list of dicts) –
Libraries which this run will use. This field will be templated.
- run_name (string) – The run name used for this task.
By default this will be set to the Airflow
task_id. Thistask_idis a required parameter of the superclassBaseOperator. This field will be templated. - timeout_seconds (int32) – The timeout for this run. By default a value of 0 is used which means to have no timeout. This field will be templated.
- databricks_conn_id (string) – The name of the Airflow connection to use.
By default and in the common case this will be
databricks_default. - polling_period_seconds (int) – Controls the rate which we poll for the result of this run. By default the operator will poll every 30 seconds.
- databricks_retry_limit (int) – Amount of times retry if the Databricks backend is unreachable. Its value must be greater than or equal to 1.
- Currently the named parameters that
GCP: Google Cloud Platform¶
Airflow has extensive support for the Google Cloud Platform. But note that most Hooks and Operators are in the contrib section. Meaning that they have a beta status, meaning that they can have breaking changes between minor releases.
BigQuery¶
- BigQueryCheckOperator : Performs checks against a SQL query that will return a single row with different values.
- BigQueryValueCheckOperator : Performs a simple value check using SQL code.
- BigQueryIntervalCheckOperator : Checks that the values of metrics given as SQL expressions are within a certain tolerance of the ones from days_back before.
- BigQueryOperator : Executes BigQuery SQL queries in a specific BigQuery database.
- BigQueryToBigQueryOperator : Copy a BigQuery table to another BigQuery table.
- BigQueryToCloudStorageOperator : Transfers a BigQuery table to a Google Cloud Storage bucket
BigQueryCheckOperator¶
-
class
airflow.contrib.operators.bigquery_check_operator.BigQueryCheckOperator(sql, bigquery_conn_id=’bigquery_default’, *args, **kwargs)[source]¶ Performs checks against Presto. The
BigQueryCheckOperatorexpects a sql query that will return a single row. Each value on that first row is evaluated using pythonboolcasting. If any of the values returnFalsethe check is failed and errors out.Note that Python bool casting evals the following as
False:False0- Empty string (
"") - Empty list (
[]) - Empty dictionary or set (
{})
Given a query like
SELECT COUNT(*) FROM foo, it will fail only if the count== 0. You can craft much more complex query that could, for instance, check that the table has the same number of rows as the source table upstream, or that the count of today’s partition is greater than yesterday’s partition, or that a set of metrics are less than 3 standard deviation for the 7 day average.This operator can be used as a data quality check in your pipeline, and depending on where you put it in your DAG, you have the choice to stop the critical path, preventing from publishing dubious data, or on the side and receive email alterts without stopping the progress of the DAG.
Parameters: - sql (string) – the sql to be executed
- bigquery_conn_id – reference to the BigQuery database
BigQueryValueCheckOperator¶
BigQueryIntervalCheckOperator¶
-
class
airflow.contrib.operators.bigquery_check_operator.BigQueryIntervalCheckOperator(table, metrics_thresholds, date_filter_column=’ds’, days_back=-7, bigquery_conn_id=’bigquery_default’, *args, **kwargs)[source]¶ Checks that the values of metrics given as SQL expressions are within a certain tolerance of the ones from days_back before.
This method constructs a query like so:
- SELECT {metrics_threshold_dict_key} FROM {table}
- WHERE {date_filter_column}=<date>
Parameters: - table (str) – the table name
- days_back (int) – number of days between ds and the ds we want to check against. Defaults to 7 days
- metrics_threshold (dict) – a dictionary of ratios indexed by metrics, for example ‘COUNT(*)’: 1.5 would require a 50 percent or less difference between the current day, and the prior days_back.
BigQueryOperator¶
-
class
airflow.contrib.operators.bigquery_operator.BigQueryOperator(bql, destination_dataset_table=False, write_disposition=’WRITE_EMPTY’, allow_large_results=False, bigquery_conn_id=’bigquery_default’, delegate_to=None, udf_config=False, use_legacy_sql=True, *args, **kwargs)[source]¶ Executes BigQuery SQL queries in a specific BigQuery database
Parameters: - bql (Can receive a str representing a sql statement, a list of str (sql statements), or reference to a template file. Template reference are recognized by str ending in ‘.sql’) – the sql code to be executed
- destination_dataset_table (string) – A dotted (<project>.|<project>:)<dataset>.<table> that, if set, will store the results of the query.
- bigquery_conn_id (string) – reference to a specific BigQuery hook.
- delegate_to (string) – The account to impersonate, if any. For this to work, the service account making the request must have domain-wide delegation enabled.
- udf_config (list) – The User Defined Function configuration for the query. See https://cloud.google.com/bigquery/user-defined-functions for details.
- use_legacy_sql (boolean) – Whether to use legacy SQL (true) or standard SQL (false).
BigQueryToBigQueryOperator¶
-
class
airflow.contrib.operators.bigquery_to_bigquery.BigQueryToBigQueryOperator(source_project_dataset_tables, destination_project_dataset_table, write_disposition=’WRITE_EMPTY’, create_disposition=’CREATE_IF_NEEDED’, bigquery_conn_id=’bigquery_default’, delegate_to=None, *args, **kwargs)[source]¶ Copies data from one BigQuery table to another. See here:
https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.copy
For more details about these parameters.
Parameters: - source_project_dataset_tables (list|string) – One or more dotted (project:|project.)<dataset>.<table> BigQuery tables to use as the source data. If <project> is not included, project will be the project defined in the connection json. Use a list if there are multiple source tables.
- destination_project_dataset_table (string) – The destination BigQuery table. Format is: (project:|project.)<dataset>.<table>
- write_disposition (string) – The write disposition if the table already exists.
- create_disposition (string) – The create disposition if the table doesn’t exist.
- bigquery_conn_id (string) – reference to a specific BigQuery hook.
- delegate_to (string) – The account to impersonate, if any. For this to work, the service account making the request must have domain-wide delegation enabled.
BigQueryToCloudStorageOperator¶
-
class
airflow.contrib.operators.bigquery_to_gcs.BigQueryToCloudStorageOperator(source_project_dataset_table, destination_cloud_storage_uris, compression=’NONE’, export_format=’CSV’, field_delimiter=’, ’, print_header=True, bigquery_conn_id=’bigquery_default’, delegate_to=None, *args, **kwargs)[source]¶ Transfers a BigQuery table to a Google Cloud Storage bucket.
See here:
https://cloud.google.com/bigquery/docs/reference/v2/jobs
For more details about these parameters.
Parameters: - source_project_dataset_table (string) – The dotted (<project>.|<project>:)<dataset>.<table> BigQuery table to use as the source data. If <project> is not included, project will be the project defined in the connection json.
- destination_cloud_storage_uris (list) – The destination Google Cloud Storage URI (e.g. gs://some-bucket/some-file.txt). Follows convention defined here: https://cloud.google.com/bigquery/exporting-data-from-bigquery#exportingmultiple
- compression (string) – Type of compression to use.
- export_format – File format to export.
- field_delimiter (string) – The delimiter to use when extracting to a CSV.
- print_header (boolean) – Whether to print a header for a CSV file extract.
- bigquery_conn_id (string) – reference to a specific BigQuery hook.
- delegate_to (string) – The account to impersonate, if any. For this to work, the service account making the request must have domain-wide delegation enabled.
BigQueryHook¶
-
class
airflow.contrib.hooks.bigquery_hook.BigQueryHook(bigquery_conn_id=’bigquery_default’, delegate_to=None)[source]¶ Interact with BigQuery. This hook uses the Google Cloud Platform connection.
-
get_pandas_df(bql, parameters=None, dialect=’legacy’)[source]¶ Returns a Pandas DataFrame for the results produced by a BigQuery query. The DbApiHook method must be overridden because Pandas doesn’t support PEP 249 connections, except for SQLite. See:
https://github.com/pydata/pandas/blob/master/pandas/io/sql.py#L447 https://github.com/pydata/pandas/issues/6900
Parameters: - bql (string) – The BigQuery SQL to execute.
- parameters (mapping or iterable) – The parameters to render the SQL query with (not used, leave to override superclass method)
- dialect (string in {‘legacy’, ‘standard’}, default ‘legacy’) – Dialect of BigQuery SQL – legacy SQL or standard SQL
-
insert_rows(table, rows, target_fields=None, commit_every=1000)[source]¶ Insertion is currently unsupported. Theoretically, you could use BigQuery’s streaming API to insert rows into a table, but this hasn’t been implemented.
-
table_exists(project_id, dataset_id, table_id)[source]¶ Checks for the existence of a table in Google BigQuery.
Parameters: project_id – The Google cloud project in which to look for the table. The connection supplied to the hook must provide access to the specified project. :type project_id: string :param dataset_id: The name of the dataset in which to look for the table.
storage bucket.Parameters: table_id (string) – The name of the table to check the existence of.
-
Cloud DataFlow¶
DataFlowJavaOperator¶
-
class
airflow.contrib.operators.dataflow_operator.DataFlowJavaOperator(jar, dataflow_default_options=None, options=None, gcp_conn_id=’google_cloud_default’, delegate_to=None, *args, **kwargs)[source]¶ Start a Java Cloud DataFlow batch job. The parameters of the operation will be passed to the job.
It’s a good practice to define dataflow_* parameters in the default_args of the dag like the project, zone and staging location.
``` default_args = {
- ‘dataflow_default_options’: {
- ‘project’: ‘my-gcp-project’, ‘zone’: ‘europe-west1-d’, ‘stagingLocation’: ‘gs://my-staging-bucket/staging/’
}
You need to pass the path to your dataflow as a file reference with the
jarparameter, the jar needs to be a self executing jar. Useoptionsto pass on options to your job.``` t1 = DataFlowOperation(
task_id=’datapflow_example’, jar=’{{var.value.gcp_dataflow_base}}pipeline/build/libs/pipeline-example-1.0.jar’, options={
‘autoscalingAlgorithm’: ‘BASIC’, ‘maxNumWorkers’: ‘50’, ‘start’: ‘{{ds}}’, ‘partitionType’: ‘DAY’}, dag=my-dag)
Both
jarandoptionsare templated so you can use variables in them.
default_args = {
'owner': 'airflow',
'depends_on_past': False,
'start_date':
(2016, 8, 1),
'email': ['alex@vanboxel.be'],
'email_on_failure': False,
'email_on_retry': False,
'retries': 1,
'retry_delay': timedelta(minutes=30),
'dataflow_default_options': {
'project': 'my-gcp-project',
'zone': 'us-central1-f',
'stagingLocation': 'gs://bucket/tmp/dataflow/staging/',
}
}
dag = DAG('test-dag', default_args=default_args)
task = DataFlowJavaOperator(
gcp_conn_id='gcp_default',
task_id='normalize-cal',
jar='{{var.value.gcp_dataflow_base}}pipeline-ingress-cal-normalize-1.0.jar',
options={
'autoscalingAlgorithm': 'BASIC',
'maxNumWorkers': '50',
'start': '{{ds}}',
'partitionType': 'DAY'
},
dag=dag)
Cloud DataProc¶
- DataProcPigOperator : Start a Pig query Job on a Cloud DataProc cluster.
- DataProcHiveOperator : Start a Hive query Job on a Cloud DataProc cluster.
- DataProcSparkSqlOperator : Start a Spark SQL query Job on a Cloud DataProc cluster.
- DataProcSparkOperator : Start a Spark Job on a Cloud DataProc cluster.
- DataProcHadoopOperator : Start a Hadoop Job on a Cloud DataProc cluster.
- DataProcPySparkOperator : Start a PySpark Job on a Cloud DataProc cluster.
DataProcPigOperator¶
-
class
airflow.contrib.operators.dataproc_operator.DataProcPigOperator(query=None, query_uri=None, variables=None, job_name=’{{task.task_id}}_{{ds_nodash}}’, dataproc_cluster=’cluster-1’, dataproc_pig_properties=None, dataproc_pig_jars=None, gcp_conn_id=’google_cloud_default’, delegate_to=None, *args, **kwargs)[source]¶ Start a Pig query Job on a Cloud DataProc cluster. The parameters of the operation will be passed to the cluster.
It’s a good practice to define dataproc_* parameters in the default_args of the dag like the cluster name and UDFs.
``` default_args = {
‘dataproc_cluster’: ‘cluster-1’, ‘dataproc_pig_jars’: [
‘gs://example/udf/jar/datafu/1.2.0/datafu.jar’, ‘gs://example/udf/jar/gpig/1.2/gpig.jar’]
You can pass a pig script as string or file reference. Use variables to pass on variables for the pig script to be resolved on the cluster or use the parameters to be resolved in the script as template parameters.
``` t1 = DataProcPigOperator(
task_id=’dataproc_pig’, query=’a_pig_script.pig’, variables={‘out’: ‘gs://example/output/{{ds}}’},
DataProcHiveOperator¶
-
class
airflow.contrib.operators.dataproc_operator.DataProcHiveOperator(query, variables=None, job_name=’{{task.task_id}}_{{ds_nodash}}’, dataproc_cluster=’cluster-1’, dataproc_hive_properties=None, dataproc_hive_jars=None, gcp_conn_id=’google_cloud_default’, delegate_to=None, *args, **kwargs)[source]¶ Start a Hive query Job on a Cloud DataProc cluster.
DataProcSparkSqlOperator¶
-
class
airflow.contrib.operators.dataproc_operator.DataProcSparkSqlOperator(query, variables=None, job_name=’{{task.task_id}}_{{ds_nodash}}’, dataproc_cluster=’cluster-1’, dataproc_spark_properties=None, dataproc_spark_jars=None, gcp_conn_id=’google_cloud_default’, delegate_to=None, *args, **kwargs)[source]¶ Start a Spark SQL query Job on a Cloud DataProc cluster.
DataProcSparkOperator¶
-
class
airflow.contrib.operators.dataproc_operator.DataProcSparkOperator(main_jar=None, main_class=None, arguments=None, archives=None, files=None, job_name=’{{task.task_id}}_{{ds_nodash}}’, dataproc_cluster=’cluster-1’, dataproc_spark_properties=None, dataproc_spark_jars=None, gcp_conn_id=’google_cloud_default’, delegate_to=None, *args, **kwargs)[source]¶ Start a Spark Job on a Cloud DataProc cluster.
DataProcHadoopOperator¶
-
class
airflow.contrib.operators.dataproc_operator.DataProcHadoopOperator(main_jar=None, main_class=None, arguments=None, archives=None, files=None, job_name=’{{task.task_id}}_{{ds_nodash}}’, dataproc_cluster=’cluster-1’, dataproc_hadoop_properties=None, dataproc_hadoop_jars=None, gcp_conn_id=’google_cloud_default’, delegate_to=None, *args, **kwargs)[source]¶ Start a Hadoop Job on a Cloud DataProc cluster.
DataProcPySparkOperator¶
-
class
airflow.contrib.operators.dataproc_operator.DataProcPySparkOperator(main, arguments=None, archives=None, pyfiles=None, files=None, job_name=’{{task.task_id}}_{{ds_nodash}}’, dataproc_cluster=’cluster-1’, dataproc_pyspark_properties=None, dataproc_pyspark_jars=None, gcp_conn_id=’google_cloud_default’, delegate_to=None, *args, **kwargs)[source]¶ Start a PySpark Job on a Cloud DataProc cluster.
Cloud Datastore¶
-
class
airflow.contrib.hooks.datastore_hook.DatastoreHook(datastore_conn_id=’google_cloud_datastore_default’, delegate_to=None)[source]¶ Interact with Google Cloud Datastore. This hook uses the Google Cloud Platform connection.
This object is not threads safe. If you want to make multiple requests simultaniously, you will need to create a hook per thread.
-
allocate_ids(partialKeys)[source]¶ Allocate IDs for incomplete keys. see https://cloud.google.com/datastore/docs/apis/v1beta2/datasets/allocateIds
Parameters: partialKeys – a list of partial keys Returns: a list of full keys.
-
begin_transaction()[source]¶ Get a new transaction handle see https://cloud.google.com/datastore/docs/apis/v1beta2/datasets/beginTransaction
Returns: a transaction handle
-
commit(body)[source]¶ Commit a transaction, optionally creating, deleting or modifying some entities. see https://cloud.google.com/datastore/docs/apis/v1beta2/datasets/commit
Parameters: body – the body of the commit request Returns: the response body of the commit request
-
lookup(keys, read_consistency=None, transaction=None)[source]¶ Lookup some entities by key see https://cloud.google.com/datastore/docs/apis/v1beta2/datasets/lookup :param keys: the keys to lookup :param read_consistency: the read consistency to use. default, strong or eventual.
Cannot be used with a transaction.Parameters: transaction – the transaction to use, if any. Returns: the response body of the lookup request.
-
rollback(transaction)[source]¶ Roll back a transaction see https://cloud.google.com/datastore/docs/apis/v1beta2/datasets/rollback :param transaction: the transaction to roll back
-
run_query(body)[source]¶ Run a query for entities. see https://cloud.google.com/datastore/docs/apis/v1beta2/datasets/runQuery :param body: the body of the query request :return: the batch of query results.
-
Cloud Storage¶
- GoogleCloudStorageDownloadOperator : Downloads a file from Google Cloud Storage.
- GoogleCloudStorageToBigQueryOperator : Loads files from Google cloud storage into BigQuery.
GoogleCloudStorageDownloadOperator¶
-
class
airflow.contrib.operators.gcs_download_operator.GoogleCloudStorageDownloadOperator(bucket, object, filename=False, store_to_xcom_key=False, google_cloud_storage_conn_id=’google_cloud_storage_default’, delegate_to=None, *args, **kwargs)[source]¶ Downloads a file from Google Cloud Storage.
Parameters: - bucket (string) – The Google cloud storage bucket where the object is.
- object (string) – The name of the object to download in the Google cloud storage bucket.
- filename (string) – The file path on the local file system (where the operator is being executed) that the file should be downloaded to. If false, the downloaded data will not be stored on the local file system.
- store_to_xcom_key (string) – If this param is set, the operator will push the contents of the downloaded file to XCom with the key set in this parameter. If false, the downloaded data will not be pushed to XCom.
- google_cloud_storage_conn_id (string) – The connection ID to use when connecting to Google cloud storage.
- delegate_to (string) – The account to impersonate, if any. For this to work, the service account making the request must have domain-wide delegation enabled.
GoogleCloudStorageToBigQueryOperator¶
-
class
airflow.contrib.operators.gcs_to_bq.GoogleCloudStorageToBigQueryOperator(bucket, source_objects, destination_project_dataset_table, schema_fields=None, schema_object=None, source_format=’CSV’, create_disposition=’CREATE_IF_NEEDED’, skip_leading_rows=0, write_disposition=’WRITE_EMPTY’, field_delimiter=’, ’, max_bad_records=0, max_id_key=None, bigquery_conn_id=’bigquery_default’, google_cloud_storage_conn_id=’google_cloud_storage_default’, delegate_to=None, schema_update_options=(), *args, **kwargs)[source]¶ Loads files from Google cloud storage into BigQuery.
GoogleCloudStorageHook¶
-
class
airflow.contrib.hooks.gcs_hook.GoogleCloudStorageHook(google_cloud_storage_conn_id=’google_cloud_storage_default’, delegate_to=None)[source]¶ Interact with Google Cloud Storage. This hook uses the Google Cloud Platform connection.
-
delete(bucket, object, generation=None)[source]¶ Delete an object if versioning is not enabled for the bucket, or if generation parameter is used. :param bucket: name of the bucket, where the object resides :type bucket: string :param object: name of the object to delete :type object: string :param generation: if present, permanently delete the object of this generation :type generation: string :return: True if succeeded
-
download(bucket, object, filename=False)[source]¶ Get a file from Google Cloud Storage.
Parameters: - bucket (string) – The bucket to fetch from.
- object (string) – The object to fetch.
- filename (string) – If set, a local file path where the file should be written to.
-
exists(bucket, object)[source]¶ Checks for the existence of a file in Google Cloud Storage.
Parameters: - bucket (string) – The Google cloud storage bucket where the object is.
- object (string) – The name of the object to check in the Google cloud storage bucket.
-
is_updated_after(bucket, object, ts)[source]¶ Checks if an object is updated in Google Cloud Storage.
Parameters: - bucket (string) – The Google cloud storage bucket where the object is.
- object (string) – The name of the object to check in the Google cloud storage bucket.
- ts (datetime) – The timestamp to check against.
-
list(bucket, versions=None, maxResults=None, prefix=None)[source]¶ List all objects from the bucket with the give string prefix in name :param bucket: bucket name :type bucket: string :param versions: if true, list all versions of the objects :type versions: boolean :param maxResults: max count of items to return in a single page of responses :type maxResults: integer :param prefix: prefix string which filters objects whose name begin with this prefix :type prefix: string :return: a stream of object names matching the filtering criteria
-
upload(bucket, object, filename, mime_type=’application/octet-stream’)[source]¶ Uploads a local file to Google Cloud Storage.
Parameters: - bucket (string) – The bucket to upload to.
- object (string) – The object name to set when uploading the local file.
- filename (string) – The local file path to the file to be uploaded.
- mime_type (string) – The MIME type to set when uploading the file.
-