onionwright 0.0.1__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.
onionwright/__init__.py
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: onionwright
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Humanized input for browser automation
|
|
5
|
+
Project-URL: Homepage, https://openonion.ai
|
|
6
|
+
Project-URL: Documentation, https://docs.connectonion.com
|
|
7
|
+
Author-email: OpenOnion <info@openonion.ai>
|
|
8
|
+
License: onionwright Commercial Licence
|
|
9
|
+
Copyright (c) 2026 OpenOnion. All rights reserved.
|
|
10
|
+
|
|
11
|
+
NOT OPEN SOURCE. This software is proprietary and is licensed, not sold.
|
|
12
|
+
|
|
13
|
+
NOTE: This text has not been reviewed by a lawyer. It states the intent agreed for
|
|
14
|
+
the product and is a drafting starting point, not final terms. Review before the
|
|
15
|
+
first paid release.
|
|
16
|
+
|
|
17
|
+
1. GRANT
|
|
18
|
+
|
|
19
|
+
Subject to an active subscription at the tier designated by OpenOnion, you are
|
|
20
|
+
granted a non-exclusive, non-transferable, revocable licence to install and use
|
|
21
|
+
this software for your own purposes, personal or commercial, on systems you
|
|
22
|
+
control.
|
|
23
|
+
|
|
24
|
+
2. RESTRICTIONS
|
|
25
|
+
|
|
26
|
+
You may not:
|
|
27
|
+
|
|
28
|
+
a. Redistribute this software, in whole or in part, modified or unmodified.
|
|
29
|
+
b. Resell, sublicense, rent, lease, or repackage it.
|
|
30
|
+
c. Reverse engineer, decompile, or disassemble it, or attempt to derive its
|
|
31
|
+
source, except to the extent applicable law expressly permits despite this
|
|
32
|
+
restriction.
|
|
33
|
+
d. Remove or alter any copyright, licence, or attribution notice.
|
|
34
|
+
e. Share licence credentials, or use one licence across more concurrent
|
|
35
|
+
sessions than your tier permits.
|
|
36
|
+
|
|
37
|
+
3. OEM / SAAS
|
|
38
|
+
|
|
39
|
+
A separate written agreement is required where this software is bundled,
|
|
40
|
+
embedded, exposed through an API, or otherwise used to provide functionality to
|
|
41
|
+
third-party customers. No subscription tier grants redistribution, resale,
|
|
42
|
+
sublicensing, bundling, embedding, hosted-service, white-label, OEM, or SaaS
|
|
43
|
+
rights unless expressly stated in a separate agreement.
|
|
44
|
+
|
|
45
|
+
4. VERSIONS AND CONTINUITY
|
|
46
|
+
|
|
47
|
+
The latest major version requires an active subscription. Versions already
|
|
48
|
+
obtained lawfully under an earlier active subscription remain usable
|
|
49
|
+
indefinitely; lapsing only stops access to new releases, it does not disable
|
|
50
|
+
what you already have.
|
|
51
|
+
|
|
52
|
+
5. ACCEPTABLE USE
|
|
53
|
+
|
|
54
|
+
This software is licensed for lawful automation of systems you own or are
|
|
55
|
+
authorised to access — testing, monitoring, authorised data collection, and
|
|
56
|
+
management of accounts you control under terms you are entitled to accept. It
|
|
57
|
+
is not licensed for unauthorised access, fraud, or circumventing controls you
|
|
58
|
+
have no right to circumvent. OpenOnion may terminate a licence for use in
|
|
59
|
+
breach of this section.
|
|
60
|
+
|
|
61
|
+
6. NO WARRANTY
|
|
62
|
+
|
|
63
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
64
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
65
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. Detection and
|
|
66
|
+
anti-detection are adversarial and change continuously; no representation is
|
|
67
|
+
made that any particular site will accept traffic driven by this software.
|
|
68
|
+
|
|
69
|
+
7. LIMITATION OF LIABILITY
|
|
70
|
+
|
|
71
|
+
IN NO EVENT SHALL OPENONION BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
72
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM
|
|
73
|
+
OR IN CONNECTION WITH THE SOFTWARE OR ITS USE.
|
|
74
|
+
|
|
75
|
+
8. THIRD-PARTY COMPONENTS
|
|
76
|
+
|
|
77
|
+
This software depends on Playwright (Apache-2.0, Copyright (c) Microsoft
|
|
78
|
+
Corporation), which it uses through its public API without modification.
|
|
79
|
+
Playwright is not distributed as part of this software and remains governed by
|
|
80
|
+
its own licence.
|
|
81
|
+
|
|
82
|
+
Contact: info@openonion.ai
|
|
83
|
+
License-File: LICENSE
|
|
84
|
+
Keywords: automation,browser,human,input,playwright
|
|
85
|
+
Classifier: Intended Audience :: Developers
|
|
86
|
+
Classifier: License :: Other/Proprietary License
|
|
87
|
+
Classifier: Programming Language :: Python :: 3
|
|
88
|
+
Classifier: Topic :: Software Development :: Testing
|
|
89
|
+
Requires-Python: >=3.9
|
|
90
|
+
Requires-Dist: playwright>=1.55
|
|
91
|
+
Description-Content-Type: text/markdown
|
|
92
|
+
|
|
93
|
+
# onionwright
|
|
94
|
+
|
|
95
|
+
Humanized input for browser automation — a commercial layer over Playwright that
|
|
96
|
+
makes automated interaction behave like a person using the browser.
|
|
97
|
+
|
|
98
|
+
**This is a placeholder release. There is no implementation in this version.**
|
|
99
|
+
|
|
100
|
+
onionwright is proprietary software distributed under a commercial licence, not
|
|
101
|
+
from this index. This entry reserves the name and points at the product.
|
|
102
|
+
|
|
103
|
+
- Product: https://openonion.ai
|
|
104
|
+
- Docs: https://docs.connectonion.com
|
|
105
|
+
- Licensing enquiries: info@openonion.ai
|
|
106
|
+
|
|
107
|
+
Licensed, not sold. Redistribution, resale, and reverse engineering are not
|
|
108
|
+
permitted. See the LICENSE included in the distribution.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
onionwright/__init__.py,sha256=3N4uMjSWYQ_dk5I7lI-btrg8ktmcX-w64tFfePeh-64,219
|
|
2
|
+
onionwright-0.0.1.dist-info/METADATA,sha256=DqqGf10mRE0o25zojXXbHDQOlVXhRzJOPDz70LyBcA0,5066
|
|
3
|
+
onionwright-0.0.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
4
|
+
onionwright-0.0.1.dist-info/licenses/LICENSE,sha256=5MJngdNipkgI2RuG6E231eYNRzhkxT-tbPlVCFI8Fgw,3206
|
|
5
|
+
onionwright-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
onionwright Commercial Licence
|
|
2
|
+
Copyright (c) 2026 OpenOnion. All rights reserved.
|
|
3
|
+
|
|
4
|
+
NOT OPEN SOURCE. This software is proprietary and is licensed, not sold.
|
|
5
|
+
|
|
6
|
+
NOTE: This text has not been reviewed by a lawyer. It states the intent agreed for
|
|
7
|
+
the product and is a drafting starting point, not final terms. Review before the
|
|
8
|
+
first paid release.
|
|
9
|
+
|
|
10
|
+
1. GRANT
|
|
11
|
+
|
|
12
|
+
Subject to an active subscription at the tier designated by OpenOnion, you are
|
|
13
|
+
granted a non-exclusive, non-transferable, revocable licence to install and use
|
|
14
|
+
this software for your own purposes, personal or commercial, on systems you
|
|
15
|
+
control.
|
|
16
|
+
|
|
17
|
+
2. RESTRICTIONS
|
|
18
|
+
|
|
19
|
+
You may not:
|
|
20
|
+
|
|
21
|
+
a. Redistribute this software, in whole or in part, modified or unmodified.
|
|
22
|
+
b. Resell, sublicense, rent, lease, or repackage it.
|
|
23
|
+
c. Reverse engineer, decompile, or disassemble it, or attempt to derive its
|
|
24
|
+
source, except to the extent applicable law expressly permits despite this
|
|
25
|
+
restriction.
|
|
26
|
+
d. Remove or alter any copyright, licence, or attribution notice.
|
|
27
|
+
e. Share licence credentials, or use one licence across more concurrent
|
|
28
|
+
sessions than your tier permits.
|
|
29
|
+
|
|
30
|
+
3. OEM / SAAS
|
|
31
|
+
|
|
32
|
+
A separate written agreement is required where this software is bundled,
|
|
33
|
+
embedded, exposed through an API, or otherwise used to provide functionality to
|
|
34
|
+
third-party customers. No subscription tier grants redistribution, resale,
|
|
35
|
+
sublicensing, bundling, embedding, hosted-service, white-label, OEM, or SaaS
|
|
36
|
+
rights unless expressly stated in a separate agreement.
|
|
37
|
+
|
|
38
|
+
4. VERSIONS AND CONTINUITY
|
|
39
|
+
|
|
40
|
+
The latest major version requires an active subscription. Versions already
|
|
41
|
+
obtained lawfully under an earlier active subscription remain usable
|
|
42
|
+
indefinitely; lapsing only stops access to new releases, it does not disable
|
|
43
|
+
what you already have.
|
|
44
|
+
|
|
45
|
+
5. ACCEPTABLE USE
|
|
46
|
+
|
|
47
|
+
This software is licensed for lawful automation of systems you own or are
|
|
48
|
+
authorised to access — testing, monitoring, authorised data collection, and
|
|
49
|
+
management of accounts you control under terms you are entitled to accept. It
|
|
50
|
+
is not licensed for unauthorised access, fraud, or circumventing controls you
|
|
51
|
+
have no right to circumvent. OpenOnion may terminate a licence for use in
|
|
52
|
+
breach of this section.
|
|
53
|
+
|
|
54
|
+
6. NO WARRANTY
|
|
55
|
+
|
|
56
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
57
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
58
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. Detection and
|
|
59
|
+
anti-detection are adversarial and change continuously; no representation is
|
|
60
|
+
made that any particular site will accept traffic driven by this software.
|
|
61
|
+
|
|
62
|
+
7. LIMITATION OF LIABILITY
|
|
63
|
+
|
|
64
|
+
IN NO EVENT SHALL OPENONION BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
65
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM
|
|
66
|
+
OR IN CONNECTION WITH THE SOFTWARE OR ITS USE.
|
|
67
|
+
|
|
68
|
+
8. THIRD-PARTY COMPONENTS
|
|
69
|
+
|
|
70
|
+
This software depends on Playwright (Apache-2.0, Copyright (c) Microsoft
|
|
71
|
+
Corporation), which it uses through its public API without modification.
|
|
72
|
+
Playwright is not distributed as part of this software and remains governed by
|
|
73
|
+
its own licence.
|
|
74
|
+
|
|
75
|
+
Contact: info@openonion.ai
|