chalk-remote-call-python 1.3.0__tar.gz → 1.5.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.
- chalk_remote_call_python-1.5.0/MANIFEST.in +12 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/PKG-INFO +1 -1
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/Cargo.lock +1836 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/Cargo.toml +3 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/Cargo.toml +10 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/src/gen/chalk.auth.v1.rs +127 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/src/gen/chalk.common.v1.rs +169 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/src/gen/chalk.runtime.v1.rs +184 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/src/gen/chalk.runtime.v1.tonic.rs +1070 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/src/gen/chalk.utils.v1.rs +9 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/src/gen/descriptor.bin +0 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-proto/src/lib.rs +25 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-server/Cargo.toml +22 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-server/src/coalesce.rs +143 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-server/src/lib.rs +83 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-server/src/python_bridge.rs +180 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-server/src/server.rs +102 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/chalk-remote-call-server/src/service.rs +141 -0
- chalk_remote_call_python-1.5.0/chalk-remote-call-rs/rust-toolchain.toml +3 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_native.pyi +3 -1
- chalk_remote_call_python-1.5.0/chalk_remote_call/_version.py +1 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/cli.py +47 -0
- chalk_remote_call_python-1.5.0/chalk_remote_call/server.py +116 -0
- chalk_remote_call_python-1.5.0/chalk_remote_call/servicer.py +408 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call_python.egg-info/PKG-INFO +1 -1
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call_python.egg-info/SOURCES.txt +19 -7
- chalk_remote_call_python-1.3.0/chalk_remote_call/_version.py +0 -1
- chalk_remote_call_python-1.3.0/chalk_remote_call/server.py +0 -51
- chalk_remote_call_python-1.3.0/chalk_remote_call/servicer.py +0 -172
- chalk_remote_call_python-1.3.0/tests/test_arrow_utils.py +0 -37
- chalk_remote_call_python-1.3.0/tests/test_end_to_end.py +0 -113
- chalk_remote_call_python-1.3.0/tests/test_error_paths.py +0 -141
- chalk_remote_call_python-1.3.0/tests/test_handler_loader.py +0 -99
- chalk_remote_call_python-1.3.0/tests/test_input_transform.py +0 -62
- chalk_remote_call_python-1.3.0/tests/test_servicer.py +0 -408
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/README.md +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/__main__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/auth/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/auth/v1/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/auth/v1/permissions_pb2.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/auth/v1/permissions_pb2_grpc.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/common/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/common/v1/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/common/v1/chalk_error_pb2.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/common/v1/chalk_error_pb2_grpc.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/runtime/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/runtime/v1/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/runtime/v1/remote_python_call_pb2.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/runtime/v1/remote_python_call_pb2_grpc.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/v1/__init__.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/v1/encoding_pb2.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/v1/encoding_pb2_grpc.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/v1/field_change_pb2.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/v1/field_change_pb2_grpc.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/v1/sensitive_pb2.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/_gen/chalk/utils/v1/sensitive_pb2_grpc.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/arrow_utils.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/handler_loader.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call/input_transform.py +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call_python.egg-info/dependency_links.txt +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call_python.egg-info/entry_points.txt +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call_python.egg-info/requires.txt +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/chalk_remote_call_python.egg-info/top_level.txt +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/pyproject.toml +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/setup.cfg +0 -0
- {chalk_remote_call_python-1.3.0 → chalk_remote_call_python-1.5.0}/setup.py +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
include MANIFEST.in
|
|
2
|
+
include README.md
|
|
3
|
+
include pyproject.toml
|
|
4
|
+
include setup.py
|
|
5
|
+
|
|
6
|
+
recursive-include chalk_remote_call *.py *.pyi
|
|
7
|
+
recursive-include chalk-remote-call-rs *
|
|
8
|
+
|
|
9
|
+
prune tests
|
|
10
|
+
prune chalk-remote-call-rs/target
|
|
11
|
+
global-exclude __pycache__
|
|
12
|
+
global-exclude *.py[cod]
|