py10x-infra 0.1.3__cp312-cp312-macosx_13_0_universal2.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.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.2
2
+ Name: py10x-infra
3
+ Version: 0.1.3
4
+ Summary: 10X Universe Infrastructure Internals
5
+ Author-Email: "10X Software, LLC" <founders@10x-software.org>
6
+ Maintainer-Email: Sasha Davidovich <sasha.davidovich@10x-software.org>, Ilya Pevzner <ilya.pevzner@10x-software.org>
7
+ License: Proprietary - See LICENSE file for details.
8
+ Classifier: License :: Other/Proprietary License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Project-URL: Homepage, https://10x-software.org
11
+ Requires-Python: <3.13,>=3.11
12
+ Description-Content-Type: text/markdown
13
+
14
+ # py10x_infra
15
+
16
+ 10X Universe Infrastructure Internals — C++ extension and Python bindings.
17
+
18
+ ## Requirements
19
+
20
+ - Python ≥ 3.10
21
+ - CMake, C++17-capable compiler
22
+ - Build: `scikit-build-core`
23
+
24
+ ## License
25
+
26
+ See the [LICENSE](LICENSE).
@@ -0,0 +1,6 @@
1
+ py10x_infra.pyi,sha256=RM4Lp3yqC4JlHN3pKEneaG6sIDcZEZV4H_t1hVo5ouE,240
2
+ py10x_infra.cpython-312-darwin.so,sha256=lzA8gBPBE0kVAE9r1Ox10I13eZt_9xKGnLblHaUC4GA,312096
3
+ py10x_infra-0.1.3.dist-info/RECORD,,
4
+ py10x_infra-0.1.3.dist-info/WHEEL,sha256=9kMzPuhp15lxMFcOKUj3Y_4MaW-765O-HKHPHc0QwJI,119
5
+ py10x_infra-0.1.3.dist-info/METADATA,sha256=VLe9VbmN8a6vZYNSqwHuRqWpDWr8J450YB3Cr-Ibc08,780
6
+ py10x_infra-0.1.3.dist-info/licenses/LICENSE,sha256=2fmIzDnMY32IQYls50n8RXUTkMiYL6pqY-5d6G0qI1M,1609
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: scikit-build-core 0.11.6
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-macosx_13_0_universal2
5
+
@@ -0,0 +1,32 @@
1
+ Proprietary License for 10X Universe Infrastructure Internals
2
+
3
+ Copyright (c) 2025 10X Software, LLC. All rights reserved.
4
+
5
+ This Software is a proprietary component of 10X Software, LLC. While provided
6
+ free of charge for use with the py10x package, it is NOT an Open Source license.
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a binary
9
+ copy of this software and associated documentation, to use and distribute
10
+ the Software in binary form only, subject to the following conditions:
11
+
12
+ 1. **Distribution.** You may distribute the Software in binary form as part of
13
+ a software package, provided that you retain this license and all
14
+ copyright notices.
15
+
16
+ 2. **No Source Access.** No permission is granted to access, use, or
17
+ distribute the source code of the Software.
18
+
19
+ 3. **No Reverse Engineering.** You may not reverse engineer, decompile,
20
+ disassemble, or otherwise attempt to derive the source code, internal
21
+ logic, or structure from the binary form of the Software.
22
+
23
+ 4. **No Modification.** You may not modify, patch, or alter the binary
24
+ code of the Software in any way.
25
+
26
+ 5. **Disclaimer.** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
27
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
29
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
30
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
31
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
32
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Binary file
py10x_infra.pyi ADDED
@@ -0,0 +1,9 @@
1
+ """
2
+ 10x infra
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['MongoCollectionHelper']
6
+ class MongoCollectionHelper:
7
+ @staticmethod
8
+ def prepare_filter_and_pipeline(arg0: dict, arg1: dict, arg2: list) -> None:
9
+ ...