unitysvc-services 0.1.1__py3-none-any.whl → 0.1.5__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.
@@ -0,0 +1,182 @@
1
+ Metadata-Version: 2.4
2
+ Name: unitysvc-services
3
+ Version: 0.1.5
4
+ Summary: SDK for digital service providers on UnitySVC
5
+ Author-email: Bo Peng <bo.peng@unitysvc.com>
6
+ Maintainer-email: Bo Peng <bo.peng@unitysvc.com>
7
+ License-Expression: MIT
8
+ Project-URL: bugs, https://github.com/unitysvc/unitysvc-services/issues
9
+ Project-URL: changelog, https://github.com/unitysvc/unitysvc-services/blob/master/changelog.md
10
+ Project-URL: homepage, https://github.com/unitysvc/unitysvc-services
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: typer
15
+ Requires-Dist: pydantic
16
+ Requires-Dist: email-validator
17
+ Requires-Dist: jsonschema
18
+ Requires-Dist: jinja2
19
+ Requires-Dist: rich
20
+ Requires-Dist: httpx
21
+ Requires-Dist: tomli-w
22
+ Provides-Extra: test
23
+ Requires-Dist: coverage; extra == "test"
24
+ Requires-Dist: pytest; extra == "test"
25
+ Requires-Dist: ruff; extra == "test"
26
+ Requires-Dist: mypy; extra == "test"
27
+ Requires-Dist: ipdb; extra == "test"
28
+ Provides-Extra: dev
29
+ Requires-Dist: coverage; extra == "dev"
30
+ Requires-Dist: pytest; extra == "dev"
31
+ Requires-Dist: ruff; extra == "dev"
32
+ Requires-Dist: ty; extra == "dev"
33
+ Requires-Dist: ipdb; extra == "dev"
34
+ Requires-Dist: mkdocs; extra == "dev"
35
+ Requires-Dist: mkdocs-material; extra == "dev"
36
+ Requires-Dist: mkdocs-autorefs; extra == "dev"
37
+ Provides-Extra: docs
38
+ Requires-Dist: mkdocs; extra == "docs"
39
+ Requires-Dist: mkdocs-material; extra == "docs"
40
+ Requires-Dist: mkdocs-autorefs; extra == "docs"
41
+ Dynamic: license-file
42
+
43
+ # UnitySVC Services SDK
44
+
45
+ ![PyPI version](https://img.shields.io/pypi/v/unitysvc-services.svg)
46
+ [![Documentation Status](https://readthedocs.org/projects/unitysvc-services/badge/?version=latest)](https://unitysvc-services.readthedocs.io/en/latest/?version=latest)
47
+
48
+ Client library and CLI tools for sellers and providers of digital service to interact with the UnitySVC platform.
49
+
50
+ **📚 [Full Documentation](https://unitysvc-services.readthedocs.io)** | **🚀 [Getting Started](https://unitysvc-services.readthedocs.io/en/latest/getting-started/)** | **📖 [CLI Reference](https://unitysvc-services.readthedocs.io/en/latest/cli-reference/)**
51
+
52
+ ## Overview
53
+
54
+ UnitySVC Services SDK enables digital service sellers and providers to manage their service offerings through a **local-first, version-controlled workflow**:
55
+
56
+ - **Define** service data using schema-validated files (JSON/TOML)
57
+ - **Manage** everything locally in git-controlled directories
58
+ - **Validate** data against schemas
59
+ - **Test** code examples using provider credentials
60
+ - **Publish** to UnitySVC platform when ready
61
+ - **Automate** with populate scripts for dynamic catalogs
62
+
63
+ ## Installation
64
+
65
+ ```bash
66
+ pip install unitysvc-services
67
+ ```
68
+
69
+ Requires Python 3.11+
70
+
71
+ **CLI Alias:** The command `unitysvc_services` can also be invoked using the shorter alias `usvc`.
72
+
73
+ ## Quick Example
74
+
75
+ ```bash
76
+ # Initialize provider and service (using short alias 'usvc')
77
+ usvc init provider my-provider
78
+ usvc init offering my-service
79
+ usvc init seller my-marketplace
80
+
81
+ # Validate and format
82
+ usvc validate
83
+ usvc format
84
+
85
+ # Test code examples with upstream credentials
86
+ usvc test list --provider fireworks
87
+ usvc test run --provider fireworks --services "llama*"
88
+
89
+ # if you write a script to manage services
90
+ usvc populate
91
+
92
+ # Publish to platform (publishes all: sellers, providers, offerings, listings)
93
+ export UNITYSVC_BASE_URL="https://api.unitysvc.com/api/v1"
94
+ export UNITYSVC_API_KEY="your-api-key"
95
+ usvc publish
96
+
97
+ # Query unitysvc backend to verify data
98
+ usvc query providers --fields id,name,contact_email
99
+ ```
100
+
101
+ ## Key Features
102
+
103
+ - 📋 **Pydantic Models** - Type-safe data models for all entities
104
+ - ✅ **Data Validation** - Comprehensive schema validation
105
+ - 🔄 **Local-First** - Work offline, commit to git, publish when ready
106
+ - 🚀 **CLI Tools** - Complete command-line interface
107
+ - 🤖 **Automation** - Script-based service generation
108
+ - 📝 **Multiple Formats** - Support for JSON and TOML
109
+
110
+ ## Workflows
111
+
112
+ ### Manual Workflow (small catalogs)
113
+
114
+ ```bash
115
+ init → edit files → validate → test → format → publish → verify
116
+ ```
117
+
118
+ ### Automated Workflow (large/dynamic catalogs)
119
+
120
+ ```bash
121
+ init → configure populate script → populate → validate → publish
122
+ ```
123
+
124
+ See [Workflows Documentation](https://unitysvc-services.readthedocs.io/en/latest/workflows/) for details.
125
+
126
+ ## Data Structure
127
+
128
+ ```
129
+ data/
130
+ ├── seller.json # One seller per repo
131
+ ├── ${provider_name}/
132
+ │ ├── provider.json # Provider metadata
133
+ │ ├── docs/ # Shared documentation
134
+ │ └── services/
135
+ │ └── ${service_name}/
136
+ │ ├── service.json # Service offering
137
+ │ └── listing-*.json # Service listing(s)
138
+ ```
139
+
140
+ See [Data Structure Documentation](https://unitysvc-services.readthedocs.io/en/latest/data-structure/) for complete details.
141
+
142
+ ## CLI Commands
143
+
144
+ | Command | Description |
145
+ | ---------- | ------------------------------------------------ |
146
+ | `init` | Initialize new data files from schemas |
147
+ | `list` | List local data files |
148
+ | `query` | Query backend API for published data |
149
+ | `publish` | Publish data to backend |
150
+ | `update` | Update local file fields |
151
+ | `validate` | Validate data consistency |
152
+ | `format` | Format data files |
153
+ | `populate` | Execute provider populate scripts |
154
+ | `test` | Test code examples with upstream API credentials |
155
+
156
+ Run `usvc --help` or see [CLI Reference](https://unitysvc-services.readthedocs.io/en/latest/cli-reference/) for complete documentation.
157
+
158
+ ## Documentation
159
+
160
+ - **[Getting Started](https://unitysvc-services.readthedocs.io/en/latest/getting-started/)** - Installation and first steps
161
+ - **[Data Structure](https://unitysvc-services.readthedocs.io/en/latest/data-structure/)** - File organization rules
162
+ - **[Workflows](https://unitysvc-services.readthedocs.io/en/latest/workflows/)** - Manual and automated patterns
163
+ - **[Documenting Service Listings](https://unitysvc-services.readthedocs.io/en/latest/documenting-services/)** - Add documentation to services
164
+ - **[Creating Code Examples](https://unitysvc-services.readthedocs.io/en/latest/code-examples/)** - Develop and test code examples
165
+ - **[CLI Reference](https://unitysvc-services.readthedocs.io/en/latest/cli-reference/)** - All commands and options
166
+ - **[File Schemas](https://unitysvc-services.readthedocs.io/en/latest/file-schemas/)** - Schema specifications
167
+ - **[Python API](https://unitysvc-services.readthedocs.io/en/latest/api-reference/)** - Programmatic usage
168
+
169
+ ## Links
170
+
171
+ - **PyPI**: https://pypi.org/project/unitysvc-services/
172
+ - **Documentation**: https://unitysvc-services.readthedocs.io
173
+ - **Source Code**: https://github.com/unitysvc/unitysvc-services
174
+ - **Issue Tracker**: https://github.com/unitysvc/unitysvc-services/issues
175
+
176
+ ## License
177
+
178
+ MIT License - see [LICENSE](LICENSE) file for details.
179
+
180
+ ## Contributing
181
+
182
+ Contributions welcome! See [Contributing Guide](https://unitysvc-services.readthedocs.io/en/latest/contributing/) for details.
@@ -0,0 +1,26 @@
1
+ unitysvc_services/__init__.py,sha256=J6F3RlZCJUVjhZoprfbrYCxe3l9ynQQbGO7pf7FyqlM,110
2
+ unitysvc_services/api.py,sha256=d3xY4ElA4aCAl62xrwjZ6qIWUoYT-4Q8wJ8BJbyZzXI,11990
3
+ unitysvc_services/cli.py,sha256=omHzrWk8iZJUjZTE5KCmEK1wnRGGnQk_BNV-hKqucnA,725
4
+ unitysvc_services/format_data.py,sha256=Jl9Vj3fRX852fHSUa5DzO-oiFQwuQHC3WMCDNIlo1Lc,5460
5
+ unitysvc_services/list.py,sha256=QDp9BByaoeFeJxXJN9RQ-jU99mH9Guq9ampfXCbpZmI,7033
6
+ unitysvc_services/populate.py,sha256=jiqS2D3_widV6siPe3OBvw7ZdG9MuddEIOuTUCtMM5c,7605
7
+ unitysvc_services/publisher.py,sha256=mKlY7-zEP8dtldcO8DJtbXVrdOACZCYsu49yP2iSD4w,53855
8
+ unitysvc_services/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ unitysvc_services/query.py,sha256=q0_g5YAl9cPlHpW7k7Y6A-t4fQSdI-_4Jl6g2KgkEm0,24049
10
+ unitysvc_services/scaffold.py,sha256=Y73IX8vskImxSvxDgR0mvEFuAMYnBKfttn3bjcz3jmQ,40331
11
+ unitysvc_services/test.py,sha256=ZwWr2WCfzRBY39tuijK5P2v0VZ7PXwg3tFtJkTOsGrU,28341
12
+ unitysvc_services/update.py,sha256=K9swocTUnqqiSgARo6GmuzTzUySSpyqqPPW4xF7ZU-g,9659
13
+ unitysvc_services/utils.py,sha256=9htuxyzEjjbbAi704td9mOrtPzSOJzY46ALuup6bJW0,13093
14
+ unitysvc_services/validator.py,sha256=sasMpdDhoWZJZ-unrnDhaJfyxHSm3IgQjEdmPvXrFEE,29525
15
+ unitysvc_services/models/__init__.py,sha256=hJCc2KSZmIHlKWKE6GpLGdeVB6LIpyVUKiOKnwmKvCs,200
16
+ unitysvc_services/models/base.py,sha256=cSxOYs_YSrqkQLBKIGVZmK627MyMft7cDn0WnrQlzPM,18736
17
+ unitysvc_services/models/listing_v1.py,sha256=PPb9hIdWQp80AWKLxFXYBDcWXzNcDrO4v6rqt5_i2qo,3083
18
+ unitysvc_services/models/provider_v1.py,sha256=76EK1i0hVtdx_awb00-ZMtSj4Oc9Zp4xZ-DeXmG3iTY,2701
19
+ unitysvc_services/models/seller_v1.py,sha256=oll2ZZBPBDX8wslHrbsCKf_jIqHNte2VEj5RJ9bawR4,3520
20
+ unitysvc_services/models/service_v1.py,sha256=Xpk-K-95M1LRqYM8nNJcll8t-lsW9Xdi2_bVbYNs8-M,3019
21
+ unitysvc_services-0.1.5.dist-info/licenses/LICENSE,sha256=_p8V6A8OMPu2HIztn3O01v0-urZFwk0Dd3Yk_PTIlL8,1065
22
+ unitysvc_services-0.1.5.dist-info/METADATA,sha256=LZrIRYvKsl0t2mptoidJVkjOeNJFbx_a-QgUxEJLsgY,7234
23
+ unitysvc_services-0.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
+ unitysvc_services-0.1.5.dist-info/entry_points.txt,sha256=RBhVHKky3rsOly4jVa29c7UAw5ZwNNWnttmtzozr5O0,97
25
+ unitysvc_services-0.1.5.dist-info/top_level.txt,sha256=GIotQj-Ro2ruR7eupM1r58PWqIHTAq647ORL7E2kneo,18
26
+ unitysvc_services-0.1.5.dist-info/RECORD,,
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
2
  unitysvc_services = unitysvc_services.cli:app
3
+ usvc = unitysvc_services.cli:app
@@ -1,173 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: unitysvc-services
3
- Version: 0.1.1
4
- Summary: SDK for digital service providers on UnitySVC
5
- Author-email: Bo Peng <bo.peng@unitysvc.com>
6
- Maintainer-email: Bo Peng <bo.peng@unitysvc.com>
7
- License: MIT
8
- Project-URL: bugs, https://github.com/unitysvc/unitysvc-services/issues
9
- Project-URL: changelog, https://github.com/unitysvc/unitysvc-services/blob/master/changelog.md
10
- Project-URL: homepage, https://github.com/unitysvc/unitysvc-services
11
- Requires-Python: >=3.11
12
- Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
- Requires-Dist: typer
15
- Requires-Dist: pydantic
16
- Requires-Dist: email-validator
17
- Requires-Dist: jsonschema
18
- Requires-Dist: jinja2
19
- Requires-Dist: rich
20
- Requires-Dist: httpx
21
- Requires-Dist: tomli-w
22
- Provides-Extra: test
23
- Requires-Dist: coverage; extra == "test"
24
- Requires-Dist: pytest; extra == "test"
25
- Requires-Dist: ruff; extra == "test"
26
- Requires-Dist: mypy; extra == "test"
27
- Requires-Dist: ipdb; extra == "test"
28
- Provides-Extra: dev
29
- Requires-Dist: coverage; extra == "dev"
30
- Requires-Dist: pytest; extra == "dev"
31
- Requires-Dist: ruff; extra == "dev"
32
- Requires-Dist: ty; extra == "dev"
33
- Requires-Dist: ipdb; extra == "dev"
34
- Requires-Dist: mkdocs; extra == "dev"
35
- Requires-Dist: mkdocs-material; extra == "dev"
36
- Requires-Dist: mkdocs-autorefs; extra == "dev"
37
- Provides-Extra: docs
38
- Requires-Dist: mkdocs; extra == "docs"
39
- Requires-Dist: mkdocs-material; extra == "docs"
40
- Requires-Dist: mkdocs-autorefs; extra == "docs"
41
- Dynamic: license-file
42
-
43
- # UnitySVC Provider SDK
44
-
45
- ![PyPI version](https://img.shields.io/pypi/v/unitysvc-services.svg)
46
- [![Documentation Status](https://readthedocs.org/projects/unitysvc-services/badge/?version=latest)](https://unitysvc-services.readthedocs.io/en/latest/?version=latest)
47
-
48
- Client library and CLI tools for digital service providers to interact with the UnitySVC platform.
49
-
50
- **📚 [Full Documentation](https://unitysvc-services.readthedocs.io)** | **🚀 [Getting Started](https://unitysvc-services.readthedocs.io/en/latest/getting-started/)** | **📖 [CLI Reference](https://unitysvc-services.readthedocs.io/en/latest/cli-reference/)**
51
-
52
- ## Overview
53
-
54
- UnitySVC Provider SDK enables digital service providers to manage their service offerings through a **local-first, version-controlled workflow**:
55
-
56
- - **Define** service data using schema-validated files (JSON/TOML)
57
- - **Manage** everything locally in git-controlled directories
58
- - **Validate** data against schemas before publishing
59
- - **Publish** to UnitySVC platform when ready
60
- - **Automate** with populate scripts for dynamic catalogs
61
-
62
- ## Installation
63
-
64
- ```bash
65
- pip install unitysvc-services
66
- ```
67
-
68
- Requires Python 3.11+
69
-
70
- ## Quick Example
71
-
72
- ```bash
73
- # Initialize provider and service
74
- unitysvc_services init provider my-provider
75
- unitysvc_services init offering my-service
76
- unitysvc_services init seller my-marketplace
77
-
78
- # Validate and format
79
- unitysvc_services validate
80
- unitysvc_services format
81
-
82
- # Publish to platform
83
- export UNITYSVC_BACKEND_URL="https://api.unitysvc.com/api/v1"
84
- export UNITYSVC_API_KEY="your-api-key"
85
-
86
- unitysvc_services publish providers
87
- unitysvc_services publish sellers
88
- unitysvc_services publish offerings
89
- unitysvc_services publish listings
90
-
91
- # Verify
92
- unitysvc_services query offerings
93
- ```
94
-
95
- ## Key Features
96
-
97
- - 📋 **Pydantic Models** - Type-safe data models for all entities
98
- - ✅ **Data Validation** - Comprehensive schema validation
99
- - 🔄 **Local-First** - Work offline, commit to git, publish when ready
100
- - 🚀 **CLI Tools** - Complete command-line interface
101
- - 🤖 **Automation** - Script-based service generation
102
- - 📝 **Multiple Formats** - Support for JSON and TOML
103
-
104
- ## Workflows
105
-
106
- ### Manual Workflow (small catalogs)
107
-
108
- ```bash
109
- init → edit files → validate → format → publish → verify
110
- ```
111
-
112
- ### Automated Workflow (large/dynamic catalogs)
113
-
114
- ```bash
115
- init provider → configure populate script → populate → validate → publish
116
- ```
117
-
118
- See [Workflows Documentation](https://unitysvc-services.readthedocs.io/en/latest/workflows/) for details.
119
-
120
- ## Data Structure
121
-
122
- ```
123
- data/
124
- ├── seller.json # One seller per repo
125
- ├── ${provider_name}/
126
- │ ├── provider.json # Provider metadata
127
- │ ├── docs/ # Shared documentation
128
- │ └── services/
129
- │ └── ${service_name}/
130
- │ ├── service.json # Service offering
131
- │ └── listing-*.json # Service listing(s)
132
- ```
133
-
134
- See [Data Structure Documentation](https://unitysvc-services.readthedocs.io/en/latest/data-structure/) for complete details.
135
-
136
- ## CLI Commands
137
-
138
- | Command | Description |
139
- |---------|-------------|
140
- | `init` | Initialize new data files from schemas |
141
- | `list` | List local data files |
142
- | `query` | Query backend API for published data |
143
- | `publish` | Publish data to backend |
144
- | `update` | Update local file fields |
145
- | `validate` | Validate data consistency |
146
- | `format` | Format data files |
147
- | `populate` | Execute provider populate scripts |
148
-
149
- Run `unitysvc_services --help` or see [CLI Reference](https://unitysvc-services.readthedocs.io/en/latest/cli-reference/) for complete documentation.
150
-
151
- ## Documentation
152
-
153
- - **[Getting Started](https://unitysvc-services.readthedocs.io/en/latest/getting-started/)** - Installation and first steps
154
- - **[Data Structure](https://unitysvc-services.readthedocs.io/en/latest/data-structure/)** - File organization rules
155
- - **[Workflows](https://unitysvc-services.readthedocs.io/en/latest/workflows/)** - Manual and automated patterns
156
- - **[CLI Reference](https://unitysvc-services.readthedocs.io/en/latest/cli-reference/)** - All commands and options
157
- - **[File Schemas](https://unitysvc-services.readthedocs.io/en/latest/file-schemas/)** - Schema specifications
158
- - **[Python API](https://unitysvc-services.readthedocs.io/en/latest/api-reference/)** - Programmatic usage
159
-
160
- ## Links
161
-
162
- - **PyPI**: https://pypi.org/project/unitysvc-services/
163
- - **Documentation**: https://unitysvc-services.readthedocs.io
164
- - **Source Code**: https://github.com/unitysvc/unitysvc-services
165
- - **Issue Tracker**: https://github.com/unitysvc/unitysvc-services/issues
166
-
167
- ## License
168
-
169
- MIT License - see [LICENSE](LICENSE) file for details.
170
-
171
- ## Contributing
172
-
173
- Contributions welcome! See [Contributing Guide](https://unitysvc-services.readthedocs.io/en/latest/contributing/) for details.
@@ -1,23 +0,0 @@
1
- unitysvc_services/__init__.py,sha256=J6F3RlZCJUVjhZoprfbrYCxe3l9ynQQbGO7pf7FyqlM,110
2
- unitysvc_services/cli.py,sha256=OK0IZyAckxP15jRWU_W49hl3t7XcNRtd8BoDMyRKqNM,682
3
- unitysvc_services/format_data.py,sha256=kwY8BlEY8rC5bd9M15Xo9KgecCik56v7JCPusQDupbE,5636
4
- unitysvc_services/list.py,sha256=jbiDfz__pmWTGIFMDXqcIMkc1zVNHufa9Fy3TtURQ6c,7823
5
- unitysvc_services/populate.py,sha256=yBzYxccurSMAssKp9aMDhVE9jt3bFuA-KKiHtG8vaCM,6792
6
- unitysvc_services/publisher.py,sha256=o1ozRuJ9u7ZgJy4tPMID5TI8_1zlNmxE0A_prznfZ30,34230
7
- unitysvc_services/query.py,sha256=JIRtPsKkG_ZEkD7wfbyRSQ_l5Yr4E6wpMV3M5RqKbak,18159
8
- unitysvc_services/scaffold.py,sha256=Y73IX8vskImxSvxDgR0mvEFuAMYnBKfttn3bjcz3jmQ,40331
9
- unitysvc_services/update.py,sha256=8oktOTreN_3tQ8P2La_rwoBbK71ZHgnPkbY2nQIQTk4,10001
10
- unitysvc_services/utils.py,sha256=0VwhfWjmJi0J6i5l8VUJz1p3cEOqUciJ0PSlK1Xk1Z8,11383
11
- unitysvc_services/validator.py,sha256=02W8KfDuKqVkGAwG3Rm9HQ3Uzp3i4bjwzdaMLKojQEY,27543
12
- unitysvc_services/models/__init__.py,sha256=hJCc2KSZmIHlKWKE6GpLGdeVB6LIpyVUKiOKnwmKvCs,200
13
- unitysvc_services/models/base.py,sha256=ZIfZYp8-tcauzawixy21vZzkzgC4LEtZDhulS4cT66k,13649
14
- unitysvc_services/models/listing_v1.py,sha256=xLnwmqbGHawzxPrKN_idAHXmnaFRzpD4ZZ5qLNHHGeM,2347
15
- unitysvc_services/models/provider_v1.py,sha256=mOC0zs_X7DNamfGNuSSCDR-iwIbAGNpq8kkDcqFgq38,2078
16
- unitysvc_services/models/seller_v1.py,sha256=mcVQBD_HwX2nOe51m_WscmlN0j748GWq0oo-xQXo5o0,3291
17
- unitysvc_services/models/service_v1.py,sha256=u16zqM3khrJoTw_v0d45tMcKXjko5k_v3w8xwUtZ6nM,2720
18
- unitysvc_services-0.1.1.dist-info/licenses/LICENSE,sha256=_p8V6A8OMPu2HIztn3O01v0-urZFwk0Dd3Yk_PTIlL8,1065
19
- unitysvc_services-0.1.1.dist-info/METADATA,sha256=Gi2GHMfG7Gesnu4o8WKsoxBisqbhbHYU-qJ5Ty3x4QA,6291
20
- unitysvc_services-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
21
- unitysvc_services-0.1.1.dist-info/entry_points.txt,sha256=-vodnbPmo7QQmFu8jdG6sCyGRVM727w9Nhwp4Vwau_k,64
22
- unitysvc_services-0.1.1.dist-info/top_level.txt,sha256=GIotQj-Ro2ruR7eupM1r58PWqIHTAq647ORL7E2kneo,18
23
- unitysvc_services-0.1.1.dist-info/RECORD,,