json-chamber 1.4.0__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.
- json_chamber-1.4.0/LICENSE +24 -0
- json_chamber-1.4.0/LICENSE.AGPL-3.0 +661 -0
- json_chamber-1.4.0/LICENSE.BSL-1.1 +96 -0
- json_chamber-1.4.0/LICENSE.COMMERCIAL +29 -0
- json_chamber-1.4.0/NOTICE +10 -0
- json_chamber-1.4.0/PKG-INFO +83 -0
- json_chamber-1.4.0/README.md +58 -0
- json_chamber-1.4.0/json_chamber/__init__.py +61 -0
- json_chamber-1.4.0/json_chamber/api.py +46 -0
- json_chamber-1.4.0/json_chamber/benefit.py +289 -0
- json_chamber-1.4.0/json_chamber/core.py +200 -0
- json_chamber-1.4.0/json_chamber/license.py +350 -0
- json_chamber-1.4.0/json_chamber/test_aont.py +29 -0
- json_chamber-1.4.0/json_chamber.egg-info/PKG-INFO +83 -0
- json_chamber-1.4.0/json_chamber.egg-info/SOURCES.txt +18 -0
- json_chamber-1.4.0/json_chamber.egg-info/dependency_links.txt +1 -0
- json_chamber-1.4.0/json_chamber.egg-info/requires.txt +8 -0
- json_chamber-1.4.0/json_chamber.egg-info/top_level.txt +1 -0
- json_chamber-1.4.0/pyproject.toml +31 -0
- json_chamber-1.4.0/setup.cfg +4 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Chamber SDK is available under two licenses. You choose one.
|
|
2
|
+
|
|
3
|
+
1. GNU Affero General Public License v3.0 or later
|
|
4
|
+
See LICENSE.AGPL-3.0
|
|
5
|
+
|
|
6
|
+
2. Slid Phi Labs Commercial License
|
|
7
|
+
See LICENSE.COMMERCIAL
|
|
8
|
+
Use this with a live Chamber seat to seal JSON in a closed product without AGPL source-offer.
|
|
9
|
+
|
|
10
|
+
This grant never includes Combined GC, LBR1 / splb / ASMD,
|
|
11
|
+
AWARE encoder source, Chamber kernel, or Agent-Rider signing keys
|
|
12
|
+
unless the invoice names them.
|
|
13
|
+
|
|
14
|
+
Copyright (c) 2026 Slid Phi Labs / Corey Tasz.
|
|
15
|
+
|
|
16
|
+
Legal identity
|
|
17
|
+
- Trade name: Slid Phi Labs
|
|
18
|
+
- Public author / copyright: Corey Tasz
|
|
19
|
+
- Legal name on manuscript: Corey Robert Ptaszenski
|
|
20
|
+
|
|
21
|
+
Seats and current terms: https://www.slidphilabs.com/licensing.json
|
|
22
|
+
Contact: corey@slidphilabs.com
|
|
23
|
+
|
|
24
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
|