Skip to main content

dbt Jinja Processor

demo app

This repository contains a tool that processes the most common jinja value templates in dbt model files. The tool depends on tree-sitter and the tree-sitter-jinja2 library.

Strategy

The current strategy is for this processor to be 100% certain when it can accurately extract values from a given model file. Anything less than 100% certainty returns an exception so that the model can be rendered with python Jinja instead.

There are two cases we want to avoid because they would risk correctness to user's projects:

  1. Confidently extracting values that would not be extracted by python jinja (false positives)
  2. Confidently extracting a set of values that are missing values that python jinja would have extracted. (misses)

If we instead error when we could have confidently extracted values, there is no correctness risk to the user. Only an opportunity to expand the rules to encompass this class of cases as well.

Even though jinja in dbt is not a typed language, the type checker statically determines whether or not the current implementation can confidently extract values without relying on python jinja rendering, which is when these errors would otherwise surface. This type checker will become more permissive over time as this tool expands to include more dbt and jinja features.

Architecture

This architecture is optimized for value extraction and for future flexibility. This architecture is expected to change, and is coded in fp-style stages to make those changes easier for the future.

This processor is composed of several stages:

  1. parser
  2. type checker
  3. extractor

Additionally, the following tools utilize the above processor:

  1. browser-based demo of dbt extraction as you type

The tree-sitter parser is located in the tree-sitter-jinja2 library. The rust bindings are used to traverse the concrete syntax tree that tree-sitter creates in order to create a typed abstract syntax tree in the type checking stage. The errors in the type checking stage are not raised to the user, and are instead used by developers to debug tests.

