Generating GAQL tool
Project description
GAQL Builder

Generating GAQL (Google Ads Query Language) tool, this is not official library. If you want to build GAQL string much easier, you can use this tool, but it would not be validated entirely for all of posible combinations.
Please follow the building rule via official documentation.
Requirements
- Python 2.7.13+ / 3.5.3+
- pip
Installation
$ pip3 install gaql-builder
Project Structure
.
├── gaql_builder/ # Core folder
│ ├── __init__.py
│ └── main.py # Core library code
├── tests/ # Test cases
├── .travis.yml # CI configuration
├── setup.py # Setup script
├── setup.cfg # Setup configuration
├── __init__.py # Root init
├── requirements.txt # Install packages text file
└── README.md # Read-me file
Usage
If you want to generate the following query string,
SELECT
campaign.id,
campaign.name
FROM
campaign
WHERE
campaign.resource_name = 'customers/1234567/campaigns/987654'
you can use functional call to make it out.
builder = GAQLBuilder()
builder.select(['campaign.id', 'campaign.name'])
builder.resource_from('campaign')
builder.where("campaign.resource_name = 'customers/1234567/campaigns/987654'")
builder.to_string()
also, you can use add_where function to add condition.
builder = GAQLBuilder()
builder.select(['campaign.id', 'campaign.name'])
builder.resource_from('campaign')
builder.add_where(
field='campaign.resource_name',
operator='=',
value="'customers/1234567/campaigns/987654'"
)
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gaql_builder-1.0.2-py3-none-any.whl.
File metadata
- Download URL: gaql_builder-1.0.2-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.6.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd96e6fe753f87ac99979e10b4876b8bf6114cdebe31cc3180a01b814a2283fc
|
|
| MD5 |
458ad3b3d967e00b6923afc3a55b09e1
|
|
| BLAKE2b-256 |
a93f0780fc08cd87691760ef0eb655f5b6f0f2dced5518106ddb2bbb1df5168e
|