pylocket 1.0.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.
pylocket-1.0.0/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ PyLocket Proprietary License
2
+
3
+ Copyright (c) 2026 PyLocket. All rights reserved.
4
+
5
+ Permission is hereby granted to any person who obtains a copy of this
6
+ software (the "Software") to use the Software solely for the purpose of
7
+ interacting with the PyLocket platform (https://pylocket.com) and its
8
+ associated services.
9
+
10
+ The following restrictions apply:
11
+
12
+ 1. REDISTRIBUTION: You may not redistribute, sublicense, or sell copies
13
+ of the Software without prior written permission from PyLocket.
14
+
15
+ 2. MODIFICATION: You may not modify, reverse engineer, decompile, or
16
+ disassemble the Software.
17
+
18
+ 3. COMMERCIAL USE: The Software may only be used in connection with a
19
+ valid PyLocket account. Use of the Software does not grant any rights
20
+ to the PyLocket platform beyond those provided by your account plan.
21
+
22
+ 4. NO WARRANTY: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
23
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
24
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
26
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY.
27
+
28
+ For licensing inquiries, contact: support@pylocket.com
@@ -0,0 +1,2 @@
1
+ include LICENSE
2
+ include README.md
@@ -0,0 +1,110 @@
1
+ Metadata-Version: 2.4
2
+ Name: pylocket
3
+ Version: 1.0.0
4
+ Summary: PyLocket CLI - Protect and distribute Python applications
5
+ Author-email: PyLocket <support@pylocket.com>
6
+ License: PyLocket Proprietary License
7
+
8
+ Copyright (c) 2026 PyLocket. All rights reserved.
9
+
10
+ Permission is hereby granted to any person who obtains a copy of this
11
+ software (the "Software") to use the Software solely for the purpose of
12
+ interacting with the PyLocket platform (https://pylocket.com) and its
13
+ associated services.
14
+
15
+ The following restrictions apply:
16
+
17
+ 1. REDISTRIBUTION: You may not redistribute, sublicense, or sell copies
18
+ of the Software without prior written permission from PyLocket.
19
+
20
+ 2. MODIFICATION: You may not modify, reverse engineer, decompile, or
21
+ disassemble the Software.
22
+
23
+ 3. COMMERCIAL USE: The Software may only be used in connection with a
24
+ valid PyLocket account. Use of the Software does not grant any rights
25
+ to the PyLocket platform beyond those provided by your account plan.
26
+
27
+ 4. NO WARRANTY: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
28
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
29
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY.
32
+
33
+ For licensing inquiries, contact: support@pylocket.com
34
+
35
+ Project-URL: Homepage, https://pylocket.com
36
+ Project-URL: Documentation, https://docs.pylocket.com
37
+ Project-URL: Developer Portal, https://portal.pylocket.com
38
+ Classifier: Development Status :: 4 - Beta
39
+ Classifier: Environment :: Console
40
+ Classifier: Intended Audience :: Developers
41
+ Classifier: License :: Other/Proprietary License
42
+ Classifier: Operating System :: OS Independent
43
+ Classifier: Programming Language :: Python :: 3
44
+ Classifier: Programming Language :: Python :: 3.9
45
+ Classifier: Programming Language :: Python :: 3.10
46
+ Classifier: Programming Language :: Python :: 3.11
47
+ Classifier: Programming Language :: Python :: 3.12
48
+ Classifier: Programming Language :: Python :: 3.13
49
+ Classifier: Programming Language :: Python :: 3.14
50
+ Classifier: Topic :: Security
51
+ Classifier: Topic :: Software Development :: Build Tools
52
+ Requires-Python: >=3.9
53
+ Description-Content-Type: text/markdown
54
+ License-File: LICENSE
55
+ Requires-Dist: click>=8.1.0
56
+ Requires-Dist: rich>=13.7.0
57
+ Requires-Dist: httpx>=0.27.0
58
+ Dynamic: license-file
59
+
60
+ # PyLocket CLI
61
+
62
+ Protect and distribute Python applications from the command line.
63
+
64
+ ## Installation
65
+
66
+ ```bash
67
+ pip install pylocket
68
+ ```
69
+
70
+ Or download platform-specific binaries from your [Developer Portal](https://portal.pylocket.com/cli).
71
+
72
+ ## Quick Start
73
+
74
+ ```bash
75
+ # Authenticate with your PyLocket account
76
+ pylocket login
77
+
78
+ # List your apps
79
+ pylocket apps list
80
+
81
+ # Protect a PyInstaller executable
82
+ pylocket protect --app <APP_ID> --artifact dist/myapp.exe
83
+
84
+ # Check build status
85
+ pylocket status --build <BUILD_ID>
86
+
87
+ # Download the protected artifact
88
+ pylocket fetch --build <BUILD_ID> --out ./protected/
89
+ ```
90
+
91
+ ## Commands
92
+
93
+ | Command | Description |
94
+ |---------|-------------|
95
+ | `pylocket login` | Authenticate with your PyLocket account |
96
+ | `pylocket apps list` | List all your applications |
97
+ | `pylocket apps create` | Create a new application |
98
+ | `pylocket protect` | Upload and protect an artifact |
99
+ | `pylocket status` | Check build protection status |
100
+ | `pylocket fetch` | Download a protected artifact |
101
+
102
+ ## Documentation
103
+
104
+ Full documentation: [docs.pylocket.com](https://docs.pylocket.com)
105
+
106
+ ## Support
107
+
108
+ - Documentation: https://docs.pylocket.com
109
+ - Developer Portal: https://portal.pylocket.com
110
+ - Email: support@pylocket.com
@@ -0,0 +1,51 @@
1
+ # PyLocket CLI
2
+
3
+ Protect and distribute Python applications from the command line.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install pylocket
9
+ ```
10
+
11
+ Or download platform-specific binaries from your [Developer Portal](https://portal.pylocket.com/cli).
12
+
13
+ ## Quick Start
14
+
15
+ ```bash
16
+ # Authenticate with your PyLocket account
17
+ pylocket login
18
+
19
+ # List your apps
20
+ pylocket apps list
21
+
22
+ # Protect a PyInstaller executable
23
+ pylocket protect --app <APP_ID> --artifact dist/myapp.exe
24
+
25
+ # Check build status
26
+ pylocket status --build <BUILD_ID>
27
+
28
+ # Download the protected artifact
29
+ pylocket fetch --build <BUILD_ID> --out ./protected/
30
+ ```
31
+
32
+ ## Commands
33
+
34
+ | Command | Description |
35
+ |---------|-------------|
36
+ | `pylocket login` | Authenticate with your PyLocket account |
37
+ | `pylocket apps list` | List all your applications |
38
+ | `pylocket apps create` | Create a new application |
39
+ | `pylocket protect` | Upload and protect an artifact |
40
+ | `pylocket status` | Check build protection status |
41
+ | `pylocket fetch` | Download a protected artifact |
42
+
43
+ ## Documentation
44
+
45
+ Full documentation: [docs.pylocket.com](https://docs.pylocket.com)
46
+
47
+ ## Support
48
+
49
+ - Documentation: https://docs.pylocket.com
50
+ - Developer Portal: https://portal.pylocket.com
51
+ - Email: support@pylocket.com
@@ -0,0 +1,110 @@
1
+ Metadata-Version: 2.4
2
+ Name: pylocket
3
+ Version: 1.0.0
4
+ Summary: PyLocket CLI - Protect and distribute Python applications
5
+ Author-email: PyLocket <support@pylocket.com>
6
+ License: PyLocket Proprietary License
7
+
8
+ Copyright (c) 2026 PyLocket. All rights reserved.
9
+
10
+ Permission is hereby granted to any person who obtains a copy of this
11
+ software (the "Software") to use the Software solely for the purpose of
12
+ interacting with the PyLocket platform (https://pylocket.com) and its
13
+ associated services.
14
+
15
+ The following restrictions apply:
16
+
17
+ 1. REDISTRIBUTION: You may not redistribute, sublicense, or sell copies
18
+ of the Software without prior written permission from PyLocket.
19
+
20
+ 2. MODIFICATION: You may not modify, reverse engineer, decompile, or
21
+ disassemble the Software.
22
+
23
+ 3. COMMERCIAL USE: The Software may only be used in connection with a
24
+ valid PyLocket account. Use of the Software does not grant any rights
25
+ to the PyLocket platform beyond those provided by your account plan.
26
+
27
+ 4. NO WARRANTY: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
28
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
29
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY.
32
+
33
+ For licensing inquiries, contact: support@pylocket.com
34
+
35
+ Project-URL: Homepage, https://pylocket.com
36
+ Project-URL: Documentation, https://docs.pylocket.com
37
+ Project-URL: Developer Portal, https://portal.pylocket.com
38
+ Classifier: Development Status :: 4 - Beta
39
+ Classifier: Environment :: Console
40
+ Classifier: Intended Audience :: Developers
41
+ Classifier: License :: Other/Proprietary License
42
+ Classifier: Operating System :: OS Independent
43
+ Classifier: Programming Language :: Python :: 3
44
+ Classifier: Programming Language :: Python :: 3.9
45
+ Classifier: Programming Language :: Python :: 3.10
46
+ Classifier: Programming Language :: Python :: 3.11
47
+ Classifier: Programming Language :: Python :: 3.12
48
+ Classifier: Programming Language :: Python :: 3.13
49
+ Classifier: Programming Language :: Python :: 3.14
50
+ Classifier: Topic :: Security
51
+ Classifier: Topic :: Software Development :: Build Tools
52
+ Requires-Python: >=3.9
53
+ Description-Content-Type: text/markdown
54
+ License-File: LICENSE
55
+ Requires-Dist: click>=8.1.0
56
+ Requires-Dist: rich>=13.7.0
57
+ Requires-Dist: httpx>=0.27.0
58
+ Dynamic: license-file
59
+
60
+ # PyLocket CLI
61
+
62
+ Protect and distribute Python applications from the command line.
63
+
64
+ ## Installation
65
+
66
+ ```bash
67
+ pip install pylocket
68
+ ```
69
+
70
+ Or download platform-specific binaries from your [Developer Portal](https://portal.pylocket.com/cli).
71
+
72
+ ## Quick Start
73
+
74
+ ```bash
75
+ # Authenticate with your PyLocket account
76
+ pylocket login
77
+
78
+ # List your apps
79
+ pylocket apps list
80
+
81
+ # Protect a PyInstaller executable
82
+ pylocket protect --app <APP_ID> --artifact dist/myapp.exe
83
+
84
+ # Check build status
85
+ pylocket status --build <BUILD_ID>
86
+
87
+ # Download the protected artifact
88
+ pylocket fetch --build <BUILD_ID> --out ./protected/
89
+ ```
90
+
91
+ ## Commands
92
+
93
+ | Command | Description |
94
+ |---------|-------------|
95
+ | `pylocket login` | Authenticate with your PyLocket account |
96
+ | `pylocket apps list` | List all your applications |
97
+ | `pylocket apps create` | Create a new application |
98
+ | `pylocket protect` | Upload and protect an artifact |
99
+ | `pylocket status` | Check build protection status |
100
+ | `pylocket fetch` | Download a protected artifact |
101
+
102
+ ## Documentation
103
+
104
+ Full documentation: [docs.pylocket.com](https://docs.pylocket.com)
105
+
106
+ ## Support
107
+
108
+ - Documentation: https://docs.pylocket.com
109
+ - Developer Portal: https://portal.pylocket.com
110
+ - Email: support@pylocket.com
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ pylocket.egg-info/PKG-INFO
6
+ pylocket.egg-info/SOURCES.txt
7
+ pylocket.egg-info/dependency_links.txt
8
+ pylocket.egg-info/entry_points.txt
9
+ pylocket.egg-info/requires.txt
10
+ pylocket.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pylocket = cli.main:cli
@@ -0,0 +1,3 @@
1
+ click>=8.1.0
2
+ rich>=13.7.0
3
+ httpx>=0.27.0
@@ -0,0 +1,46 @@
1
+ [project]
2
+ name = "pylocket"
3
+ version = "1.0.0"
4
+ description = "PyLocket CLI - Protect and distribute Python applications"
5
+ readme = "README.md"
6
+ license = {file = "LICENSE"}
7
+ requires-python = ">=3.9"
8
+ authors = [
9
+ {name = "PyLocket", email = "support@pylocket.com"},
10
+ ]
11
+ classifiers = [
12
+ "Development Status :: 4 - Beta",
13
+ "Environment :: Console",
14
+ "Intended Audience :: Developers",
15
+ "License :: Other/Proprietary License",
16
+ "Operating System :: OS Independent",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.9",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Programming Language :: Python :: 3.14",
24
+ "Topic :: Security",
25
+ "Topic :: Software Development :: Build Tools",
26
+ ]
27
+ dependencies = [
28
+ "click>=8.1.0",
29
+ "rich>=13.7.0",
30
+ "httpx>=0.27.0",
31
+ ]
32
+
33
+ [project.scripts]
34
+ pylocket = "cli.main:cli"
35
+
36
+ [project.urls]
37
+ Homepage = "https://pylocket.com"
38
+ Documentation = "https://docs.pylocket.com"
39
+ "Developer Portal" = "https://portal.pylocket.com"
40
+
41
+ [build-system]
42
+ requires = ["setuptools>=68.0"]
43
+ build-backend = "setuptools.build_meta"
44
+
45
+ [tool.setuptools.packages.find]
46
+ include = ["cli*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+