encode-toolkit 0.3.0b1__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.
- encode_connector/__init__.py +4 -0
- encode_connector/__main__.py +5 -0
- encode_connector/client/__init__.py +6 -0
- encode_connector/client/auth.py +262 -0
- encode_connector/client/constants.py +348 -0
- encode_connector/client/downloader.py +305 -0
- encode_connector/client/encode_client.py +585 -0
- encode_connector/client/models.py +332 -0
- encode_connector/client/tracker.py +1129 -0
- encode_connector/client/validation.py +188 -0
- encode_connector/server/__init__.py +1 -0
- encode_connector/server/__main__.py +5 -0
- encode_connector/server/main.py +1495 -0
- encode_toolkit-0.3.0b1.dist-info/METADATA +810 -0
- encode_toolkit-0.3.0b1.dist-info/RECORD +18 -0
- encode_toolkit-0.3.0b1.dist-info/WHEEL +4 -0
- encode_toolkit-0.3.0b1.dist-info/entry_points.txt +2 -0
- encode_toolkit-0.3.0b1.dist-info/licenses/LICENSE +144 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
encode_connector/__init__.py,sha256=A1xhCKU_XGnBkePtv1NmXWFX-A0WTcm62YQfMgaYwE8,124
|
|
2
|
+
encode_connector/__main__.py,sha256=hX7Hv1cKkwjnZrQkgsV-Kkx-60ywaNmobOuLuRfLZ-o,106
|
|
3
|
+
encode_connector/client/__init__.py,sha256=wyIOQXMUZoUqGdv8_h5lW7vfWZ6Ohq_ttz2aLN7Mvo8,216
|
|
4
|
+
encode_connector/client/auth.py,sha256=SnQZ3Hkq7BhpQD6vBZudAi6Lr2zCB47WXEWeFy_4xZg,9576
|
|
5
|
+
encode_connector/client/constants.py,sha256=RhsAfsYwGZxLmAq2QpVHFzAT2bsy-2wEbuG5QROkt_Q,7536
|
|
6
|
+
encode_connector/client/downloader.py,sha256=hDPLkGs8MO3Jr5gxJnPxhl211I5iZkoytZd7m7EeTFk,11877
|
|
7
|
+
encode_connector/client/encode_client.py,sha256=CvUKIe5bt4p1uJDUKgbi9LVRLjyYwPtMIJMgJrnb9iQ,21273
|
|
8
|
+
encode_connector/client/models.py,sha256=JvK487aTNlTi-48JfCKxmH3kKXj0OXE1Va48I3gpCBk,12143
|
|
9
|
+
encode_connector/client/tracker.py,sha256=8x6JNlla6UIpzgVDj8HOGnssfjQPRp-WdpmiirjLDI8,44804
|
|
10
|
+
encode_connector/client/validation.py,sha256=zE_dpKkHPpmOttylKi8V6bESw-8jCd4W15SDJqZ_q30,6319
|
|
11
|
+
encode_connector/server/__init__.py,sha256=qE1SX7iMPz3bwjVuuvMlXNN1g_iHB-sIUQY-LtGgAPw,33
|
|
12
|
+
encode_connector/server/__main__.py,sha256=gVilW3ql6i1R9fJ34xUi5RmGFDy2E_fyy9j0wcQ3tUg,124
|
|
13
|
+
encode_connector/server/main.py,sha256=cO1WhYaVQkx78mEpslIYwN59r4Hd4bUVya5BvBUzkjE,55956
|
|
14
|
+
encode_toolkit-0.3.0b1.dist-info/METADATA,sha256=9u0PkuEXRsjG8QeC_7tV0ZVCv_bUafTRCI8Aa9-ImR4,32482
|
|
15
|
+
encode_toolkit-0.3.0b1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
16
|
+
encode_toolkit-0.3.0b1.dist-info/entry_points.txt,sha256=ZNqGYIpnig7ZLZKSP1xZTRZ1FdTSRLt8BcY9cqmCOW8,69
|
|
17
|
+
encode_toolkit-0.3.0b1.dist-info/licenses/LICENSE,sha256=IX50QlZNPo7byuUzrb681g_dH6rutkcjZvalg6r0Jo8,6560
|
|
18
|
+
encode_toolkit-0.3.0b1.dist-info/RECORD,,
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
ENCODE MCP Server — Restrictive Non-Commercial License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Dr. Alex M. Mawla, PhD. All rights reserved.
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS
|
|
6
|
+
|
|
7
|
+
1. DEFINITIONS.
|
|
8
|
+
|
|
9
|
+
"Software" means the ENCODE MCP Server source code, documentation, skills,
|
|
10
|
+
reference files, configuration files, and all associated materials contained
|
|
11
|
+
in this repository, in any form (source, binary, or otherwise).
|
|
12
|
+
|
|
13
|
+
"Author" means Dr. Alex M. Mawla, PhD, the sole copyright holder.
|
|
14
|
+
|
|
15
|
+
"Derivative Work" means any work that is based on, incorporates, adapts,
|
|
16
|
+
translates, modifies, extends, or otherwise transforms the Software in whole
|
|
17
|
+
or in part, including but not limited to forks, ports, wrappers, plugins,
|
|
18
|
+
integrations, and any code that links to or depends on the Software.
|
|
19
|
+
|
|
20
|
+
"Commercial Use" means any use of the Software that is primarily intended for
|
|
21
|
+
or directed toward commercial advantage, monetary compensation, revenue
|
|
22
|
+
generation, or any form of financial gain, whether direct or indirect. This
|
|
23
|
+
includes, without limitation: incorporating the Software into a commercial
|
|
24
|
+
product or service; using the Software to provide paid services; offering the
|
|
25
|
+
Software as part of a hosted, managed, or cloud-based service; using the
|
|
26
|
+
Software in a business context to generate revenue; using the Software to
|
|
27
|
+
train commercial machine learning models; and bundling the Software with
|
|
28
|
+
commercially distributed products.
|
|
29
|
+
|
|
30
|
+
2. GRANT OF LIMITED LICENSE.
|
|
31
|
+
|
|
32
|
+
Subject to the terms and conditions of this license, the Author grants you a
|
|
33
|
+
limited, non-exclusive, non-transferable, non-sublicensable, revocable
|
|
34
|
+
license to use and copy the Software solely for personal, educational,
|
|
35
|
+
academic, and non-commercial research purposes.
|
|
36
|
+
|
|
37
|
+
This license does NOT grant you any right to:
|
|
38
|
+
(a) modify, adapt, translate, or create Derivative Works of the Software;
|
|
39
|
+
(b) distribute, sublicense, sell, lease, rent, or otherwise transfer the
|
|
40
|
+
Software or any rights therein to any third party;
|
|
41
|
+
(c) use the Software for any Commercial Use;
|
|
42
|
+
(d) reverse engineer, decompile, or disassemble the Software beyond what is
|
|
43
|
+
permitted by applicable law;
|
|
44
|
+
(e) remove, alter, or obscure any copyright notices, license terms, or
|
|
45
|
+
attribution contained in the Software.
|
|
46
|
+
|
|
47
|
+
3. DERIVATIVE WORKS PROHIBITED.
|
|
48
|
+
|
|
49
|
+
You may NOT create, distribute, publish, or make available any Derivative
|
|
50
|
+
Work based on the Software without prior written permission from the Author.
|
|
51
|
+
This prohibition applies regardless of whether the Derivative Work is
|
|
52
|
+
intended for commercial or non-commercial purposes.
|
|
53
|
+
|
|
54
|
+
Any Derivative Work created without written permission is an infringement of
|
|
55
|
+
the Author's copyright and may be subject to legal action.
|
|
56
|
+
|
|
57
|
+
4. COMMERCIAL USE STRICTLY PROHIBITED.
|
|
58
|
+
|
|
59
|
+
Any and all Commercial Use of the Software is strictly prohibited without a
|
|
60
|
+
separate written commercial license agreement executed by the Author.
|
|
61
|
+
|
|
62
|
+
Without limitation, the following are expressly prohibited without a
|
|
63
|
+
commercial license:
|
|
64
|
+
(a) incorporating the Software into any product or service offered for sale;
|
|
65
|
+
(b) using the Software to provide consulting, analysis, or data services
|
|
66
|
+
for compensation;
|
|
67
|
+
(c) offering the Software as a hosted service, API, SaaS platform, or
|
|
68
|
+
cloud-based tool, whether revenue-generating or not;
|
|
69
|
+
(d) using the Software in any corporate, government, or institutional
|
|
70
|
+
setting for purposes that generate or support revenue;
|
|
71
|
+
(e) using outputs generated by the Software in any commercial context;
|
|
72
|
+
(f) bundling, packaging, or distributing the Software alongside commercial
|
|
73
|
+
products.
|
|
74
|
+
|
|
75
|
+
5. ATTRIBUTION.
|
|
76
|
+
|
|
77
|
+
All permitted copies of the Software must retain, without modification:
|
|
78
|
+
(a) this license in its entirety;
|
|
79
|
+
(b) all copyright notices;
|
|
80
|
+
(c) all attribution and authorship information.
|
|
81
|
+
|
|
82
|
+
6. NO REDISTRIBUTION.
|
|
83
|
+
|
|
84
|
+
You may not redistribute, publish, host, mirror, or otherwise make the
|
|
85
|
+
Software available to third parties in any form without prior written
|
|
86
|
+
permission from the Author. Internal use within a single academic research
|
|
87
|
+
group under the direct supervision of a single principal investigator is
|
|
88
|
+
permitted, provided all members comply with the terms of this license.
|
|
89
|
+
|
|
90
|
+
7. TERMINATION.
|
|
91
|
+
|
|
92
|
+
This license is effective until terminated. Your rights under this license
|
|
93
|
+
will terminate automatically without notice if you fail to comply with any
|
|
94
|
+
of its terms. Upon termination, you must immediately cease all use of the
|
|
95
|
+
Software and destroy all copies in your possession or control.
|
|
96
|
+
|
|
97
|
+
The Author reserves the right to revoke this license at any time for any
|
|
98
|
+
reason upon written notice.
|
|
99
|
+
|
|
100
|
+
8. DISCLAIMER OF WARRANTY.
|
|
101
|
+
|
|
102
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
103
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
104
|
+
FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, COMPLETENESS, AND
|
|
105
|
+
NONINFRINGEMENT. THE AUTHOR MAKES NO WARRANTY THAT THE SOFTWARE WILL MEET
|
|
106
|
+
YOUR REQUIREMENTS OR THAT ITS OPERATION WILL BE UNINTERRUPTED OR ERROR-FREE.
|
|
107
|
+
|
|
108
|
+
9. LIMITATION OF LIABILITY.
|
|
109
|
+
|
|
110
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
111
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING
|
|
112
|
+
FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
113
|
+
DEALINGS IN THE SOFTWARE, INCLUDING BUT NOT LIMITED TO DIRECT, INDIRECT,
|
|
114
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES.
|
|
115
|
+
|
|
116
|
+
10. GOVERNING LAW.
|
|
117
|
+
|
|
118
|
+
This license shall be governed by and construed in accordance with the laws
|
|
119
|
+
of the State of California, United States of America, without regard to its
|
|
120
|
+
conflict of law provisions.
|
|
121
|
+
|
|
122
|
+
11. SEVERABILITY.
|
|
123
|
+
|
|
124
|
+
If any provision of this license is held to be unenforceable or invalid,
|
|
125
|
+
such provision shall be modified to the minimum extent necessary to make it
|
|
126
|
+
enforceable, and the remaining provisions shall continue in full force and
|
|
127
|
+
effect.
|
|
128
|
+
|
|
129
|
+
12. ENTIRE AGREEMENT.
|
|
130
|
+
|
|
131
|
+
This license constitutes the entire agreement between you and the Author
|
|
132
|
+
regarding the Software and supersedes all prior negotiations, representations,
|
|
133
|
+
or agreements relating to the Software.
|
|
134
|
+
|
|
135
|
+
CONTACT FOR PERMISSIONS
|
|
136
|
+
|
|
137
|
+
All inquiries regarding derivative works, commercial licensing, redistribution,
|
|
138
|
+
or any use not expressly permitted by this license must be directed to:
|
|
139
|
+
|
|
140
|
+
Dr. Alex M. Mawla, PhD
|
|
141
|
+
Email: ammawla@ucdavis.edu
|
|
142
|
+
|
|
143
|
+
No rights are granted except as expressly set forth in this license. All rights
|
|
144
|
+
not expressly granted herein are reserved by the Author.
|