snapctl 1.4.1__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.
- snapctl-1.4.1/LICENSE +29 -0
- snapctl-1.4.1/PKG-INFO +1011 -0
- snapctl-1.4.1/README.md +989 -0
- snapctl-1.4.1/pyproject.toml +41 -0
- snapctl-1.4.1/snapctl/__init__.py +0 -0
- snapctl-1.4.1/snapctl/__main__.py +5 -0
- snapctl-1.4.1/snapctl/commands/__init__.py +0 -0
- snapctl-1.4.1/snapctl/commands/application.py +135 -0
- snapctl-1.4.1/snapctl/commands/byogs.py +501 -0
- snapctl-1.4.1/snapctl/commands/byosnap.py +1653 -0
- snapctl-1.4.1/snapctl/commands/byows.py +487 -0
- snapctl-1.4.1/snapctl/commands/game.py +135 -0
- snapctl-1.4.1/snapctl/commands/generate.py +155 -0
- snapctl-1.4.1/snapctl/commands/release_notes.py +65 -0
- snapctl-1.4.1/snapctl/commands/snapend.py +1138 -0
- snapctl-1.4.1/snapctl/commands/snapend_manifest.py +897 -0
- snapctl-1.4.1/snapctl/commands/snaps.py +109 -0
- snapctl-1.4.1/snapctl/config/__init__.py +0 -0
- snapctl-1.4.1/snapctl/config/app.py +31 -0
- snapctl-1.4.1/snapctl/config/constants.py +137 -0
- snapctl-1.4.1/snapctl/config/endpoints.py +16 -0
- snapctl-1.4.1/snapctl/config/hashes.py +256 -0
- snapctl-1.4.1/snapctl/data/__init__.py +0 -0
- snapctl-1.4.1/snapctl/data/profiles/__init__.py +0 -0
- snapctl-1.4.1/snapctl/data/profiles/snapser-byosnap-profile.json +62 -0
- snapctl-1.4.1/snapctl/data/profiles/snapser-byosnap-profile.yaml +54 -0
- snapctl-1.4.1/snapctl/data/profiles/snapser-byosnap-profile.yml +54 -0
- snapctl-1.4.1/snapctl/data/releases/1.0.0.mdx +7 -0
- snapctl-1.4.1/snapctl/data/releases/1.0.2.mdx +5 -0
- snapctl-1.4.1/snapctl/data/releases/1.0.3.mdx +4 -0
- snapctl-1.4.1/snapctl/data/releases/1.0.4.mdx +5 -0
- snapctl-1.4.1/snapctl/data/releases/1.1.0.mdx +20 -0
- snapctl-1.4.1/snapctl/data/releases/1.1.2.mdx +8 -0
- snapctl-1.4.1/snapctl/data/releases/1.1.3.mdx +5 -0
- snapctl-1.4.1/snapctl/data/releases/1.1.4.mdx +14 -0
- snapctl-1.4.1/snapctl/data/releases/1.1.5.mdx +5 -0
- snapctl-1.4.1/snapctl/data/releases/1.4.0.mdx +5 -0
- snapctl-1.4.1/snapctl/data/releases/1.4.1.mdx +5 -0
- snapctl-1.4.1/snapctl/data/releases/__init__.py +0 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.46.0.mdx +55 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.46.4.mdx +7 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.47.0.mdx +12 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.47.1.mdx +11 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.47.2.mdx +5 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.48.0.mdx +19 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.49.0.mdx +9 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.49.1.mdx +6 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.49.2.mdx +6 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.49.3.mdx +7 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.50.0.mdx +10 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.51.0.mdx +6 -0
- snapctl-1.4.1/snapctl/data/releases/beta-0.53.1.mdx +6 -0
- snapctl-1.4.1/snapctl/main.py +1031 -0
- snapctl-1.4.1/snapctl/types/__init__.py +0 -0
- snapctl-1.4.1/snapctl/types/definitions.py +28 -0
- snapctl-1.4.1/snapctl/utils/__init__.py +0 -0
- snapctl-1.4.1/snapctl/utils/echo.py +52 -0
- snapctl-1.4.1/snapctl/utils/exceptions.py +8 -0
- snapctl-1.4.1/snapctl/utils/helper.py +214 -0
- snapctl-1.4.1/snapctl/utils/telemetry.py +165 -0
snapctl-1.4.1/LICENSE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Snapser Inc. Proprietary License
|
|
2
|
+
|
|
3
|
+
This CLI tool, its source code, and any accompanying documentation (collectively referred to as the "Software") are the property of Snapser Inc. ("Snapser"). The Software is provided under the following license terms and conditions:
|
|
4
|
+
|
|
5
|
+
1. License Grant:
|
|
6
|
+
Snapser grants you a non-exclusive, non-transferable, revocable license to use the Software solely for your internal business purposes. You may not distribute, sublicense, rent, lease, sell, or otherwise transfer the Software or any portion thereof.
|
|
7
|
+
|
|
8
|
+
2. Restrictions:
|
|
9
|
+
You may not modify, adapt, translate, reverse engineer, decompile, disassemble, or create derivative works based on the Software. You may not remove or alter any copyright, trademark, or other proprietary rights notices contained in the Software.
|
|
10
|
+
|
|
11
|
+
3. Ownership:
|
|
12
|
+
The Software and all intellectual property rights therein are and shall remain the exclusive property of Snapser Inc. Nothing in this license agreement shall be construed to transfer ownership of the Software to you.
|
|
13
|
+
|
|
14
|
+
4. Term and Termination:
|
|
15
|
+
This license is effective until terminated by either party. Snapser may terminate this license at any time if you breach any of its terms and conditions. Upon termination, you must immediately cease all use of the Software and destroy all copies thereof.
|
|
16
|
+
|
|
17
|
+
5. Disclaimer of Warranty:
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, SNAPSER DISCLAIMS ALL WARRANTIES, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. SNAPSER DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET YOUR REQUIREMENTS OR THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE.
|
|
19
|
+
|
|
20
|
+
6. Limitation of Liability:
|
|
21
|
+
IN NO EVENT SHALL SNAPSER BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, BUSINESS INTERRUPTION, LOSS OF INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF SNAPSER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
|
22
|
+
|
|
23
|
+
7. Governing Law:
|
|
24
|
+
This license agreement shall be governed by and construed in accordance with the laws of the United States of America, excluding its conflicts of law principles. Any disputes arising out of or in connection with this agreement shall be subject to the exclusive jurisdiction of the courts located in the United States of America.
|
|
25
|
+
|
|
26
|
+
By using the Software, you agree to be bound by the terms and conditions of this license agreement. If you do not agree to these terms and conditions, do not use the Software.
|
|
27
|
+
|
|
28
|
+
Snapser Inc.
|
|
29
|
+
June 4, 2024
|