dbt-jobs-as-code


Namedbt-jobs-as-code JSON
Version 1.4.0 PyPI version JSON
download
home_pageNone
SummaryA CLI to allow defining dbt Cloud jobs as code
upload_time2025-02-17 10:24:45
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseApache License 2.0
keywords dbt dbt cloud
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # dbt-jobs-as-code

`dbt-jobs-as-code` is a tool built to handle dbt Cloud Jobs as well-defined YAML files.

> [!NOTE]  
> The documentation is moving to [its dedicated website](https://dbt-labs.github.io/dbt-jobs-as-code/latest/).

It offers some advanced configuration options, like some templating capability to use the same YAML file to update different dbt Cloud projects and/or environments (see [templating](#templating-jobs-yaml-file)).

A given dbt Cloud project can use both jobs-as-code and jobs-as-ui at the same time, without any conflict.

The way we differentiate jobs defined from code from the ones defined from the UI is that the code ones have a name ending with `[[<identifier>]]`.

⚠️ Important: If you plan to use this tool but have existing jobs ending with `[[...]]` you should rename them before running any command.

Below is a demonstration of how to use dbt-jobs-as-code as part of CI/CD, leveraging the new templating features.

[!<img src="screenshot.png" width="600">](https://www.loom.com/share/7c263c560d2044cea9fc82ac8ec125ea?sid=4c2fe693-0aa5-4021-9e94-69d826f3eac5)

## Why not Terraform

Terrraform is widely used to manage infrastructure as code. And a comprehensive [Terraform provider](https://registry.terraform.io/providers/dbt-labs/dbtcloud/latest) exists for dbt Cloud, able to manage dbt Cloud jobs (as well as most of the rest of the dbt Cloud configuration like projects, environments, warehouse connections etc...).

Terraform is much more powerful but using it requires some knowledge about the tool and requires managing/storing/sharing a state file, containing information about the state of the application.

With this package's approach, people don't need to learn another tool and can configure dbt Cloud using YAML, a language used across the dbt ecosystem:

- **no state file required**: the link between the YAML jobs and the dbt Cloud jobs is stored in the jobs name, in the `[[<identifier>]]` part
- **YAML**: dbt users are familiar with YAML and we created a JSON schema allowing people to verify that their YAML files are correct
- by using filters like `--project-id`, `--environment-id` or `--limit-projects-envs-to-yml` people can limit the projects and environments checked by the tool, which can be used to "promote" jobs between different dbt Cloud environments

## Usage

### Installation

- Create a Python virtual environment and activate it
- Run `pip install dbt-jobs-as-code` (or `pip install dbt-jobs-as-code~=0.9` to install a specific release and its patches)

The CLI is now available as `dbt-jobs-as-code`

### Pre-requisites

The following environment variables are used to run the code:

- `DBT_API_KEY`: [Mandatory] The dbt Cloud API key to interact with dbt Cloud. Can be a Service Token (preferred, would require the "job admin" scope) or the API token of a given user
- `DBT_BASE_URL`: [Optional] By default, the tool queries `https://cloud.getdbt.com`, if your dbt Cloud instance is hosted on another domain, define it in this env variable (e.g. `https://emea.dbt.com`)

### Commands

The CLI comes with a few different commands

#### `validate`

Command: `dbt-jobs-as-code validate <config_file_or_pattern.yml>`

Validates that the YAML file has the correct structure

- it is possible to run the validation offline, without doing any API call
- or online using `--online`, in order to check that the different IDs provided are correct
- it supports templating the jobs YAML file (see [templating](#templating-jobs-yaml-file))

#### `plan`

Command: `dbt-jobs-as-code plan <config_file_or_pattern.yml>`

Returns the list of actions create/update/delete that are required to have dbt Cloud reflecting the configuration file

- this command doesn't modify the dbt Cloud jobs
- this command can be restricted to specific projects and environments
  - it accepts a list of project IDs or environments IDs to limit the command for: `dbt-jobs-as-code plan <config_file_or_pattern.yml> -p 1234 -p 2345 -e 4567 -e 5678`
    - it is possible to limit for specific projects and/or specific environments
    - when both projects and environments are provided, the command will run for the jobs that are both part of the environment ID(s) and the project ID(s) provided
  - or it accepts the flag `--limit-projects-envs-to-yml` to only check jobs that are in the projects and environments listed in the jobs YAML file
- it supports templating the jobs YAML file (see [templating](#templating-jobs-yaml-file))

#### `sync`

Command: `dbt-jobs-as-code sync <config_file_or_pattern.yml>`

Create/update/delete jobs and env vars overwrites in jobs to align dbt Cloud with the configuration file

- ⚠️ this command will modify your dbt Cloud jobs if the current configuration is different from the YAML file
- this command can be restricted to specific projects and environments
  - it accepts a list of project IDs or environments IDs to limit the command for: `dbt-jobs-as-code sync <config_file_or_pattern.yml> -p 1234 -p 2345 -e 4567 -e 5678`
    - it is possible to limit for specific projects and/or specific environments
  environment ID(s) and the project ID(s) provided
  - or it accepts the flag `--limit-projects-envs-to-yml` to only check jobs that are in the projects and environments listed in the jobs YAML file
- it supports templating the jobs YAML file (see [templating](#templating-jobs-yaml-file))

#### `import-jobs`

Command: `dbt-jobs-as-code import-jobs --config <config_file_or_pattern.yml>` or `dbt-jobs-as-code import-jobs --account-id <account-id>`

Queries dbt Cloud and provide the YAML definition for those jobs. It includes the env var overwrite at the job level if some have been defined

- it is possible to restrict the list of dbt Cloud Job IDs by adding `... -j 101 -j 123 -j 234`
- this command also accepts a list of project IDs or environments IDs to limit the command for: `dbt-jobs-as-code sync <config_file_or_pattern.yml> -p 1234 -p 2345 -e 4567 -e 5678`
- this command accepts a `--include-linked-id` parameter to allow linking the jobs in the YAML to existing jobs in dbt Cloud, by renaming those
- once the YAML has been retrieved, it is possible to copy/paste it in a local YAML file to create/update the local jobs definition.

Once the configuration is imported, it is possible to "link" existing jobs by using the `link` command explained below.

#### `link`

Command: `dbt-jobs-as-code link <config_file_or_pattern.yml>`

Links dbt Cloud jobs with the corresponding identifier from the YAML file by renaming the jobs, adding the `[[ ... ]]` part in the job name.

To do so, the program looks at the YAML file for the config `linked_id`.
`linked_id` can be added manually or can be added automatically when calling `dbt-jobs-as-code import-jobs` with the `--include-linked-id` parameter.

Accepts a `--dry-run` flag to see what jobs would be changed, without actually changing them.

#### `unlink`

Command: `dbt-jobs-as-code unlink --config <config_file_or_pattern.yml>` or `dbt-jobs-as-code unlink --account-id <account-id>`

Unlinking jobs removes the `[[ ... ]]` part of the job name in dbt Cloud.

⚠️ This can't be rolled back by the tool. Doing a `unlink` followed by a `sync` will create new instances of the jobs, with the `[[<identifier>]]` part

- it is possible to restrict the list of jobs to unlink by adding the job identifiers to unlink `... -i import_1 -i my_job_2`

#### `deactivate-jobs`

Command: `dbt-jobs-as-code deactivate-jobs --account-id 1234 --job-id 12 --job-id 34 --job-id 56`

This command can be used to deactivate both the schedule and the CI triggers for dbt Cloud jobs. This can be useful when moving jobs from one project to another. When the new jobs have been created, this command can be used to deactivate the jobs from the old project.

### Job Configuration YAML Schema

The file `src/dbt_jobs_as_code/schemas/load_job_schema.json` is a JSON Schema file that can be used to verify that the YAML config files syntax is correct and to provide completion suggestions for the different fields supported.

To use it in VSCode, install [the extension `YAML`](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) and add the following line at the top of your YAML config file (change the path if need be):

```yaml
# yaml-language-server: $schema=https://raw.githubusercontent.com/dbt-labs/dbt-jobs-as-code/main/src/dbt_jobs_as_code/schemas/load_job_schema.json
```

### Templating jobs YAML file

`validate`, `sync` and `plan` support templating the YML jobs file since version 0.6.0

To do so:

- update the jobs YAML file by setting some values as Jinja variables
  - e.g `project_id: {{ project_id }}` or `environment_id: {{ environment_id }}`
- and add the parameter `--vars-yml` (or `-v`) pointing to a YAML file containing values for your variables

The file called in `--vars-yml` needs to be a valid YAML file like the following:

```yml
project_id: 123
environment_id: 456
```

There are some example of files under `example_jobs_file/jobs_templated...`. Those examples also show how we can use Jinja logic to set some parameters based on our variables.

When using templates, you might also want to use the flag `--limit-projects-envs-to-yml`. This flag will make sure that only the projects and environments of the rendered YAML files will be checked to see what jobs to create/delete/update.

Templating also allows people to version control those YAML files and to have different files for different development layers, like:

- `dbt-jobs-as-code jobs.yml --vars-yml vars_qa.yml --limit-projects-envs-to-yml` for QA
- `dbt-jobs-as-code jobs.yml --vars-yml vars_prod.yml --limit-projects-envs-to-yml` for Prod

The tool will raise errors if:

- the jobs YAML file provided contains Jinja variables but `--vars-yml` is not provided
- the jobs YAML file provided contains Jinja variables that are not listed in the `--vars-yml` file

### Summary of parameters

| Command         | `--project-id` / `-p` | `--environment-id` / `-e` | `--limit-projects-envs-to-yml` / `-l` | `--vars-yml` / `-v` | `--online` | `--job-id` / `-j` | `--identifier` / `-i` | `--dry-run` | `--include-linked-id` |
| --------------- | :-------------------: | :-----------------------: | :-----------------------------------: | :-----------------: | :--------: | :---------------: | :-------------------: | :---------: | :-------------------: |
| plan            |          ✅           |            ✅             |                  ✅                   |         ✅          |            |                   |                       |             |                       |
| sync            |          ✅           |            ✅             |                  ✅                   |         ✅          |            |                   |                       |             |                       |
| validate        |                       |                           |                                       |         ✅          |     ✅     |                   |                       |             |                       |
| import-jobs     |          ✅           |            ✅             |                                       |                     |            |        ✅         |                       |             |          ✅           |
| link            |                       |                           |                                       |                     |            |                   |                       |     ✅      |                       |
| unlink          |                       |                           |                                       |                     |            |                   |          ✅           |     ✅      |                       |
| deactivate-jobs |                       |                           |                                       |                     |            |        ✅         |                       |             |                       |

As a reminder using `--project-id` and/or `--environment-id` is not compatible with using `--limit-projects-envs-to-yml`.
We can only restricts by providing the IDs or by forcing to restrict on the environments and projects in the YML file.

## Running the tool as part of CI/CD

An example of GitHub Action is provided in the [example_cicd folder](https://github.com/dbt-labs/dbt-jobs-as-code/blob/HEAD/example_cicd). This example requires having set the GitHub secret `DBT_API_KEY`.

You can copy/paste thie file in your own repo under `.github/workflows`. The current script except your jobs `yml` file to be saved under `jobs/jobs.yml`

After a PR on `main` is approved, the action will run a `sync` to compare the local `yml` file with the dbt Cloud configuration and will create/update/delete dbt Cloud jobs to align the two.

## Reporting bugs and contributing code

- Want to report a bug or request a feature? Let us know by opening [an issue](https://github.com/dbt-labs/dbt-jobs-as-code/issues/new)
- Want to help us build dbt? Check out the [Contributing Guide](https://github.com/dbt-labs/dbt-jobs-as-code/blob/HEAD/CONTRIBUTING.md)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "dbt-jobs-as-code",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "dbt, dbt Cloud",
    "author": null,
    "author_email": "dbt Labs <info@dbtlabs.com>",
    "download_url": "https://files.pythonhosted.org/packages/fb/1c/cddf70d7b3f95c1a158e2fd6cd328c3a510a1f0a86c5600951e3901280b5/dbt_jobs_as_code-1.4.0.tar.gz",
    "platform": null,
    "description": "# dbt-jobs-as-code\n\n`dbt-jobs-as-code` is a tool built to handle dbt Cloud Jobs as well-defined YAML files.\n\n> [!NOTE]  \n> The documentation is moving to [its dedicated website](https://dbt-labs.github.io/dbt-jobs-as-code/latest/).\n\nIt offers some advanced configuration options, like some templating capability to use the same YAML file to update different dbt Cloud projects and/or environments (see [templating](#templating-jobs-yaml-file)).\n\nA given dbt Cloud project can use both jobs-as-code and jobs-as-ui at the same time, without any conflict.\n\nThe way we differentiate jobs defined from code from the ones defined from the UI is that the code ones have a name ending with `[[<identifier>]]`.\n\n\u26a0\ufe0f Important: If you plan to use this tool but have existing jobs ending with `[[...]]` you should rename them before running any command.\n\nBelow is a demonstration of how to use dbt-jobs-as-code as part of CI/CD, leveraging the new templating features.\n\n[!<img src=\"screenshot.png\" width=\"600\">](https://www.loom.com/share/7c263c560d2044cea9fc82ac8ec125ea?sid=4c2fe693-0aa5-4021-9e94-69d826f3eac5)\n\n## Why not Terraform\n\nTerrraform is widely used to manage infrastructure as code. And a comprehensive [Terraform provider](https://registry.terraform.io/providers/dbt-labs/dbtcloud/latest) exists for dbt Cloud, able to manage dbt Cloud jobs (as well as most of the rest of the dbt Cloud configuration like projects, environments, warehouse connections etc...).\n\nTerraform is much more powerful but using it requires some knowledge about the tool and requires managing/storing/sharing a state file, containing information about the state of the application.\n\nWith this package's approach, people don't need to learn another tool and can configure dbt Cloud using YAML, a language used across the dbt ecosystem:\n\n- **no state file required**: the link between the YAML jobs and the dbt Cloud jobs is stored in the jobs name, in the `[[<identifier>]]` part\n- **YAML**: dbt users are familiar with YAML and we created a JSON schema allowing people to verify that their YAML files are correct\n- by using filters like `--project-id`, `--environment-id` or `--limit-projects-envs-to-yml` people can limit the projects and environments checked by the tool, which can be used to \"promote\" jobs between different dbt Cloud environments\n\n## Usage\n\n### Installation\n\n- Create a Python virtual environment and activate it\n- Run `pip install dbt-jobs-as-code` (or `pip install dbt-jobs-as-code~=0.9` to install a specific release and its patches)\n\nThe CLI is now available as `dbt-jobs-as-code`\n\n### Pre-requisites\n\nThe following environment variables are used to run the code:\n\n- `DBT_API_KEY`: [Mandatory] The dbt Cloud API key to interact with dbt Cloud. Can be a Service Token (preferred, would require the \"job admin\" scope) or the API token of a given user\n- `DBT_BASE_URL`: [Optional] By default, the tool queries `https://cloud.getdbt.com`, if your dbt Cloud instance is hosted on another domain, define it in this env variable (e.g. `https://emea.dbt.com`)\n\n### Commands\n\nThe CLI comes with a few different commands\n\n#### `validate`\n\nCommand: `dbt-jobs-as-code validate <config_file_or_pattern.yml>`\n\nValidates that the YAML file has the correct structure\n\n- it is possible to run the validation offline, without doing any API call\n- or online using `--online`, in order to check that the different IDs provided are correct\n- it supports templating the jobs YAML file (see [templating](#templating-jobs-yaml-file))\n\n#### `plan`\n\nCommand: `dbt-jobs-as-code plan <config_file_or_pattern.yml>`\n\nReturns the list of actions create/update/delete that are required to have dbt Cloud reflecting the configuration file\n\n- this command doesn't modify the dbt Cloud jobs\n- this command can be restricted to specific projects and environments\n  - it accepts a list of project IDs or environments IDs to limit the command for: `dbt-jobs-as-code plan <config_file_or_pattern.yml> -p 1234 -p 2345 -e 4567 -e 5678`\n    - it is possible to limit for specific projects and/or specific environments\n    - when both projects and environments are provided, the command will run for the jobs that are both part of the environment ID(s) and the project ID(s) provided\n  - or it accepts the flag `--limit-projects-envs-to-yml` to only check jobs that are in the projects and environments listed in the jobs YAML file\n- it supports templating the jobs YAML file (see [templating](#templating-jobs-yaml-file))\n\n#### `sync`\n\nCommand: `dbt-jobs-as-code sync <config_file_or_pattern.yml>`\n\nCreate/update/delete jobs and env vars overwrites in jobs to align dbt Cloud with the configuration file\n\n- \u26a0\ufe0f this command will modify your dbt Cloud jobs if the current configuration is different from the YAML file\n- this command can be restricted to specific projects and environments\n  - it accepts a list of project IDs or environments IDs to limit the command for: `dbt-jobs-as-code sync <config_file_or_pattern.yml> -p 1234 -p 2345 -e 4567 -e 5678`\n    - it is possible to limit for specific projects and/or specific environments\n  environment ID(s) and the project ID(s) provided\n  - or it accepts the flag `--limit-projects-envs-to-yml` to only check jobs that are in the projects and environments listed in the jobs YAML file\n- it supports templating the jobs YAML file (see [templating](#templating-jobs-yaml-file))\n\n#### `import-jobs`\n\nCommand: `dbt-jobs-as-code import-jobs --config <config_file_or_pattern.yml>` or `dbt-jobs-as-code import-jobs --account-id <account-id>`\n\nQueries dbt Cloud and provide the YAML definition for those jobs. It includes the env var overwrite at the job level if some have been defined\n\n- it is possible to restrict the list of dbt Cloud Job IDs by adding `... -j 101 -j 123 -j 234`\n- this command also accepts a list of project IDs or environments IDs to limit the command for: `dbt-jobs-as-code sync <config_file_or_pattern.yml> -p 1234 -p 2345 -e 4567 -e 5678`\n- this command accepts a `--include-linked-id` parameter to allow linking the jobs in the YAML to existing jobs in dbt Cloud, by renaming those\n- once the YAML has been retrieved, it is possible to copy/paste it in a local YAML file to create/update the local jobs definition.\n\nOnce the configuration is imported, it is possible to \"link\" existing jobs by using the `link` command explained below.\n\n#### `link`\n\nCommand: `dbt-jobs-as-code link <config_file_or_pattern.yml>`\n\nLinks dbt Cloud jobs with the corresponding identifier from the YAML file by renaming the jobs, adding the `[[ ... ]]` part in the job name.\n\nTo do so, the program looks at the YAML file for the config `linked_id`.\n`linked_id` can be added manually or can be added automatically when calling `dbt-jobs-as-code import-jobs` with the `--include-linked-id` parameter.\n\nAccepts a `--dry-run` flag to see what jobs would be changed, without actually changing them.\n\n#### `unlink`\n\nCommand: `dbt-jobs-as-code unlink --config <config_file_or_pattern.yml>` or `dbt-jobs-as-code unlink --account-id <account-id>`\n\nUnlinking jobs removes the `[[ ... ]]` part of the job name in dbt Cloud.\n\n\u26a0\ufe0f This can't be rolled back by the tool. Doing a `unlink` followed by a `sync` will create new instances of the jobs, with the `[[<identifier>]]` part\n\n- it is possible to restrict the list of jobs to unlink by adding the job identifiers to unlink `... -i import_1 -i my_job_2`\n\n#### `deactivate-jobs`\n\nCommand: `dbt-jobs-as-code deactivate-jobs --account-id 1234 --job-id 12 --job-id 34 --job-id 56`\n\nThis command can be used to deactivate both the schedule and the CI triggers for dbt Cloud jobs. This can be useful when moving jobs from one project to another. When the new jobs have been created, this command can be used to deactivate the jobs from the old project.\n\n### Job Configuration YAML Schema\n\nThe file `src/dbt_jobs_as_code/schemas/load_job_schema.json` is a JSON Schema file that can be used to verify that the YAML config files syntax is correct and to provide completion suggestions for the different fields supported.\n\nTo use it in VSCode, install [the extension `YAML`](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) and add the following line at the top of your YAML config file (change the path if need be):\n\n```yaml\n# yaml-language-server: $schema=https://raw.githubusercontent.com/dbt-labs/dbt-jobs-as-code/main/src/dbt_jobs_as_code/schemas/load_job_schema.json\n```\n\n### Templating jobs YAML file\n\n`validate`, `sync` and `plan` support templating the YML jobs file since version 0.6.0\n\nTo do so:\n\n- update the jobs YAML file by setting some values as Jinja variables\n  - e.g `project_id: {{ project_id }}` or `environment_id: {{ environment_id }}`\n- and add the parameter `--vars-yml` (or `-v`) pointing to a YAML file containing values for your variables\n\nThe file called in `--vars-yml` needs to be a valid YAML file like the following:\n\n```yml\nproject_id: 123\nenvironment_id: 456\n```\n\nThere are some example of files under `example_jobs_file/jobs_templated...`. Those examples also show how we can use Jinja logic to set some parameters based on our variables.\n\nWhen using templates, you might also want to use the flag `--limit-projects-envs-to-yml`. This flag will make sure that only the projects and environments of the rendered YAML files will be checked to see what jobs to create/delete/update.\n\nTemplating also allows people to version control those YAML files and to have different files for different development layers, like:\n\n- `dbt-jobs-as-code jobs.yml --vars-yml vars_qa.yml --limit-projects-envs-to-yml` for QA\n- `dbt-jobs-as-code jobs.yml --vars-yml vars_prod.yml --limit-projects-envs-to-yml` for Prod\n\nThe tool will raise errors if:\n\n- the jobs YAML file provided contains Jinja variables but `--vars-yml` is not provided\n- the jobs YAML file provided contains Jinja variables that are not listed in the `--vars-yml` file\n\n### Summary of parameters\n\n| Command         | `--project-id` / `-p` | `--environment-id` / `-e` | `--limit-projects-envs-to-yml` / `-l` | `--vars-yml` / `-v` | `--online` | `--job-id` / `-j` | `--identifier` / `-i` | `--dry-run` | `--include-linked-id` |\n| --------------- | :-------------------: | :-----------------------: | :-----------------------------------: | :-----------------: | :--------: | :---------------: | :-------------------: | :---------: | :-------------------: |\n| plan            |          \u2705           |            \u2705             |                  \u2705                   |         \u2705          |            |                   |                       |             |                       |\n| sync            |          \u2705           |            \u2705             |                  \u2705                   |         \u2705          |            |                   |                       |             |                       |\n| validate        |                       |                           |                                       |         \u2705          |     \u2705     |                   |                       |             |                       |\n| import-jobs     |          \u2705           |            \u2705             |                                       |                     |            |        \u2705         |                       |             |          \u2705           |\n| link            |                       |                           |                                       |                     |            |                   |                       |     \u2705      |                       |\n| unlink          |                       |                           |                                       |                     |            |                   |          \u2705           |     \u2705      |                       |\n| deactivate-jobs |                       |                           |                                       |                     |            |        \u2705         |                       |             |                       |\n\nAs a reminder using `--project-id` and/or `--environment-id` is not compatible with using `--limit-projects-envs-to-yml`.\nWe can only restricts by providing the IDs or by forcing to restrict on the environments and projects in the YML file.\n\n## Running the tool as part of CI/CD\n\nAn example of GitHub Action is provided in the [example_cicd folder](https://github.com/dbt-labs/dbt-jobs-as-code/blob/HEAD/example_cicd). This example requires having set the GitHub secret `DBT_API_KEY`.\n\nYou can copy/paste thie file in your own repo under `.github/workflows`. The current script except your jobs `yml` file to be saved under `jobs/jobs.yml`\n\nAfter a PR on `main` is approved, the action will run a `sync` to compare the local `yml` file with the dbt Cloud configuration and will create/update/delete dbt Cloud jobs to align the two.\n\n## Reporting bugs and contributing code\n\n- Want to report a bug or request a feature? Let us know by opening [an issue](https://github.com/dbt-labs/dbt-jobs-as-code/issues/new)\n- Want to help us build dbt? Check out the [Contributing Guide](https://github.com/dbt-labs/dbt-jobs-as-code/blob/HEAD/CONTRIBUTING.md)\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "A CLI to allow defining dbt Cloud jobs as code",
    "version": "1.4.0",
    "project_urls": {
        "repository": "https://github.com/dbt-labs/dbt-jobs-as-code.git"
    },
    "split_keywords": [
        "dbt",
        " dbt cloud"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8415539e1533687777ba43bd94a2f6dc914dbfff20d2f9cea25db019f47639e9",
                "md5": "7833410d91d3ee7b085f87161eafc0c1",
                "sha256": "7683d639f1492c6dab07f220d2e89f9d835dc1e79e854f6749d1297c3a752868"
            },
            "downloads": -1,
            "filename": "dbt_jobs_as_code-1.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7833410d91d3ee7b085f87161eafc0c1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 34774,
            "upload_time": "2025-02-17T10:24:43",
            "upload_time_iso_8601": "2025-02-17T10:24:43.052063Z",
            "url": "https://files.pythonhosted.org/packages/84/15/539e1533687777ba43bd94a2f6dc914dbfff20d2f9cea25db019f47639e9/dbt_jobs_as_code-1.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb1ccddf70d7b3f95c1a158e2fd6cd328c3a510a1f0a86c5600951e3901280b5",
                "md5": "67deb491a7e08f74f20dcbc1af327e98",
                "sha256": "796b49137fe7b26f035c1ca162273e38d9593d28822142ba09ea75b9d7b2218f"
            },
            "downloads": -1,
            "filename": "dbt_jobs_as_code-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "67deb491a7e08f74f20dcbc1af327e98",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 41658,
            "upload_time": "2025-02-17T10:24:45",
            "upload_time_iso_8601": "2025-02-17T10:24:45.183804Z",
            "url": "https://files.pythonhosted.org/packages/fb/1c/cddf70d7b3f95c1a158e2fd6cd328c3a510a1f0a86c5600951e3901280b5/dbt_jobs_as_code-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-17 10:24:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dbt-labs",
    "github_project": "dbt-jobs-as-code",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dbt-jobs-as-code"
}
        
Elapsed time: 1.19265s