Skip to content

Commit

Permalink
Add Datacoves sponsor (calogica#256)
Browse files Browse the repository at this point in the history
* Add Datacoves sponsor

* Update image links

* Add image link

* Add sponsor table

* Update table
  • Loading branch information
clausherther authored May 3, 2023
1 parent 61051ae commit 4ae828c
Showing 1 changed file with 48 additions and 7 deletions.
55 changes: 48 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,54 @@

Development of `dbt-expectations` (and `dbt-date`) is funded by our amazing [sponsors](https://github.com/sponsors/calogica), including our **featured** sponsors:

### aggua (<a href="https://www.aggua.io/" target="_blank">www.aggua.io</a>)
<table width="80%">
<tr>

<td width="40%" valign="top" align="center">
<p><a href="https://www.aggua.io/" target="_blank">www.aggua.io</a></p>
<p>
<a href="https://www.aggua.io/" target="_blank">
<img width="40%" src="https://uploads-ssl.webflow.com/628f445aa439cdd1dfb160c0/62b4295accb569ec87d751a5_aggua-logo.svg"/>
</a>
</p>
</td>

<td width="40%" valign="top" align="center">
<p><a href="https://datacoves.com/product" target="_blank">datacoves.com</a></p>
<p>
<a href="https://datacoves.com/product" target="_blank">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/datacoves/dbt-coves/blob/main/images/datacoves-dark.png">
<img alt="Datacoves" src="https://github.com/datacoves/dbt-coves/blob/main/images/datacoves-light.png" width="150">
</picture>
</a>
</p>
</td>

<a href="https://www.aggua.io/" target="_blank"><img width="80%" src="https://uploads-ssl.webflow.com/628f445aa439cdd1dfb160c0/62b4295accb569ec87d751a5_aggua-logo.svg"/></a>
</tr>

### Elementary (<a href="https://www.elementary-data.com/" target="_blank">www.elementary-data.com</a>)
<tr>
<td width="40%" valign="top" align="center">
<p><a href="https://www.elementary-data.com/" target="_blank">www.elementary-data.com</a></p>
<p>
<a href="https://www.elementary-data.com/" target="_blank">
<img width="40%" src="https://raw.githubusercontent.com/elementary-data/elementary/master/static/header_git.png"/>
</a>
</p>
</td>

<a href="https://www.elementary-data.com/" target="_blank"><img width="80%" src="https://raw.githubusercontent.com/elementary-data/elementary/master/static/header_git.png"/></a>
<td width="40%" valign="top" align="center">
<p><a href="https://www.getre.io/" target="_blank">www.getre.io</a></p>
<p>
<a href="https://www.getre.io/" target="_blank">
<img width="30%" src="https://uploads-ssl.webflow.com/60bdbc7b0c4f5aa1568dc8cc/60df3224a3b3637230f335d6_REDATA%20LOGO%2011.svg"/>
</a>
</p>
</td>

### re_data (<a href="https://www.getre.io/" target="_blank">www.getre.io</a>)
</tr>

<a href="https://www.getre.io/" target="_blank"><img width="30%" src="https://uploads-ssl.webflow.com/60bdbc7b0c4f5aa1568dc8cc/60df3224a3b3637230f335d6_REDATA%20LOGO%2011.svg"/></a>
</table>

## Install

Expand Down Expand Up @@ -138,7 +175,7 @@ For example, use `America/New_York` for East Coast Time.

### Multi-column

- [expect_column_pair_values_A_to_be_greater_than_B](#expect_column_pair_values_A_to_be_greater_than_B)
- [expect_column_pair_values_A_to_be_greater_than_B](#expect_column_pair_values_a_to_be_greater_than_b)
- [expect_column_pair_values_to_be_equal](#expect_column_pair_values_to_be_equal)
- [expect_column_pair_values_to_be_in_set](#expect_column_pair_values_to_be_in_set)
- [expect_compound_columns_to_be_unique](#expect_compound_columns_to_be_unique)
Expand Down Expand Up @@ -602,6 +639,7 @@ tests:
Expect column entries to be strings that match a given regular expression. Valid matches can be found anywhere in the string, for example "[at]+" will identify the following strings as expected: "cat", "hat", "aa", "a", and "t", and the following strings as unexpected: "fish", "dog".

Optional (keyword) arguments:

- `is_raw` indicates the `regex` pattern is a "raw" string and should be escaped. The default is `False`.
- `flags` is a string of one or more characters that are passed to the regex engine as flags (or parameters). Allowed flags are adapter-specific. A common flag is `i`, for case-insensitive matching. The default is no flags.

Expand All @@ -621,6 +659,7 @@ tests:
Expect column entries to be strings that do NOT match a given regular expression. The regex must not match any portion of the provided string. For example, "[at]+" would identify the following strings as expected: "fish”, "dog”, and the following as unexpected: "cat”, "hat”.

Optional (keyword) arguments:

- `is_raw` indicates the `regex` pattern is a "raw" string and should be escaped. The default is `False`.
- `flags` is a string of one or more characters that are passed to the regex engine as flags (or parameters). Allowed flags are adapter-specific. A common flag is `i`, for case-insensitive matching. The default is no flags.

Expand All @@ -640,6 +679,7 @@ tests:
Expect the column entries to be strings that can be matched to either any of or all of a list of regular expressions. Matches can be anywhere in the string.

Optional (keyword) arguments:

- `is_raw` indicates the `regex` pattern is a "raw" string and should be escaped. The default is `False`.
- `flags` is a string of one or more characters that are passed to the regex engine as flags (or parameters). Allowed flags are adapter-specific. A common flag is `i`, for case-insensitive matching. The default is no flags.

Expand All @@ -660,6 +700,7 @@ tests:
Expect the column entries to be strings that do not match any of a list of regular expressions. Matches can be anywhere in the string.

Optional (keyword) arguments:

- `is_raw` indicates the `regex` pattern is a "raw" string and should be escaped. The default is `False`.
- `flags` is a string of one or more characters that are passed to the regex engine as flags (or parameters). Allowed flags are adapter-specific. A common flag is `i`, for case-insensitive matching. The default is no flags.

Expand Down

0 comments on commit 4ae828c

Please sign in to comment.