The parser is solely responsible for turning text into recognized values, while the type checker does arity checking, and enforces argument list types (e.g. nested function calls like {{ config(my_ref=ref('table')) }} will parse but not type check even though it is valid dbt syntax. The tool at this time doesn't have an agreed serialization to communicate refs as config values, but could in the future.)

The extractor uses the typed abstract syntax tree to easily identify all the refs, sources, and configs present and extract them.

Running The Demo App

To see the full implementation extract dbt values live as you type in a browser, run:

make demo

It may take a moment for the demo to compile an optimized version of itself.

Kill the server with ctrl+c to end the demo.

Testing The Project

make test

Future Work

  • Refactor the tree-sitter jinja parser into its own repository to potentially open source and engage with the community on implementing improvements.
  • Remove ref, source, and config type checking as hard coded rules and instead read these function types from external function definition statements.
  • Create input path for a manifest file so it can be run on any project without additional pre-processing

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbt_extractor-0.4.0.tar.gz (21.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dbt_extractor-0.4.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ x86-64

dbt_extractor-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

dbt_extractor-0.4.0-cp310-none-win_amd64.whl (248.7 kB view details)

Uploaded CPython 3.10Windows x86-64

dbt_extractor-0.4.0-cp310-none-win32.whl (232.1 kB view details)

Uploaded CPython 3.10Windows x86

dbt_extractor-0.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ x86-64

dbt_extractor-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

dbt_extractor-0.4.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (715.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

dbt_extractor-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl (366.1 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

dbt_extractor-0.4.0-cp39-none-win_amd64.whl (242.0 kB view details)

Uploaded CPython 3.9Windows x86-64

dbt_extractor-0.4.0-cp39-none-win32.whl (226.3 kB view details)

Uploaded CPython 3.9Windows x86

dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64

dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dbt_extractor-0.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

dbt_extractor-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

dbt_extractor-0.4.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (715.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

dbt_extractor-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl (354.7 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

dbt_extractor-0.4.0-cp38-none-win_amd64.whl (242.1 kB view details)

Uploaded CPython 3.8Windows x86-64

dbt_extractor-0.4.0-cp38-none-win32.whl (226.3 kB view details)

Uploaded CPython 3.8Windows x86

dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64

dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

dbt_extractor-0.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

dbt_extractor-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

dbt_extractor-0.4.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (714.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

dbt_extractor-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl (354.6 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

dbt_extractor-0.4.0-cp37-none-win_amd64.whl (242.0 kB view details)

Uploaded CPython 3.7Windows x86-64

dbt_extractor-0.4.0-cp37-none-win32.whl (226.3 kB view details)

Uploaded CPython 3.7Windows x86

dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64

dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

dbt_extractor-0.4.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (714.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

dbt_extractor-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl (354.9 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

dbt_extractor-0.4.0-cp36-none-win_amd64.whl (242.1 kB view details)

Uploaded CPython 3.6Windows x86-64

dbt_extractor-0.4.0-cp36-none-win32.whl (226.9 kB view details)

Uploaded CPython 3.6Windows x86

dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64

dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARMv7l

dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.5+ x86-64

dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.5+ i686

dbt_extractor-0.4.0-cp36-cp36m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (693.7 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

dbt_extractor-0.4.0-cp36-cp36m-macosx_10_7_x86_64.whl (354.9 kB view details)

Uploaded CPython 3.6mmacOS 10.7+ x86-64

File details

Details for the file dbt_extractor-0.4.0.tar.gz.

File metadata

  • Download URL: dbt_extractor-0.4.0.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0.tar.gz
Algorithm Hash digest
SHA256 58672e36fab988c849a693405920ee18421f27245c48e5f9ecf496369ed31a85
MD5 2b14094213579c060e2d2279d3eb58b6
BLAKE2b-256 a75c609f02383178208612d6ac21228ca256337d3c18afb13b29f122720a26ad

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7f5cbd40f95b05587315125c85f60f4057ea5c5fc75bc97306bd379c96b49354
MD5 472fa5abddae9231e74ad73a660e4393
BLAKE2b-256 23fe0180a04d4904f314ad7f6a4431f6fa5e14d6ddc3cf016d995b609643121b

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e7c7d8f56258e938c871523f13ed78e5fc227f02334231feb1ed8f36f39aa3e
MD5 70f2519fe1ac40bdc7d7dd4e28fb22d7
BLAKE2b-256 6218a2dd021516540eb846e77968e5923c49631f7b598e3fbb2f825c1ee06adf

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp310-none-win_amd64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 248.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for dbt_extractor-0.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 de20bb41678406c95fbfbd9bbed9e76547a6c5672ff28a888fd62e6e30cf05c4
MD5 6ce5df2d7659510d3aaa742a6a9da419
BLAKE2b-256 f7a5281809caa099dcb872e3bc39497af8706454104e9ab58d0e00593f4200d1

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp310-none-win32.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp310-none-win32.whl
  • Upload date:
  • Size: 232.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for dbt_extractor-0.4.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2888fe7dc8c78703a447a18fb0bcfdc17f2e1b9e6630d2ccec20c182879243d7
MD5 bd67287de9a9f4ea7fa64be40675e0e8
BLAKE2b-256 afe1310fa6feba7e3a66926ae49daa2e37c1c78883bd2c8eb61a9574294788bf

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5aac619e32251c07543b34ad5c4bb6720e493a71cd17793bb5e98d9eb4ff6bf4
MD5 d4c7312f6e2ecb4e774fdb1fe89eeda2
BLAKE2b-256 9e37cbbee2fce4a9ebb40651af183e7df53a815c6270a04a331c55f5bd4ec85d

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f776821a92b1419745ce4fe77d1f3bba46b9efccec3d2f8d0353f3bcb9b10150
MD5 98e0e77067e47d2cdf4fe034e7857154
BLAKE2b-256 4cddeef179a4db36d8b24a9321317fa09b110fd13c167409552befbf7ebd63b6

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5b92feae1ec4703bbe9ef5f472b1dcb6ca29acc205f243aa1bdf614ce1623574
MD5 e2d2a9b7ac140c8b2e61d9eec3896b7a
BLAKE2b-256 528908a0c7fafcf151b5fe3d3fd84be602567cf42de06101fce3dee0cc7116f1

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 366.1 kB
  • Tags: CPython 3.10, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for dbt_extractor-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 916454ed38cb5ef1a3e239d639a66d74723504d271433d54a167de868290c327
MD5 f1f400f6b72f6338c9994d527f092874
BLAKE2b-256 900d3790a738c9449c7db8732191de71c41025432f04be03a8aeda98f30d1d35

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-none-win_amd64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 242.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d7e532c5e48cd8c9d7440736fcc4425750ea6cb27e29cb4a7900d888779e1bae
MD5 c5f50f27890c9845bd6fb760f4707efa
BLAKE2b-256 b97e91ff09847dfa7e1113684c85fe3acab7cf06ae86ad8c27ccbb0b54dc8f45

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-none-win32.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp39-none-win32.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d2c615b53d78d3d077289a7e43936d4f74421b2b32fb82d976a5628f13522cbd
MD5 f5a365be3818362fe9cca7d25e9afc3e
BLAKE2b-256 af3879098737ded73db1399b59fdc033a7d79b7725156d395957a57bbafce3f4

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9710981e817ef63efd75949d4b1422500508753b7eba1c9344fbd49a4e7f08c3
MD5 2fe7357ce4fbb9759fbf19ad1665e14f
BLAKE2b-256 321787ca96a9d6045e62c5f8361a545b180f36ee7d541e64f2d5197920009b69

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcc6fe049f89a98cd5557732d53efd7bf5a13e7aaa18cdc4db83ffcd31c13522
MD5 cdc46391bd53bcc9b6bfd3f0d224379e
BLAKE2b-256 802c5866e139dd060c35a7098aab3fe2acef496488fe98495aa949e9848e3a7c

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 079e47ee37e2048d231a03caeaf3a971290727ddadfd6e6662775f52afd2b698
MD5 2bfe0c9ba001bd8c319251e84bff7e91
BLAKE2b-256 745c50175e4b77074a226ae5af21f90cc72fd750e936bc9e42dfe8fa978ccfa8

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ec536a791e517576b2ee5b1beb41f35a20895662c3edab228e36215b2d5dd79
MD5 1f5a3241aafc573884525a848a2121c2
BLAKE2b-256 ca95b961d9391ab5e15499424725dd6cddb44e92661fb23273e21a594ddaa349

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6672f0b5248309ad1b6afbba709cf7b9350fff156e0b0f03002aa5f41a6175a
MD5 3245a931c02510d15a69d461f353aceb
BLAKE2b-256 65712122f1f83e51bb49f4e13a0e8a78189139335c534478b8ce67f94d35ffa4

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e0775be498431e67996be3306dfa7f600a6636424cef8f1dceb05186962dea10
MD5 b12e454b3524375a403ee14127a3ec26
BLAKE2b-256 a5ddd6a5dd043edac42020f1d6352bf72a393375dd69cd776c64f42a9235c3ef

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce9bad225f86d7009afc4c1e935d0b82a89e89e11c78d6f8915d984e232e1506
MD5 ddcd89588a29b443839e64a3f2ec750a
BLAKE2b-256 718d3a0e12dc2062a34322b5ab7611890e7496bddbe2fe0acfa10606516c0819

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 df9ab9cf95c4615f8f9e95be905d4d93e0d249ed3a95eb0b2f919a0d944ac485
MD5 b14964c0bc8c93d1f28eca9a4ee65536
BLAKE2b-256 3c65917895837569ca276b3fbf7ac4580f4f578e59226d390a097689270eb867

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 354.7 kB
  • Tags: CPython 3.9, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f43fccd9be709d5f0c87008d0b7657dafb7371b802fe49d81684e270ee83770b
MD5 1688a703dffcab64038b2dab84bd2033
BLAKE2b-256 c537cd9feda1675294938789ac90b2af639b0f9606e0a0906a64b13f6db5fa60

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-none-win_amd64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 242.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7aca5dce6a764104fbdb012d1541db2fd9177b708508d9a68cf28b0c6ad154a0
MD5 033e109255031edf2c10162b65b5a83a
BLAKE2b-256 1c07494ce85ccc381c4553b5e84dab299e251d4e9319964881209f033da44a0c

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-none-win32.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp38-none-win32.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e5292c571ba774e0de9c364b1457535132bd3289c39b8c1e097bde1f6abf6c6d
MD5 c5e07af10228d00ea3e9ef103d76d9c3
BLAKE2b-256 f2a266b8383deb118502dbc1c0ec2840f909b0bbd1dad27551c1d2ca596a1f75

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06b78f6d5b79b6ca385931cc63f2757b5892960f1c95e918e4874b67e190c0e3
MD5 bda31eeb248566d59c58e3061d189391
BLAKE2b-256 a4c5303158c96ebeb01817e0609696663b74ca38f3c4ef29610f1bb93426dd44

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aea59d93c8c78159d6b2e7d41883ab33acdea0cae651cd6d16e2735e8ba383c1
MD5 4057f7b08f91a3ce5989d8065ea08866
BLAKE2b-256 9aa175d31d8310eb5960a453b8d925544576fcb48b6cb03d171a5bf4b1765c43

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e61b54798346943256923cfa7faecd94176c8c00924c91f5a4a7bf3bd8787185
MD5 893a585976f85decb8bfda4e2bd3017c
BLAKE2b-256 5fe7265e6989a7ca9253f414f9721864f902de895543311f038a45ed614f18f9

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a19636228c5b1725e6994d1af4d2672144f167fb25a57630af75e9dec50d9e8
MD5 b2540c7d6f306beca6fdb3504293cbf0
BLAKE2b-256 6262b35b487c774a7db23779345018c13c1ccad1b9f4a631dbe26a7baad32c07

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5737eeb266b8164ee91f8f07123f50c3342317955f436f78fd88899ea96625aa
MD5 583f12764802a051e1d06eb7149a39fe
BLAKE2b-256 9a77b3df1caed7e1548d256fbddc6721c17d15930fc3280da77411ff623e24a1

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c54c8021d978e09ec0fadc7dba808639f0154e014e4ab48cd434406ddf9415c3
MD5 8ea34ce9cf19b39235619cfcf766b853
BLAKE2b-256 7207079ae4d75fe8c089574089c33413618c3cdcface26b1c5526e3ea80f38aa

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0f52624fa7dba4b81e9b37ca49a11a4db4e952b70362168eff7c31390ab79e3
MD5 86323e165771d5b0391ab7a882217483
BLAKE2b-256 5ce5560987d212225a6ab220f7ddc6ef4e3c8867af0dd266d987cf0c56eff1a8

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 751b03546514aa4bfed1ddbf52b3350cc68b96d3cab4aa465513fceb7a480f2c
MD5 ab034b048ab64bd9f673da20c8a48a58
BLAKE2b-256 35e267bd18ffd568033f8dcda742e2fe7e7c2d28d8abdcbb8f3c4cb798d96202

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 354.6 kB
  • Tags: CPython 3.8, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2ecc85951b067690a39fc5bff881096027c7eb4ac66c4041caff3d6b840745e3
MD5 fbf228153199a4b8ee5d47c832917a0a
BLAKE2b-256 ecfa835af266c7588a1d37fccb7f2263a7d5d0fcd5fcf421be03f6aa56db74da

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-none-win_amd64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 242.0 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 bf66ff0b4090b578c00b1fb59681197866324265620a22e591e8e87752394713
MD5 a8c89bcf36d5796d9d5762ed9939c038
BLAKE2b-256 4dfa141a4762e9fbeedb1fb84dea267454f96b9c04f1465aef9c6f0a2554d959

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-none-win32.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp37-none-win32.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 d2f777c56289fafbf58823cda2fac3a6e9b082980e6ffdbb0f03811f7054350d
MD5 5c2e0feb14970f795ed82d4633b22462
BLAKE2b-256 d0dc8683127652f90eb74c9761a5b56f1eff8151927957659b85a84c3770c775

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 718ba260d1790547e61b986518ff5d2fbe09c9ca77981873ac31a713d7fc1e88
MD5 6b9ab80f3500dd909575e69fedfae4d8
BLAKE2b-256 b931a85464b82c2049b20396ba938f6a27b8a57423c497ec144a23cb9d7cbf95

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b265c46590908bc5392a276d5cc4082e39edcd364ea984f28bc6546c76d0e9c4
MD5 39630512e6de1e186cb55d92f0dc4d9a
BLAKE2b-256 35fa502e8da763e2459a1755a5a84f31dc22123ed0a8711dc679a32aa12ba19a

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 0ad78c97b229d47b8fa86951790dd1ae6c86bda00a4b7cffa7fd950b2a4fc717
MD5 676b5e7e7f6f8e5ab0df9bf7211505e5
BLAKE2b-256 0aca39e72fbaa6bff93e80610f0c1b7bea40e76cbbf42be9c3b9420d2f369472

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c84836e985cc4bdee9e18918d3937a460f16d6d32cbdfe27c0a699a2d967b9b1
MD5 cd130eb310d975bb9f39ded25a3b6342
BLAKE2b-256 f872c589c7f33e970511ca4f01cda6d59df58405a13670c97f86ed13909d9c6d

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a4110c6cd2c2382bdcdfd9347aed29df0462048aeaafe9b5ecb8fe4b310111f
MD5 3606fdacf5e3971dc07913c8ddb415da
BLAKE2b-256 f07aa07c1eb59a42e24863b7284ce3bc09bd3e5f8f6b29298a686c435991ca44

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e8f60edad93d44b5e97ffe4b20fd558278dbf06d56bba85905503fd7741a4649
MD5 4a5a1831274da5a0c038c3a5fb1fb8cd
BLAKE2b-256 8299fec0d4da35d73d3c29e85874ea33b862284f311a67a6487502d66ad71598

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9bff5928c8d5dbc6ceb397aa789343b8ccabe7ba12f1fa893666c322de2966e3
MD5 578dd52577ed7d4b45a7eab0f3a97807
BLAKE2b-256 d9be1de6f7f3070a96a08701cf9e5ff11f65e53f204af29ccee5d4b51192e525

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 84b8f8b6da01bdf41c2f8ecd3bdac7ca755f9b4e4c9cc0a24d4e22921967a6e0
MD5 3a287454df27088675ffd0633b75fa9b
BLAKE2b-256 fda34680ef660f105584a3bce794753d4f7e531d771633c4b6a1c9ae1c266a56

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 354.9 kB
  • Tags: CPython 3.7m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5403bb01d62f6ae0227ff8fc33b19978bf4929f29954767d01e6c8b55e5bd6c9
MD5 8caad044901a48f53fb6b8cba77e57a6
BLAKE2b-256 c27dd6792da3126f60b88a68cca00f222586bc7772588d1b4ca2636504dcbd91

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-none-win_amd64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp36-none-win_amd64.whl
  • Upload date:
  • Size: 242.1 kB
  • Tags: CPython 3.6, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp36-none-win_amd64.whl
Algorithm Hash digest
SHA256 416efbc4c8af2237348dc4c7e041632e49e4c12e5c388c8e33fe3f4095da38ce
MD5 e67782a60721adfe0abed389e09e7d98
BLAKE2b-256 8e2f2600cc1ff4a0196c3e1f928edfc3e0e36a34e15991d5013f3275dd965f2e

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-none-win32.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp36-none-win32.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.6, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp36-none-win32.whl
Algorithm Hash digest
SHA256 896c3b392e5afd381a342313dd987a2547fb7f41e90ab2b748113c6cc780310b
MD5 e9691235ce4a4b04ee1e05a67b7d3f3e
BLAKE2b-256 82b9aef29694ee6a7ede861b9307222b388e58d2b68c17d9a63ef065be1307e2

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51ce22ba4506476eabf9af944decdcebdc560f7ec704bfd6ce22377ff8cf13d1
MD5 d14e02b90606aee1cd5fc1200d2a56ff
BLAKE2b-256 fc0b244a63d17e68f011fd8c25c5942f3bc48d0d866a14574b796b844188c536

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4cb397fa0c3ba3951cd3c25787b6a4b21be7f6687e3541583387ccbc4348517a
MD5 fb5f16d1fa758d8221759d6c5a61b8bc
BLAKE2b-256 8b41633770c7f98f8798db444c342842f7e47a10c3673941387c7fdb1e96981c

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 5c21799b9729d7211e4423e7b6cfb7d78d00ba256b93783eff9ea08894b4a271
MD5 29aa824896c74d0932746fffff53a68a
BLAKE2b-256 0a4988a2191c961d2af5c710bff12738f55d3cbb38075f4d8308c5ef4af3e75a

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c51ab19dbdefadc1ab3a5af2d27bd4755486c80f28fa8f4ec3d47596e5f20e08
MD5 9e78761d600e0153e29dd456d04723f0
BLAKE2b-256 3c3f4f03f84f7d96da994b72ca19f602907944b56352fb625fab2ab5fcacca77

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51fa7dd8292b23617a91a57f0be2f2c1280d35f17b6f95e3fd2e131a05fa0472
MD5 6ec738f10004a9235befb87172c9cccf
BLAKE2b-256 cbc571f7ffabd48b079d6b58264052f518ed3598950632e3c165a373ef86296d

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 58621e647603e6577f5b5a0445d13c50695b31d4a86204e289f0deb9949fe97e
MD5 caf674f627ea57e4e1f44941e42de4bc
BLAKE2b-256 9f0567eb79b8ac550f5e82abf737f3e9b451fc20e45dd6d4bd7ab0592ad8c6f7

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c21b8597ce1ae153e306a138deff5c71e35a9ce06d03f2f573e4a0b47866b7d7
MD5 86ceaf44d999f575dbc12d7a2b7821ba
BLAKE2b-256 f0ee2ba7ea1b13575f201ac512f0c9529c65c83c7e67b7a8b451bf92d816a531

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0dc31974e6c7785e8466df18fda0f8bcf50112073f28c8e63047fec3be528deb
MD5 2e7a102f228805ca0ef426a27273fd1b
BLAKE2b-256 8860d577a2f8ed87786f7755a6eadfa31a3f9183adc5176a38edc120781cb30e

See more details on using hashes here.

File details

Details for the file dbt_extractor-0.4.0-cp36-cp36m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: dbt_extractor-0.4.0-cp36-cp36m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 354.9 kB
  • Tags: CPython 3.6m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for dbt_extractor-0.4.0-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 18e2d5371704d09e4aea6d98949f15ce84c721e8e5667cfb07a6c0b64938d8b8
MD5 c9c5c34ae0a30d8072d68d5a9a4996cc
BLAKE2b-256 f2352c385db455165ea0f4c583ab6d27357210879167b39f58c80b45409bf960

See more details on using hashes here.

Release history Release notifications | RSS feed

0.6.0

16 files

0.5.1

16 files

0.5.0

15 files

0.4.1

16 files

This release

0.4.0 This release

53 files

0.3.0

44 files

0.2.0

44 files

0.1.0

44 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page