tha-wright-stuff 0.1.7__tar.gz → 0.1.9__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.
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.github/workflows/bump-dep-floors.yml +1 -5
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/PKG-INFO +21 -6
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/README.md +19 -4
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/pyproject.toml +2 -2
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/src/tha_wright_stuff/__init__.py +4 -1
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.github/dependabot.yml +0 -0
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.github/workflows/ci.yml +0 -0
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.github/workflows/dep-floors-check.yml +0 -0
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.github/workflows/dependabot-auto-merge.yml +0 -0
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.github/workflows/publish.yml +0 -0
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.gitignore +0 -0
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/src/tha_wright_stuff/py.typed +0 -0
- {tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/tests/test_imports.py +0 -0
|
@@ -88,10 +88,6 @@ jobs:
|
|
|
88
88
|
print(f"pyproject.toml updated -- version {old_ver} -> {new_ver}")
|
|
89
89
|
PYEOF
|
|
90
90
|
|
|
91
|
-
- name: Update lockfile
|
|
92
|
-
if: steps.check.outputs.changed == 'true'
|
|
93
|
-
run: uv lock
|
|
94
|
-
|
|
95
91
|
- name: Commit and open PR
|
|
96
92
|
if: steps.check.outputs.changed == 'true'
|
|
97
93
|
run: |
|
|
@@ -99,7 +95,7 @@ jobs:
|
|
|
99
95
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
100
96
|
BRANCH="chore/bump-dep-floors-$(date +%Y%m%d)"
|
|
101
97
|
git checkout -b "$BRANCH"
|
|
102
|
-
git add pyproject.toml
|
|
98
|
+
git add pyproject.toml
|
|
103
99
|
git commit -m "chore: bump tha-* dependency floors to v${{ steps.check.outputs.new_version }}"
|
|
104
100
|
git push origin "$BRANCH"
|
|
105
101
|
gh pr create \
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tha-wright-stuff
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: A Tabular Helper meta-package that bundles the full tha-* library family in a single install.
|
|
5
5
|
Project-URL: Homepage, https://github.com/tha-guy-nate/tha-wright-stuff
|
|
6
6
|
Project-URL: Issues, https://github.com/tha-guy-nate/tha-wright-stuff/issues
|
|
@@ -24,7 +24,7 @@ Requires-Dist: tha-edfi-runner>=0.1.3
|
|
|
24
24
|
Requires-Dist: tha-google-runner>=0.1.6
|
|
25
25
|
Requires-Dist: tha-map-runner>=0.2.8
|
|
26
26
|
Requires-Dist: tha-req-runner>=0.2.3
|
|
27
|
-
Requires-Dist: tha-snowflake-runner>=0.1.
|
|
27
|
+
Requires-Dist: tha-snowflake-runner>=0.1.3
|
|
28
28
|
Requires-Dist: tha-utils-helper>=0.2.4
|
|
29
29
|
Provides-Extra: all
|
|
30
30
|
Requires-Dist: tha-req-runner[httpx]; extra == 'all'
|
|
@@ -42,8 +42,8 @@ Description-Content-Type: text/markdown
|
|
|
42
42
|
> Install the entire Tabular Helper (`tha-*`) library family in one shot.
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
pip install tha-wright-stuff
|
|
46
|
-
pip install tha-wright-stuff
|
|
45
|
+
pip install tha-wright-stuff[all] # recommended: core family + all optional extras
|
|
46
|
+
pip install tha-wright-stuff # core family only
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
---
|
|
@@ -57,7 +57,22 @@ pip install tha-wright-stuff[all] # + all optional extras (httpx backend, etc.
|
|
|
57
57
|
One install pulls in every `tha-*` library and re-exports all of their public symbols from a single namespace. Instead of installing and importing from eight separate packages, you can just do:
|
|
58
58
|
|
|
59
59
|
```python
|
|
60
|
-
|
|
60
|
+
# AWS
|
|
61
|
+
from tha_wright_stuff import ThaDdb, ThaGsi, ThaS3, ThaSSM, DdbCostTracker, cli_auth_check, current_identity, parse_arn, parse_assumed_role_arn
|
|
62
|
+
# CSV
|
|
63
|
+
from tha_wright_stuff import ThaCSV
|
|
64
|
+
# Ed-Fi
|
|
65
|
+
from tha_wright_stuff import ThaEdfiBase, ThaStudentAssessment
|
|
66
|
+
# Google
|
|
67
|
+
from tha_wright_stuff import ThaSheets, ThaDocs, ThaDrive, ThaSlides, ThaGmail
|
|
68
|
+
# Map
|
|
69
|
+
from tha_wright_stuff import ThaMap
|
|
70
|
+
# Requests
|
|
71
|
+
from tha_wright_stuff import ThaReq
|
|
72
|
+
# Snowflake
|
|
73
|
+
from tha_wright_stuff import ThaSnowflake, Session, list_profiles
|
|
74
|
+
# Utils
|
|
75
|
+
from tha_wright_stuff import ThaStr, ThaNum, ThaDT, ThaDict, ThaList, ThaType
|
|
61
76
|
```
|
|
62
77
|
|
|
63
78
|
Every public class, function, and error type from all eight libraries is available at the top level.
|
|
@@ -87,7 +102,7 @@ Every public class, function, and error type from all eight libraries is availab
|
|
|
87
102
|
|
|
88
103
|
- Python 3.10+
|
|
89
104
|
|
|
90
|
-
All eight libraries are installed automatically as dependencies.
|
|
105
|
+
All eight libraries are installed automatically as dependencies. The `[all]` extra additionally installs optional extras across the family (currently `tha-req-runner[httpx]` for the httpx transport backend).
|
|
91
106
|
|
|
92
107
|
---
|
|
93
108
|
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
> Install the entire Tabular Helper (`tha-*`) library family in one shot.
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
pip install tha-wright-stuff
|
|
10
|
-
pip install tha-wright-stuff
|
|
9
|
+
pip install tha-wright-stuff[all] # recommended: core family + all optional extras
|
|
10
|
+
pip install tha-wright-stuff # core family only
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
---
|
|
@@ -21,7 +21,22 @@ pip install tha-wright-stuff[all] # + all optional extras (httpx backend, etc.
|
|
|
21
21
|
One install pulls in every `tha-*` library and re-exports all of their public symbols from a single namespace. Instead of installing and importing from eight separate packages, you can just do:
|
|
22
22
|
|
|
23
23
|
```python
|
|
24
|
-
|
|
24
|
+
# AWS
|
|
25
|
+
from tha_wright_stuff import ThaDdb, ThaGsi, ThaS3, ThaSSM, DdbCostTracker, cli_auth_check, current_identity, parse_arn, parse_assumed_role_arn
|
|
26
|
+
# CSV
|
|
27
|
+
from tha_wright_stuff import ThaCSV
|
|
28
|
+
# Ed-Fi
|
|
29
|
+
from tha_wright_stuff import ThaEdfiBase, ThaStudentAssessment
|
|
30
|
+
# Google
|
|
31
|
+
from tha_wright_stuff import ThaSheets, ThaDocs, ThaDrive, ThaSlides, ThaGmail
|
|
32
|
+
# Map
|
|
33
|
+
from tha_wright_stuff import ThaMap
|
|
34
|
+
# Requests
|
|
35
|
+
from tha_wright_stuff import ThaReq
|
|
36
|
+
# Snowflake
|
|
37
|
+
from tha_wright_stuff import ThaSnowflake, Session, list_profiles
|
|
38
|
+
# Utils
|
|
39
|
+
from tha_wright_stuff import ThaStr, ThaNum, ThaDT, ThaDict, ThaList, ThaType
|
|
25
40
|
```
|
|
26
41
|
|
|
27
42
|
Every public class, function, and error type from all eight libraries is available at the top level.
|
|
@@ -51,7 +66,7 @@ Every public class, function, and error type from all eight libraries is availab
|
|
|
51
66
|
|
|
52
67
|
- Python 3.10+
|
|
53
68
|
|
|
54
|
-
All eight libraries are installed automatically as dependencies.
|
|
69
|
+
All eight libraries are installed automatically as dependencies. The `[all]` extra additionally installs optional extras across the family (currently `tha-req-runner[httpx]` for the httpx transport backend).
|
|
55
70
|
|
|
56
71
|
---
|
|
57
72
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tha-wright-stuff"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.9"
|
|
8
8
|
description = "A Tabular Helper meta-package that bundles the full tha-* library family in a single install."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -31,7 +31,7 @@ dependencies = [
|
|
|
31
31
|
"tha-utils-helper>=0.2.4",
|
|
32
32
|
"tha-edfi-runner>=0.1.3",
|
|
33
33
|
"tha-google-runner>=0.1.6",
|
|
34
|
-
"tha-snowflake-runner>=0.1.
|
|
34
|
+
"tha-snowflake-runner>=0.1.3",
|
|
35
35
|
]
|
|
36
36
|
|
|
37
37
|
[project.optional-dependencies]
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
"""tha-wright-stuff: the full tha-* Tabular Helper library family in one install."""
|
|
2
2
|
|
|
3
|
+
from importlib.metadata import version
|
|
4
|
+
|
|
5
|
+
__version__ = version("tha-wright-stuff")
|
|
6
|
+
|
|
3
7
|
from tha_aws_runner import (
|
|
4
8
|
AWSBase,
|
|
5
9
|
AWSClients,
|
|
@@ -39,7 +43,6 @@ from tha_utils_helper import (
|
|
|
39
43
|
UtilsError,
|
|
40
44
|
)
|
|
41
45
|
|
|
42
|
-
__version__ = "0.1.4"
|
|
43
46
|
__all__ = [
|
|
44
47
|
"AWSBase",
|
|
45
48
|
"AWSClients",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tha_wright_stuff-0.1.7 → tha_wright_stuff-0.1.9}/.github/workflows/dependabot-auto-merge.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|