Metadata-Version: 2.1
Name: cotality-awb-bigquery
Version: 0.0.4
Summary: Cotality Python SDK
Author: Steven Pham
Author-email: stpham@cotality.com
Requires-Python: >=3.11,<3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: bokeh (>=3.7.0,<4.0.0)
Requires-Dist: dataclasses-json (>=0.6.0,<1.0.0)
Requires-Dist: db-dtypes (>=1.4.3)
Requires-Dist: google-auth (>=2.0.0,<3.0.0)
Requires-Dist: google-cloud-bigquery (>=3.35.0,<4.0.0)
Requires-Dist: google-cloud-bigquery-storage (>=2.32.0,<3.0.0)
Requires-Dist: google-cloud-secret-manager (>=2.24.0,<3.0.0)
Requires-Dist: holoviews (>=1.21.0,<2.0.0)
Requires-Dist: hvplot (>=0.12.0,<1.0.0)
Requires-Dist: ipywidgets (>=8.1.0,<9.0.0)
Requires-Dist: jupyter_bokeh (>=3.0.0,<4.0.0)
Requires-Dist: pandas (>=2.2.0,<3.0.0)
Requires-Dist: pandas_gbq (>=0.29.2)
Requires-Dist: panel (>=1.7.0,<2.0.0)
Requires-Dist: plotly (>=5.0.0,<7.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: smart_open (>=5.2.0,<7.0.0)
Description-Content-Type: text/markdown

# Python Client for Cotality BigQuery SDK
This package provides a Python client for the Cotality BigQuery SDK, allowing users to interact with BigQuery services in a streamlined manner.

## Prerequisites
Python >= 3.11

## Installation
```zsh
pip install cotality-sdk-bigquery
```

## Example usage Jupiter notebook

Install package:
```
!pip install cotality-sdk-bigquery >/dev/null
```

Setup Clip Application
```
from cotality.platform.bigquery.clip import ClipApp
app = ClipApp()
```
Display Clip application UI
```
app.display()
```
Run backgroun Clip job
```
app.run_job()
```
