tha-wright-stuff 0.1.0__tar.gz → 0.1.2__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.2/.github/workflows/dependabot-auto-merge.yml +18 -0
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/PKG-INFO +3 -3
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/README.md +1 -1
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/pyproject.toml +2 -2
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/src/tha_wright_stuff/__init__.py +3 -10
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/.github/dependabot.yml +0 -0
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/.github/workflows/ci.yml +0 -0
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/.github/workflows/publish.yml +0 -0
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/.gitignore +0 -0
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/src/tha_wright_stuff/py.typed +0 -0
- {tha_wright_stuff-0.1.0 → tha_wright_stuff-0.1.2}/tests/test_imports.py +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: Dependabot auto-merge
|
|
2
|
+
|
|
3
|
+
on: pull_request
|
|
4
|
+
|
|
5
|
+
permissions:
|
|
6
|
+
contents: write
|
|
7
|
+
pull-requests: write
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
auto-merge:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
if: github.actor == 'dependabot[bot]'
|
|
13
|
+
steps:
|
|
14
|
+
- name: Auto-merge Dependabot PR
|
|
15
|
+
run: gh pr merge --auto --merge "$PR_URL"
|
|
16
|
+
env:
|
|
17
|
+
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
18
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tha-wright-stuff
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
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
|
|
@@ -20,7 +20,7 @@ Requires-Python: >=3.10
|
|
|
20
20
|
Requires-Dist: tha-aws-runner>=0.1.15
|
|
21
21
|
Requires-Dist: tha-csv-runner>=0.2.6
|
|
22
22
|
Requires-Dist: tha-edfi-runner>=0.1.2
|
|
23
|
-
Requires-Dist: tha-google-runner>=0.1.
|
|
23
|
+
Requires-Dist: tha-google-runner>=0.1.2
|
|
24
24
|
Requires-Dist: tha-map-runner>=0.2.7
|
|
25
25
|
Requires-Dist: tha-req-runner>=0.2.2
|
|
26
26
|
Requires-Dist: tha-snowflake-runner>=0.1.1
|
|
@@ -68,7 +68,7 @@ Every public class, function, and error type from all eight libraries is availab
|
|
|
68
68
|
| **tha-csv-runner** | [](https://pypi.org/project/tha-csv-runner/) | [tha-csv-runner](https://github.com/tha-guy-nate/tha-csv-runner) | Read and write CSVs with progress bars, header validation, chunking, sort/filter, and an optional per-row validator callback. |
|
|
69
69
|
| **tha-map-runner** | [](https://pypi.org/project/tha-map-runner/) | [tha-map-runner](https://github.com/tha-guy-nate/tha-map-runner) | Enrich and join dicts using dotted-path projection and O(n+m) index-based lookups. Supports left / inner / anti joins and DynamoDB result shapes. |
|
|
70
70
|
| **tha-req-runner** | [](https://pypi.org/project/tha-req-runner/) | [tha-req-runner](https://github.com/tha-guy-nate/tha-req-runner) | Transport layer for API runners — session management, retries, `safe_call`, and a normalized `parse_response` dict. Supports both `requests` and `httpx` backends. |
|
|
71
|
-
| **tha-aws-runner** | [](https://pypi.org/project/tha-aws-runner/) | [tha-aws-runner](https://github.com/tha-guy-nate/tha-aws-runner) | DynamoDB (`ThaDdb`), GSI queries (`ThaGsi`), S3 (`ThaS3`), SSM Parameter Store (`ThaSSM`),
|
|
71
|
+
| **tha-aws-runner** | [](https://pypi.org/project/tha-aws-runner/) | [tha-aws-runner](https://github.com/tha-guy-nate/tha-aws-runner) | DynamoDB (`ThaDdb`), GSI queries (`ThaGsi`), S3 (`ThaS3`), SSM Parameter Store (`ThaSSM`), a `DdbCostTracker` context manager that tallies RCU/WCU and USD cost per run, and standalone helpers (`cli_auth_check`, `current_identity`, `parse_arn`, `parse_assumed_role_arn`). |
|
|
72
72
|
| **tha-utils-helper** | [](https://pypi.org/project/tha-utils-helper/) | [tha-utils-helper](https://github.com/tha-guy-nate/tha-utils-helper) | Zero-dependency utilities: `ThaStr` (slugify, format), `ThaNum` (currency, parens-as-negative, cast), `ThaDT` (auto-detect date formats), `ThaDict` (pick, omit, rename), `ThaList` (chunk, flatten), `ThaType` (bool/int/float coercion). All include matching `*_rows` batch methods. |
|
|
73
73
|
| **tha-edfi-runner** | [](https://pypi.org/project/tha-edfi-runner/) | [tha-edfi-runner](https://github.com/tha-guy-nate/tha-edfi-runner) | Ed-Fi ODS API client — OAuth client-credentials auth, pagination, and chunked parallel posting via `ThreadPoolExecutor`. |
|
|
74
74
|
| **tha-google-runner** | [](https://pypi.org/project/tha-google-runner/) | [tha-google-runner](https://github.com/tha-guy-nate/tha-google-runner) | Google Sheets reader/writer (`ThaSheets`) using a service account — reads sheets to row dicts, writes row dicts back with optional header control. |
|
|
@@ -35,7 +35,7 @@ Every public class, function, and error type from all eight libraries is availab
|
|
|
35
35
|
| **tha-csv-runner** | [](https://pypi.org/project/tha-csv-runner/) | [tha-csv-runner](https://github.com/tha-guy-nate/tha-csv-runner) | Read and write CSVs with progress bars, header validation, chunking, sort/filter, and an optional per-row validator callback. |
|
|
36
36
|
| **tha-map-runner** | [](https://pypi.org/project/tha-map-runner/) | [tha-map-runner](https://github.com/tha-guy-nate/tha-map-runner) | Enrich and join dicts using dotted-path projection and O(n+m) index-based lookups. Supports left / inner / anti joins and DynamoDB result shapes. |
|
|
37
37
|
| **tha-req-runner** | [](https://pypi.org/project/tha-req-runner/) | [tha-req-runner](https://github.com/tha-guy-nate/tha-req-runner) | Transport layer for API runners — session management, retries, `safe_call`, and a normalized `parse_response` dict. Supports both `requests` and `httpx` backends. |
|
|
38
|
-
| **tha-aws-runner** | [](https://pypi.org/project/tha-aws-runner/) | [tha-aws-runner](https://github.com/tha-guy-nate/tha-aws-runner) | DynamoDB (`ThaDdb`), GSI queries (`ThaGsi`), S3 (`ThaS3`), SSM Parameter Store (`ThaSSM`),
|
|
38
|
+
| **tha-aws-runner** | [](https://pypi.org/project/tha-aws-runner/) | [tha-aws-runner](https://github.com/tha-guy-nate/tha-aws-runner) | DynamoDB (`ThaDdb`), GSI queries (`ThaGsi`), S3 (`ThaS3`), SSM Parameter Store (`ThaSSM`), a `DdbCostTracker` context manager that tallies RCU/WCU and USD cost per run, and standalone helpers (`cli_auth_check`, `current_identity`, `parse_arn`, `parse_assumed_role_arn`). |
|
|
39
39
|
| **tha-utils-helper** | [](https://pypi.org/project/tha-utils-helper/) | [tha-utils-helper](https://github.com/tha-guy-nate/tha-utils-helper) | Zero-dependency utilities: `ThaStr` (slugify, format), `ThaNum` (currency, parens-as-negative, cast), `ThaDT` (auto-detect date formats), `ThaDict` (pick, omit, rename), `ThaList` (chunk, flatten), `ThaType` (bool/int/float coercion). All include matching `*_rows` batch methods. |
|
|
40
40
|
| **tha-edfi-runner** | [](https://pypi.org/project/tha-edfi-runner/) | [tha-edfi-runner](https://github.com/tha-guy-nate/tha-edfi-runner) | Ed-Fi ODS API client — OAuth client-credentials auth, pagination, and chunked parallel posting via `ThreadPoolExecutor`. |
|
|
41
41
|
| **tha-google-runner** | [](https://pypi.org/project/tha-google-runner/) | [tha-google-runner](https://github.com/tha-guy-nate/tha-google-runner) | Google Sheets reader/writer (`ThaSheets`) using a service account — reads sheets to row dicts, writes row dicts back with optional header control. |
|
|
@@ -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.2"
|
|
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" }
|
|
@@ -29,7 +29,7 @@ dependencies = [
|
|
|
29
29
|
"tha-aws-runner>=0.1.15",
|
|
30
30
|
"tha-utils-helper>=0.2.3",
|
|
31
31
|
"tha-edfi-runner>=0.1.2",
|
|
32
|
-
"tha-google-runner>=0.1.
|
|
32
|
+
"tha-google-runner>=0.1.2",
|
|
33
33
|
"tha-snowflake-runner>=0.1.1",
|
|
34
34
|
]
|
|
35
35
|
|
|
@@ -19,7 +19,7 @@ from tha_aws_runner import (
|
|
|
19
19
|
)
|
|
20
20
|
from tha_csv_runner import ConfigError, ThaCSV
|
|
21
21
|
from tha_edfi_runner import EdfiError, ThaEdfiBase, ThaStudentAssessment
|
|
22
|
-
from tha_google_runner import GoogleError, ThaSheets
|
|
22
|
+
from tha_google_runner import GoogleError, ThaDocs, ThaSheets
|
|
23
23
|
from tha_map_runner import MapperError, ThaMap
|
|
24
24
|
from tha_req_runner import ReqError, ThaReq
|
|
25
25
|
from tha_snowflake_runner import Session, SnowflakeError, ThaSnowflake, list_profiles
|
|
@@ -39,39 +39,32 @@ from tha_utils_helper import (
|
|
|
39
39
|
UtilsError,
|
|
40
40
|
)
|
|
41
41
|
|
|
42
|
-
__version__ = "0.1.
|
|
42
|
+
__version__ = "0.1.2"
|
|
43
43
|
__all__ = [
|
|
44
|
-
# tha-aws-runner
|
|
45
44
|
"AWSBase",
|
|
46
45
|
"AWSClients",
|
|
47
46
|
"AwsError",
|
|
48
47
|
"BatchCountResult",
|
|
49
48
|
"BatchQueryResult",
|
|
50
49
|
"BatchUpdateResult",
|
|
51
|
-
# tha-csv-runner
|
|
52
50
|
"ConfigError",
|
|
53
51
|
"DateError",
|
|
54
52
|
"DdbCostTracker",
|
|
55
53
|
"DictUtils",
|
|
56
|
-
# tha-edfi-runner
|
|
57
54
|
"EdfiError",
|
|
58
|
-
# tha-google-runner
|
|
59
55
|
"GoogleError",
|
|
60
56
|
"ListUtils",
|
|
61
|
-
# tha-map-runner
|
|
62
57
|
"MapperError",
|
|
63
58
|
"NumError",
|
|
64
|
-
# tha-req-runner
|
|
65
59
|
"ReqError",
|
|
66
|
-
# tha-snowflake-runner
|
|
67
60
|
"Session",
|
|
68
61
|
"SnowflakeError",
|
|
69
62
|
"StrError",
|
|
70
63
|
"ThaCSV",
|
|
71
64
|
"ThaDT",
|
|
72
65
|
"ThaDdb",
|
|
73
|
-
# tha-utils-helper
|
|
74
66
|
"ThaDict",
|
|
67
|
+
"ThaDocs",
|
|
75
68
|
"ThaEdfiBase",
|
|
76
69
|
"ThaGsi",
|
|
77
70
|
"ThaList",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|