You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Credentials](https://developers.google.com/bid-manager/guides/get-started/generate-credentials) configured, can be exposed as `GARF_BID_MANAGER_CREDENTIALS_FILE` ENV variable
27
+
28
+
/// tab | cli
29
+
```bash
30
+
echo"""
31
+
SELECT
32
+
advertiser,
33
+
metric_clicks AS clicks
34
+
FROM standard
35
+
WHERE advertiser = 1
36
+
AND dataRange = LAST_7_DAYS
37
+
"> query.sql
38
+
garf query.sql --source bid-manager \
39
+
--output csv
40
+
```
41
+
///
42
+
43
+
/// tab | python
44
+
45
+
```python
46
+
import os
47
+
48
+
from garf_io import writer
49
+
from garf_bid_manager import BidManagerApiReportFetcher
|`credentials_file`| File with Oauth or service account credentials | You can expose `credentials_file` as `GARF_BID_MANAGER_CREDENTIALS_FILE` ENV variable|
0 commit comments