pinky-tools 0.1.0.dev1__py3-none-any.whl
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.
- pinky_tools/__init__.py +1 -0
- pinky_tools/readme.py +1 -0
- pinky_tools/regression.py +1 -0
- pinky_tools/run.py +1 -0
- pinky_tools/validate_name.py +1 -0
- pinky_tools-0.1.0.dev1.dist-info/METADATA +84 -0
- pinky_tools-0.1.0.dev1.dist-info/RECORD +10 -0
- pinky_tools-0.1.0.dev1.dist-info/WHEEL +4 -0
- pinky_tools-0.1.0.dev1.dist-info/entry_points.txt +2 -0
- pinky_tools-0.1.0.dev1.dist-info/licenses/LICENSE +21 -0
pinky_tools/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""pinky-tools — Local dev CLI for Snowflake data engineers."""
|
pinky_tools/readme.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Generate a README from Python AST extraction, with optional Snowflake live enrichment."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Compare two output files (CSV / XLSX) cell-level for regression testing after SP refactors."""
|
pinky_tools/run.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Execute a Snowpark stored procedure locally against a live Snowflake connection."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Validate a schema/repo name against the pinky naming convention and derive dag_name and tags."""
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pinky-tools
|
|
3
|
+
Version: 0.1.0.dev1
|
|
4
|
+
Summary: Local dev CLI for Snowflake data engineers
|
|
5
|
+
Project-URL: Homepage, https://github.com/pinky-and-co/pinky-tools
|
|
6
|
+
Project-URL: Repository, https://github.com/pinky-and-co/pinky-tools
|
|
7
|
+
Project-URL: Issues, https://github.com/pinky-and-co/pinky-tools/issues
|
|
8
|
+
Author: pinky-and-co
|
|
9
|
+
License: MIT License
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2026 pinky-and-co
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
15
|
+
in the Software without restriction, including without limitation the rights
|
|
16
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
18
|
+
furnished to do so, subject to the following conditions:
|
|
19
|
+
|
|
20
|
+
The above copyright notice and this permission notice shall be included in all
|
|
21
|
+
copies or substantial portions of the Software.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
29
|
+
SOFTWARE.
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
Keywords: cli,data-engineering,snowflake,snowpark
|
|
32
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Operating System :: OS Independent
|
|
34
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
35
|
+
Classifier: Topic :: Database
|
|
36
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
37
|
+
Requires-Python: >=3.11
|
|
38
|
+
Requires-Dist: click
|
|
39
|
+
Requires-Dist: openpyxl
|
|
40
|
+
Requires-Dist: rich
|
|
41
|
+
Requires-Dist: rich-click
|
|
42
|
+
Requires-Dist: snowflake-snowpark-python
|
|
43
|
+
Provides-Extra: dev
|
|
44
|
+
Requires-Dist: bandit; extra == 'dev'
|
|
45
|
+
Requires-Dist: mkdocs-material>=9.0; extra == 'dev'
|
|
46
|
+
Requires-Dist: mkdocstrings[python]>=0.25; extra == 'dev'
|
|
47
|
+
Requires-Dist: mypy; extra == 'dev'
|
|
48
|
+
Requires-Dist: pre-commit; extra == 'dev'
|
|
49
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
50
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
51
|
+
Requires-Dist: ruff; extra == 'dev'
|
|
52
|
+
Description-Content-Type: text/markdown
|
|
53
|
+
|
|
54
|
+
# pinky-tools
|
|
55
|
+
|
|
56
|
+
*Update date : 2026-05-31 12:10*
|
|
57
|
+
|
|
58
|
+
Local dev CLI for Snowflake data engineers — run stored procedures locally, generate README docs, and validate naming conventions.
|
|
59
|
+
|
|
60
|
+
Part of the [pinky-and-co](https://github.com/pinky-and-co) suite.
|
|
61
|
+
|
|
62
|
+
## Install
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
pip install pinky-tools
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Quick start
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
pinky run resources/procedure/my_sp.py
|
|
72
|
+
pinky readme
|
|
73
|
+
pinky validate-name "financial__workday_to_altaix__compensation"
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Docs
|
|
77
|
+
|
|
78
|
+
- [Design](docs/explanation/design.md)
|
|
79
|
+
- [Features & roadmap](docs/explanation/features.md)
|
|
80
|
+
- [ADRs](docs/adr/)
|
|
81
|
+
|
|
82
|
+
______________________________________________________________________
|
|
83
|
+
|
|
84
|
+
MIT License
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
pinky_tools/__init__.py,sha256=jkVBXnbBsrXkOubohxoJ2RBDLHt1WwkgZUgtVwbjQlo,66
|
|
2
|
+
pinky_tools/readme.py,sha256=ZDTSSHxIzeTqn48yf8onCOS3sVWJKtFF_dkD0x6_5IE,93
|
|
3
|
+
pinky_tools/regression.py,sha256=U-RdmCLTkIo4mdjaUT35hyM52qAxKPAcRIVXo32_p1E,98
|
|
4
|
+
pinky_tools/run.py,sha256=K011mXGlGqH4uRjci6HMYGjSN6HhQBFZhsebaHz3l38,87
|
|
5
|
+
pinky_tools/validate_name.py,sha256=XKDt6GndjI9mmCa9blTcA53LQTryKJvw33m3VF-FlTk,100
|
|
6
|
+
pinky_tools-0.1.0.dev1.dist-info/METADATA,sha256=MgLxPC8-EMfckOa4Am2-TBSvpEKp6Y7GVncz3GIF700,3114
|
|
7
|
+
pinky_tools-0.1.0.dev1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
8
|
+
pinky_tools-0.1.0.dev1.dist-info/entry_points.txt,sha256=swZ5wQsufwNR7oDv1j0-lgeWZHGAqPTILZh9wDpkCk0,46
|
|
9
|
+
pinky_tools-0.1.0.dev1.dist-info/licenses/LICENSE,sha256=eFBTKlDAqgjiK98KMkZCgFx5VwmJqvgyP7Pd3GGZHAo,1069
|
|
10
|
+
pinky_tools-0.1.0.dev1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 pinky-and-co
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|