recce-cloud-nightly 1.25.0.20251117a0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. recce_cloud_nightly-1.25.0.20251117a0/LICENSE +201 -0
  2. recce_cloud_nightly-1.25.0.20251117a0/PKG-INFO +163 -0
  3. recce_cloud_nightly-1.25.0.20251117a0/README.md +129 -0
  4. recce_cloud_nightly-1.25.0.20251117a0/pyproject.toml +15 -0
  5. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/VERSION +1 -0
  6. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/__init__.py +24 -0
  7. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/api/__init__.py +17 -0
  8. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/api/base.py +111 -0
  9. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/api/client.py +150 -0
  10. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/api/exceptions.py +26 -0
  11. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/api/factory.py +63 -0
  12. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/api/github.py +76 -0
  13. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/api/gitlab.py +82 -0
  14. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/artifact.py +57 -0
  15. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/ci_providers/__init__.py +9 -0
  16. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/ci_providers/base.py +82 -0
  17. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/ci_providers/detector.py +147 -0
  18. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/ci_providers/github_actions.py +136 -0
  19. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/ci_providers/gitlab_ci.py +130 -0
  20. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/cli.py +245 -0
  21. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud/upload.py +214 -0
  22. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud_nightly.egg-info/PKG-INFO +163 -0
  23. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud_nightly.egg-info/SOURCES.txt +39 -0
  24. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud_nightly.egg-info/dependency_links.txt +1 -0
  25. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud_nightly.egg-info/entry_points.txt +2 -0
  26. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud_nightly.egg-info/requires.txt +3 -0
  27. recce_cloud_nightly-1.25.0.20251117a0/recce_cloud_nightly.egg-info/top_level.txt +1 -0
  28. recce_cloud_nightly-1.25.0.20251117a0/setup.cfg +4 -0
  29. recce_cloud_nightly-1.25.0.20251117a0/setup.py +88 -0
  30. recce_cloud_nightly-1.25.0.20251117a0/setup_cloud.py +63 -0
  31. recce_cloud_nightly-1.25.0.20251117a0/tests/test_cli.py +236 -0
  32. recce_cloud_nightly-1.25.0.20251117a0/tests/test_cli_mcp_optional.py +45 -0
  33. recce_cloud_nightly-1.25.0.20251117a0/tests/test_cloud_listing_cli.py +324 -0
  34. recce_cloud_nightly-1.25.0.20251117a0/tests/test_config.py +43 -0
  35. recce_cloud_nightly-1.25.0.20251117a0/tests/test_connect_to_cloud.py +82 -0
  36. recce_cloud_nightly-1.25.0.20251117a0/tests/test_core.py +174 -0
  37. recce_cloud_nightly-1.25.0.20251117a0/tests/test_dbt.py +36 -0
  38. recce_cloud_nightly-1.25.0.20251117a0/tests/test_mcp_server.py +332 -0
  39. recce_cloud_nightly-1.25.0.20251117a0/tests/test_pull_request.py +130 -0
  40. recce_cloud_nightly-1.25.0.20251117a0/tests/test_server.py +104 -0
  41. recce_cloud_nightly-1.25.0.20251117a0/tests/test_summary.py +73 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2023 InfuseAI Inc.
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,163 @@
1
+ Metadata-Version: 2.4
2
+ Name: recce-cloud-nightly
3
+ Version: 1.25.0.20251117a0
4
+ Summary: Lightweight CLI for Recce Cloud operations
5
+ Home-page: https://github.com/InfuseAI/recce
6
+ Author: InfuseAI Dev Team
7
+ Author-email: dev@infuseai.io
8
+ Project-URL: Bug Tracker, https://github.com/InfuseAI/recce/issues
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Development Status :: 4 - Beta
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: click>=7.1
21
+ Requires-Dist: requests>=2.28.1
22
+ Requires-Dist: rich>=12.0.0
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: license-file
30
+ Dynamic: project-url
31
+ Dynamic: requires-dist
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+ <p align="center">
36
+ <a href="https://reccehq.com">
37
+ <picture>
38
+ <source media="(prefers-color-scheme: dark)" srcset="https://reccehq.com/assets/images/recce-logo-stacked.avif">
39
+ <source media="(prefers-color-scheme: light)" srcset="https://reccehq.com/assets/images/recce-logo-stacked.avif">
40
+ <img alt="Recce: DataRecce.io" src="https://reccehq.com/assets/images/recce-logo-stacked.avif" width="200" style="display: block; margin: 0 auto 20px;">
41
+ </picture>
42
+ </a>
43
+ </p>
44
+
45
+ <h3 align="center">Helping data teams preview, validate, and ship data changes with confidence.</h3>
46
+
47
+ <p align="center">
48
+ <a href="https://pypi.org/project/recce/"><img src="https://img.shields.io/badge/pip_install-recce-006DAD?style=flat-square" alt="install"></a> &nbsp;
49
+ <a href="https://pypi.org/project/recce/"><img src="https://img.shields.io/pypi/v/recce?style=flat-square" alt="pipy"></a> &nbsp;
50
+ <a href="https://pypi.org/project/recce/"><img src="https://img.shields.io/pypi/pyversions/recce?style=flat-square" alt="Python"></a> &nbsp;
51
+ <a href="https://pypi.org/project/recce/#files"><img src="https://img.shields.io/pypi/dw/recce?style=flat-square" alt="downloads"></a> &nbsp;
52
+ <a href="https://github.com/DataRecce/recce/blob/main/LICENSE"><img src="https://img.shields.io/github/license/DataRecce/recce?style=flat-square" alt="license"></a> &nbsp;
53
+ <a href="https://getdbt.slack.com/archives/C05C28V7CPP"><img src="https://img.shields.io/badge/Slack-4A154B?style=flat-square&amp;logo=slack&amp;logoColor=white" alt="Slack"></a> &nbsp;
54
+ <a href="https://discord.com/invite/5zb2aK9KBV"><img src="https://img.shields.io/discord/664381609771925514?color=%237289DA&amp;label=chat&amp;logo=discord&amp;logoColor=white&amp;style=flat-square" alt="InfuseAI Discord Invite"></a> &nbsp;
55
+ </p>
56
+
57
+ <p align="center">
58
+ <a href="https://cal.com/team/recce/chat?utm_source=banner&utm_campaign=oss">
59
+ <img alt="Book us with Cal.com" src="https://cal.com/book-with-cal-light.svg" />
60
+ </a>
61
+ </p>
62
+
63
+ ## Trust, Verify, Ship
64
+ Cut dbt review time by 90% and ship accurate data fast
65
+
66
+ Recce gives data teams a faster, more reliable way to understand, review, and ship changes without all the guesswork or manual overhead.
67
+
68
+ ## Quick Start
69
+
70
+ ### Installation
71
+
72
+ Recce offers two packages to fit different use cases:
73
+
74
+ **For full local development and Recce Cloud features:**
75
+ ```bash
76
+ pip install -U recce
77
+ recce server
78
+ ```
79
+
80
+ **For CI/CD artifact uploads only (lightweight):**
81
+ ```bash
82
+ pip install -U recce-cloud
83
+ recce-cloud upload
84
+ ```
85
+
86
+ The `recce-cloud` package is a lightweight CLI tool designed specifically for CI/CD environments where you only need to upload dbt artifacts to Recce Cloud. It has minimal dependencies and installs faster than the full `recce` package.
87
+
88
+ ### Getting Started
89
+
90
+ You can launch Recce in any dbt project in just two commands:
91
+
92
+ ```bash
93
+ # cd into your dbt project
94
+ pip install -U recce
95
+ recce server
96
+ ```
97
+
98
+ This starts Recce locally, where you can explore lineage and run queries. To unlock the full set of diffing tools, such as data comparisons and impact checks, you'll need to prepare two environments to compare against. You can follow our [Getting Started](https://docs.reccehq.com/get-started/) and [5-minute Jaffle Shop tutorial](https://docs.reccehq.com/get-started-jaffle-shop/) to try it out step-by-step.
99
+
100
+ ## What You Get
101
+
102
+ Recce gives you a clear, fast way to understand what your data changes are doing and why they matter. It helps you catch problems early, verify metrics, and share your findings with others, all as part of your normal workflow.
103
+
104
+ <a href="https://pr46.demo.reccehq.com/"><img width="1347" alt="readme" src="https://github.com/user-attachments/assets/773e4c3a-0a15-49e0-8d1b-38a55af17cb0" /></a>
105
+
106
+ <a href="https://reccehq.com"><img src="https://docs.reccehq.com/assets/images/1-whats-recce/diff-readme2.png" style="width: 100%; max-width: 600px; display: block; margin: 0 auto 20px;" alt="Model and column level diff"/></a>
107
+
108
+ <a href="https://reccehq.com"><img src="https://docs.reccehq.com/assets/images/1-whats-recce/checklist-readme3.png" style="width: 100%; max-width: 600px; display: block; margin: 0 auto 20px;" alt="Checklist for collaboration"/></a>
109
+
110
+ ### Using Recce for Impact Assessment in dbt PR Review
111
+
112
+ - Select nodes in the lineage to perform Checks (diffs) as part of your impact assessment during development or PR
113
+ review.
114
+ - Add Checks to your Checklist to note observed impacts.
115
+ - Share your Checklist with the PR reviewer.
116
+ - (`Recce Cloud`) Automatically sync Check status between Recce Instances
117
+ - (`Recce Cloud`) Block PR merging until all Recce Checks have been approved
118
+
119
+ Read more about using Recce on our [blog](https://blog.reccehq.com).
120
+
121
+ ### What’s Included
122
+
123
+ - [Lineage and impact mapping](https://docs.reccehq.com/features/lineage/): Quickly see which models and columns are affected by a change. Navigate lineage down to the column level, and spot breaking changes with clear visual cues.
124
+ - Metric and data comparisons: Use [Profile, Value, Top-K, and Histogram Diffs](https://docs.reccehq.com/features/lineage/#node-details) to compare results before and after changes. Validate things like row counts, category distributions, and numeric ranges without writing extra SQL.
125
+ - [Query diff](https://docs.reccehq.com/features/query/): Write and compare any two queries side by side. This is helpful when validating fixes or reviewing changes with teammates.
126
+ - [Checklist for reviews and approvals](https://docs.reccehq.com/features/checklist/): Turn your validation steps into a checklist. Add notes, rerun checks, and share the results with reviewers or stakeholders. In Recce Cloud, checklists can sync automatically and even block PRs until checks are approved.
127
+ - Secure by design: Recce is [SOC 2 compliant](https://trust.reccehq.com/) to meet enterprise security standards. It runs locally or in your private environment, and your data stays in your warehouse.
128
+
129
+ 👉 Want to dive deeper? Check out the [full documentation](https://docs.reccehq.com/).
130
+
131
+ ## Recce Cloud
132
+
133
+ Ready to collaborate and move faster as a team? Recce Cloud adds real-time collaboration, automatic checklist sync, and PR gating, so nothing gets merged without a full review.
134
+
135
+ - Share checklists across environments
136
+ - Invite stakeholders to review data changes
137
+ - Block merges until all Checks are approved
138
+ - Launch demo links from your CI with full context
139
+
140
+ Recce Cloud is a hosted version of Recce that standardizes your workflow, keeps teams aligned, and reduces errors—so you can ship data changes with confidence.
141
+ 👉 [View Pricing and Plans](https://reccehq.com/pricing)
142
+
143
+ ## Community & Support
144
+
145
+ Here's where you can get in touch with the Recce team and find support, add a subscribe to our newsletter option as well:
146
+
147
+ - [chat on our website](https://reccehq.com/). We welcome you to start a chat or drop us a note. Our team monitors the chat box and will follow up soon.
148
+ - [Our discord](https://discord.com/invite/VpwXRC34jz)
149
+ - [dbt Slack](https://www.getdbt.com/community/join-the-community) in the [#tools-recce](https://getdbt.slack.com/archives/C05C28V7CPP) channel
150
+ - Email us [help@reccehq.com](mailto:help@reccehq.com)
151
+
152
+ If you believe you have found a bug on our open source, or there is some missing functionality in Recce, please open a [GitHub Issue](https://github.com/DataRecce/recce/issues).
153
+
154
+ ## Recce on the web
155
+
156
+ You can follow along with news about Recce and blogs from our team in the following places:
157
+
158
+ - [RecceHQ.com](https://reccehq.com/)
159
+ - [LinkedIn](https://www.linkedin.com/company/datarecce)
160
+ - [Blog](https://blog.reccehq.com/)
161
+ - [@datarecce](https://x.com/DataRecce) on Twitter/X
162
+ - [@DataRecce@mastodon.social](https://mastodon.social/@DataRecce) on Mastodon
163
+ - [@datarecce.bsky.social](https://bsky.app/profile/datarecce.bsky.social) on BlueSky
@@ -0,0 +1,129 @@
1
+ <p align="center">
2
+ <a href="https://reccehq.com">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://reccehq.com/assets/images/recce-logo-stacked.avif">
5
+ <source media="(prefers-color-scheme: light)" srcset="https://reccehq.com/assets/images/recce-logo-stacked.avif">
6
+ <img alt="Recce: DataRecce.io" src="https://reccehq.com/assets/images/recce-logo-stacked.avif" width="200" style="display: block; margin: 0 auto 20px;">
7
+ </picture>
8
+ </a>
9
+ </p>
10
+
11
+ <h3 align="center">Helping data teams preview, validate, and ship data changes with confidence.</h3>
12
+
13
+ <p align="center">
14
+ <a href="https://pypi.org/project/recce/"><img src="https://img.shields.io/badge/pip_install-recce-006DAD?style=flat-square" alt="install"></a> &nbsp;
15
+ <a href="https://pypi.org/project/recce/"><img src="https://img.shields.io/pypi/v/recce?style=flat-square" alt="pipy"></a> &nbsp;
16
+ <a href="https://pypi.org/project/recce/"><img src="https://img.shields.io/pypi/pyversions/recce?style=flat-square" alt="Python"></a> &nbsp;
17
+ <a href="https://pypi.org/project/recce/#files"><img src="https://img.shields.io/pypi/dw/recce?style=flat-square" alt="downloads"></a> &nbsp;
18
+ <a href="https://github.com/DataRecce/recce/blob/main/LICENSE"><img src="https://img.shields.io/github/license/DataRecce/recce?style=flat-square" alt="license"></a> &nbsp;
19
+ <a href="https://getdbt.slack.com/archives/C05C28V7CPP"><img src="https://img.shields.io/badge/Slack-4A154B?style=flat-square&amp;logo=slack&amp;logoColor=white" alt="Slack"></a> &nbsp;
20
+ <a href="https://discord.com/invite/5zb2aK9KBV"><img src="https://img.shields.io/discord/664381609771925514?color=%237289DA&amp;label=chat&amp;logo=discord&amp;logoColor=white&amp;style=flat-square" alt="InfuseAI Discord Invite"></a> &nbsp;
21
+ </p>
22
+
23
+ <p align="center">
24
+ <a href="https://cal.com/team/recce/chat?utm_source=banner&utm_campaign=oss">
25
+ <img alt="Book us with Cal.com" src="https://cal.com/book-with-cal-light.svg" />
26
+ </a>
27
+ </p>
28
+
29
+ ## Trust, Verify, Ship
30
+ Cut dbt review time by 90% and ship accurate data fast
31
+
32
+ Recce gives data teams a faster, more reliable way to understand, review, and ship changes without all the guesswork or manual overhead.
33
+
34
+ ## Quick Start
35
+
36
+ ### Installation
37
+
38
+ Recce offers two packages to fit different use cases:
39
+
40
+ **For full local development and Recce Cloud features:**
41
+ ```bash
42
+ pip install -U recce
43
+ recce server
44
+ ```
45
+
46
+ **For CI/CD artifact uploads only (lightweight):**
47
+ ```bash
48
+ pip install -U recce-cloud
49
+ recce-cloud upload
50
+ ```
51
+
52
+ The `recce-cloud` package is a lightweight CLI tool designed specifically for CI/CD environments where you only need to upload dbt artifacts to Recce Cloud. It has minimal dependencies and installs faster than the full `recce` package.
53
+
54
+ ### Getting Started
55
+
56
+ You can launch Recce in any dbt project in just two commands:
57
+
58
+ ```bash
59
+ # cd into your dbt project
60
+ pip install -U recce
61
+ recce server
62
+ ```
63
+
64
+ This starts Recce locally, where you can explore lineage and run queries. To unlock the full set of diffing tools, such as data comparisons and impact checks, you'll need to prepare two environments to compare against. You can follow our [Getting Started](https://docs.reccehq.com/get-started/) and [5-minute Jaffle Shop tutorial](https://docs.reccehq.com/get-started-jaffle-shop/) to try it out step-by-step.
65
+
66
+ ## What You Get
67
+
68
+ Recce gives you a clear, fast way to understand what your data changes are doing and why they matter. It helps you catch problems early, verify metrics, and share your findings with others, all as part of your normal workflow.
69
+
70
+ <a href="https://pr46.demo.reccehq.com/"><img width="1347" alt="readme" src="https://github.com/user-attachments/assets/773e4c3a-0a15-49e0-8d1b-38a55af17cb0" /></a>
71
+
72
+ <a href="https://reccehq.com"><img src="https://docs.reccehq.com/assets/images/1-whats-recce/diff-readme2.png" style="width: 100%; max-width: 600px; display: block; margin: 0 auto 20px;" alt="Model and column level diff"/></a>
73
+
74
+ <a href="https://reccehq.com"><img src="https://docs.reccehq.com/assets/images/1-whats-recce/checklist-readme3.png" style="width: 100%; max-width: 600px; display: block; margin: 0 auto 20px;" alt="Checklist for collaboration"/></a>
75
+
76
+ ### Using Recce for Impact Assessment in dbt PR Review
77
+
78
+ - Select nodes in the lineage to perform Checks (diffs) as part of your impact assessment during development or PR
79
+ review.
80
+ - Add Checks to your Checklist to note observed impacts.
81
+ - Share your Checklist with the PR reviewer.
82
+ - (`Recce Cloud`) Automatically sync Check status between Recce Instances
83
+ - (`Recce Cloud`) Block PR merging until all Recce Checks have been approved
84
+
85
+ Read more about using Recce on our [blog](https://blog.reccehq.com).
86
+
87
+ ### What’s Included
88
+
89
+ - [Lineage and impact mapping](https://docs.reccehq.com/features/lineage/): Quickly see which models and columns are affected by a change. Navigate lineage down to the column level, and spot breaking changes with clear visual cues.
90
+ - Metric and data comparisons: Use [Profile, Value, Top-K, and Histogram Diffs](https://docs.reccehq.com/features/lineage/#node-details) to compare results before and after changes. Validate things like row counts, category distributions, and numeric ranges without writing extra SQL.
91
+ - [Query diff](https://docs.reccehq.com/features/query/): Write and compare any two queries side by side. This is helpful when validating fixes or reviewing changes with teammates.
92
+ - [Checklist for reviews and approvals](https://docs.reccehq.com/features/checklist/): Turn your validation steps into a checklist. Add notes, rerun checks, and share the results with reviewers or stakeholders. In Recce Cloud, checklists can sync automatically and even block PRs until checks are approved.
93
+ - Secure by design: Recce is [SOC 2 compliant](https://trust.reccehq.com/) to meet enterprise security standards. It runs locally or in your private environment, and your data stays in your warehouse.
94
+
95
+ 👉 Want to dive deeper? Check out the [full documentation](https://docs.reccehq.com/).
96
+
97
+ ## Recce Cloud
98
+
99
+ Ready to collaborate and move faster as a team? Recce Cloud adds real-time collaboration, automatic checklist sync, and PR gating, so nothing gets merged without a full review.
100
+
101
+ - Share checklists across environments
102
+ - Invite stakeholders to review data changes
103
+ - Block merges until all Checks are approved
104
+ - Launch demo links from your CI with full context
105
+
106
+ Recce Cloud is a hosted version of Recce that standardizes your workflow, keeps teams aligned, and reduces errors—so you can ship data changes with confidence.
107
+ 👉 [View Pricing and Plans](https://reccehq.com/pricing)
108
+
109
+ ## Community & Support
110
+
111
+ Here's where you can get in touch with the Recce team and find support, add a subscribe to our newsletter option as well:
112
+
113
+ - [chat on our website](https://reccehq.com/). We welcome you to start a chat or drop us a note. Our team monitors the chat box and will follow up soon.
114
+ - [Our discord](https://discord.com/invite/VpwXRC34jz)
115
+ - [dbt Slack](https://www.getdbt.com/community/join-the-community) in the [#tools-recce](https://getdbt.slack.com/archives/C05C28V7CPP) channel
116
+ - Email us [help@reccehq.com](mailto:help@reccehq.com)
117
+
118
+ If you believe you have found a bug on our open source, or there is some missing functionality in Recce, please open a [GitHub Issue](https://github.com/DataRecce/recce/issues).
119
+
120
+ ## Recce on the web
121
+
122
+ You can follow along with news about Recce and blogs from our team in the following places:
123
+
124
+ - [RecceHQ.com](https://reccehq.com/)
125
+ - [LinkedIn](https://www.linkedin.com/company/datarecce)
126
+ - [Blog](https://blog.reccehq.com/)
127
+ - [@datarecce](https://x.com/DataRecce) on Twitter/X
128
+ - [@DataRecce@mastodon.social](https://mastodon.social/@DataRecce) on Mastodon
129
+ - [@datarecce.bsky.social](https://bsky.app/profile/datarecce.bsky.social) on BlueSky
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [tool.black]
6
+ line-length = 120
7
+
8
+ [tool.isort]
9
+ profile = "black"
10
+
11
+ [tool.pytest.ini_options]
12
+ markers = [
13
+ "asyncio: mark test as an async test (used by pytest-asyncio)",
14
+ ]
15
+ asyncio_default_fixture_loop_scope = "function"
@@ -0,0 +1 @@
1
+ 1.25.0.20251117a0
@@ -0,0 +1,24 @@
1
+ """Recce Cloud - Lightweight CLI for Recce Cloud operations."""
2
+
3
+ import os
4
+
5
+
6
+ def get_version():
7
+ """Get version from VERSION file."""
8
+ # Try recce_cloud/VERSION first (for standalone package)
9
+ version_file = os.path.join(os.path.dirname(__file__), "VERSION")
10
+ if os.path.exists(version_file):
11
+ with open(version_file) as fh:
12
+ return fh.read().strip()
13
+
14
+ # Fallback to ../recce/VERSION (for development)
15
+ version_file = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "recce", "VERSION"))
16
+ if os.path.exists(version_file):
17
+ with open(version_file) as fh:
18
+ return fh.read().strip()
19
+
20
+ # Last resort
21
+ return "unknown"
22
+
23
+
24
+ __version__ = get_version()
@@ -0,0 +1,17 @@
1
+ """Recce Cloud API client module."""
2
+
3
+ from recce_cloud.api.base import BaseRecceCloudClient
4
+ from recce_cloud.api.client import RecceCloudClient
5
+ from recce_cloud.api.exceptions import RecceCloudException
6
+ from recce_cloud.api.factory import create_platform_client
7
+ from recce_cloud.api.github import GitHubRecceCloudClient
8
+ from recce_cloud.api.gitlab import GitLabRecceCloudClient
9
+
10
+ __all__ = [
11
+ "BaseRecceCloudClient",
12
+ "RecceCloudClient",
13
+ "RecceCloudException",
14
+ "create_platform_client",
15
+ "GitHubRecceCloudClient",
16
+ "GitLabRecceCloudClient",
17
+ ]