I would like to get only table names from BigQuery by using wildcard in Python.
What I want to do is something like this:
from google.cloud import bigquery
bigquery_client = bigquery.Client()
table_names = bigquery_client.get_something().something('db_name.table_prefix_*')
Can I do something like this?
If I can, What should I do?