arnmatch 0.3.1__tar.gz → 0.3.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.
- arnmatch-0.3.1/README.md → arnmatch-0.3.2/PKG-INFO +14 -0
- arnmatch-0.3.1/PKG-INFO → arnmatch-0.3.2/README.md +6 -8
- {arnmatch-0.3.1 → arnmatch-0.3.2}/pyproject.toml +1 -1
- {arnmatch-0.3.1 → arnmatch-0.3.2}/src/arnmatch/__init__.py +1 -1
- {arnmatch-0.3.1 → arnmatch-0.3.2}/.github/workflows/workflow.yml +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/.gitignore +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/.python-version +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/CLAUDE.md +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/Makefile +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/codegen/.gitignore +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/codegen/codegen.py +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/codegen/scraper.py +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/src/arnmatch/arn_patterns.py +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/tests/test_arnmatch.py +0 -0
- {arnmatch-0.3.1 → arnmatch-0.3.2}/uv.lock +0 -0
|
@@ -1,9 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: arnmatch
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Summary: Parse AWS ARNs into structured data (2000+ resource types)
|
|
5
|
+
Author-email: Andrey Gubarev <andrey@andreygubarev.com>
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
1
9
|
# arnmatch
|
|
2
10
|
|
|
3
11
|
Parse AWS ARNs into structured data.
|
|
4
12
|
|
|
5
13
|

|
|
6
14
|
|
|
15
|
+
## Why
|
|
16
|
+
|
|
17
|
+
AWS ARN formats are inconsistent. This problem was unsolved. Now it's solved (for 2000+ resource types from 300+ services). You're welcome.
|
|
18
|
+
|
|
7
19
|
## Features
|
|
8
20
|
|
|
9
21
|
- Zero runtime dependencies
|
|
@@ -88,6 +100,8 @@ Prerequisites: [uv](https://github.com/astral-sh/uv)
|
|
|
88
100
|
|
|
89
101
|
```bash
|
|
90
102
|
make lint # Run ruff linter
|
|
103
|
+
make test # Run pytest tests
|
|
104
|
+
make check # Run lint and test
|
|
91
105
|
make build # Build wheel and tarball
|
|
92
106
|
make publish # Build and upload to PyPI
|
|
93
107
|
make clean # Remove build artifacts
|
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: arnmatch
|
|
3
|
-
Version: 0.3.1
|
|
4
|
-
Summary: Parse AWS ARNs into structured data
|
|
5
|
-
Author-email: Andrey Gubarev <andrey@andreygubarev.com>
|
|
6
|
-
Requires-Python: >=3.10
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
|
-
|
|
9
1
|
# arnmatch
|
|
10
2
|
|
|
11
3
|
Parse AWS ARNs into structured data.
|
|
12
4
|
|
|
13
5
|

|
|
14
6
|
|
|
7
|
+
## Why
|
|
8
|
+
|
|
9
|
+
AWS ARN formats are inconsistent. This problem was unsolved. Now it's solved (for 2000+ resource types from 300+ services). You're welcome.
|
|
10
|
+
|
|
15
11
|
## Features
|
|
16
12
|
|
|
17
13
|
- Zero runtime dependencies
|
|
@@ -96,6 +92,8 @@ Prerequisites: [uv](https://github.com/astral-sh/uv)
|
|
|
96
92
|
|
|
97
93
|
```bash
|
|
98
94
|
make lint # Run ruff linter
|
|
95
|
+
make test # Run pytest tests
|
|
96
|
+
make check # Run lint and test
|
|
99
97
|
make build # Build wheel and tarball
|
|
100
98
|
make publish # Build and upload to PyPI
|
|
101
99
|
make clean # Remove build artifacts
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "arnmatch"
|
|
3
3
|
dynamic = ["version"]
|
|
4
|
-
description = "Parse AWS ARNs into structured data"
|
|
4
|
+
description = "Parse AWS ARNs into structured data (2000+ resource types)"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
7
7
|
{ name = "Andrey Gubarev", email = "andrey@andreygubarev.com" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|