rapida-python 0.1.4a0__tar.gz → 0.1.7__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.
- {rapida_python-0.1.4a0/rapida_python.egg-info → rapida_python-0.1.7}/PKG-INFO +24 -11
- rapida_python-0.1.7/pyproject.toml +61 -0
- rapida_python-0.1.7/rapida/__init__.py +976 -0
- rapida_python-0.1.7/rapida/clients/call.py +26 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_analysis_pb2.py +95 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_analysis_pb2.pyi +156 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_analysis_pb2_grpc.py +24 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_api_pb2.py +142 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_api_pb2.pyi +364 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_api_pb2_grpc.py +1611 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_deployment_pb2.py +111 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_deployment_pb2.pyi +337 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_deployment_pb2_grpc.py +484 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_knowledge_pb2.py +83 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_knowledge_pb2.pyi +139 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_knowledge_pb2_grpc.py +24 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_tool_pb2.py +74 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_tool_pb2.pyi +122 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_tool_pb2_grpc.py +24 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_webhook_pb2.py +136 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_webhook_pb2.pyi +290 -0
- rapida_python-0.1.7/rapida/clients/protos/assistant_webhook_pb2_grpc.py +24 -0
- rapida_python-0.1.7/rapida/clients/protos/audit_logging_api_pb2.py +78 -0
- rapida_python-0.1.7/rapida/clients/protos/audit_logging_api_pb2.pyi +121 -0
- rapida_python-0.1.7/rapida/clients/protos/audit_logging_api_pb2_grpc.py +183 -0
- rapida_python-0.1.7/rapida/clients/protos/common_pb2.py +171 -0
- rapida_python-0.1.7/rapida/clients/protos/common_pb2.pyi +477 -0
- rapida_python-0.1.7/rapida/clients/protos/common_pb2_grpc.py +24 -0
- rapida_python-0.1.7/rapida/clients/protos/connect_api_pb2.py +67 -0
- rapida_python-0.1.7/rapida/clients/protos/connect_api_pb2.pyi +120 -0
- rapida_python-0.1.7/rapida/clients/protos/connect_api_pb2_grpc.py +226 -0
- rapida_python-0.1.7/rapida/clients/protos/document_api_pb2.py +45 -0
- rapida_python-0.1.7/rapida/clients/protos/document_api_pb2.pyi +25 -0
- rapida_python-0.1.7/rapida/clients/protos/document_api_pb2_grpc.py +97 -0
- rapida_python-0.1.7/rapida/clients/protos/endpoint_api_pb2.py +193 -0
- rapida_python-0.1.7/rapida/clients/protos/endpoint_api_pb2.pyi +451 -0
- rapida_python-0.1.7/rapida/clients/protos/endpoint_api_pb2_grpc.py +616 -0
- rapida_python-0.1.7/rapida/clients/protos/integration_api_pb2.py +146 -0
- rapida_python-0.1.7/rapida/clients/protos/integration_api_pb2.pyi +305 -0
- rapida_python-0.1.7/rapida/clients/protos/integration_api_pb2_grpc.py +2122 -0
- rapida_python-0.1.7/rapida/clients/protos/invoker_api_pb2.py +72 -0
- rapida_python-0.1.7/rapida/clients/protos/invoker_api_pb2.pyi +107 -0
- rapida_python-0.1.7/rapida/clients/protos/invoker_api_pb2_grpc.py +183 -0
- rapida_python-0.1.7/rapida/clients/protos/knowledge_api_pb2.py +114 -0
- rapida_python-0.1.7/rapida/clients/protos/knowledge_api_pb2.pyi +339 -0
- rapida_python-0.1.7/rapida/clients/protos/knowledge_api_pb2_grpc.py +486 -0
- rapida_python-0.1.7/rapida/clients/protos/marketplace_api_pb2.py +48 -0
- rapida_python-0.1.7/rapida/clients/protos/marketplace_api_pb2.pyi +74 -0
- rapida_python-0.1.7/rapida/clients/protos/marketplace_api_pb2_grpc.py +97 -0
- rapida_python-0.1.7/rapida/clients/protos/provider_api_pb2.py +54 -0
- rapida_python-0.1.7/rapida/clients/protos/provider_api_pb2.pyi +71 -0
- rapida_python-0.1.7/rapida/clients/protos/provider_api_pb2_grpc.py +140 -0
- rapida_python-0.1.7/rapida/clients/protos/sendgrid_api_pb2.py +51 -0
- rapida_python-0.1.7/rapida/clients/protos/sendgrid_api_pb2.pyi +70 -0
- rapida_python-0.1.7/rapida/clients/protos/sendgrid_api_pb2_grpc.py +183 -0
- rapida_python-0.1.7/rapida/clients/protos/talk_api_pb2.py +110 -0
- rapida_python-0.1.7/rapida/clients/protos/talk_api_pb2.pyi +245 -0
- rapida_python-0.1.7/rapida/clients/protos/talk_api_pb2_grpc.py +357 -0
- rapida_python-0.1.7/rapida/clients/protos/vault_api_pb2.py +76 -0
- rapida_python-0.1.7/rapida/clients/protos/vault_api_pb2.pyi +116 -0
- rapida_python-0.1.7/rapida/clients/protos/vault_api_pb2_grpc.py +355 -0
- rapida_python-0.1.7/rapida/clients/protos/web_api_pb2.py +193 -0
- rapida_python-0.1.7/rapida/clients/protos/web_api_pb2.pyi +564 -0
- rapida_python-0.1.7/rapida/clients/protos/web_api_pb2_grpc.py +1190 -0
- rapida_python-0.1.7/rapida/configs/__init__.py +37 -0
- rapida_python-0.1.7/rapida/connections/__init__.py +234 -0
- rapida_python-0.1.7/rapida/utils/rapida_header.py +47 -0
- {rapida_python-0.1.4a0/rapida → rapida_python-0.1.7/rapida/utils}/rapida_source.py +17 -44
- rapida_python-0.1.7/rapida/utils/rapida_value.py +244 -0
- {rapida_python-0.1.4a0 → rapida_python-0.1.7}/rapida/version.py +1 -1
- {rapida_python-0.1.4a0 → rapida_python-0.1.7/rapida_python.egg-info}/PKG-INFO +25 -12
- rapida_python-0.1.7/rapida_python.egg-info/SOURCES.txt +81 -0
- rapida_python-0.1.7/rapida_python.egg-info/requires.txt +10 -0
- {rapida_python-0.1.4a0 → rapida_python-0.1.7}/rapida_python.egg-info/top_level.txt +0 -1
- rapida_python-0.1.7/setup.py +6 -0
- rapida_python-0.1.4a0/bin/__init__.py +0 -3
- rapida_python-0.1.4a0/rapida/__init__.py +0 -62
- rapida_python-0.1.4a0/rapida/artifacts/__init__.py +0 -3
- rapida_python-0.1.4a0/rapida/client/grpc_bridge.py +0 -205
- rapida_python-0.1.4a0/rapida/client/rapida_bridge.py +0 -451
- rapida_python-0.1.4a0/rapida/client/response_wrapper.py +0 -275
- rapida_python-0.1.4a0/rapida/constants.py +0 -33
- rapida_python-0.1.4a0/rapida/exceptions/__init__.py +0 -35
- rapida_python-0.1.4a0/rapida/exceptions/exceptions.py +0 -128
- rapida_python-0.1.4a0/rapida/rapida_client.py +0 -455
- rapida_python-0.1.4a0/rapida/rapida_client_options.py +0 -77
- rapida_python-0.1.4a0/rapida/tests/test_rapida_client.py +0 -131
- rapida_python-0.1.4a0/rapida/tests/test_rapida_client_options.py +0 -67
- rapida_python-0.1.4a0/rapida/tests/test_values.py +0 -49
- rapida_python-0.1.4a0/rapida/values.py +0 -371
- rapida_python-0.1.4a0/rapida_python.egg-info/SOURCES.txt +0 -29
- rapida_python-0.1.4a0/rapida_python.egg-info/requires.txt +0 -42
- rapida_python-0.1.4a0/setup.py +0 -74
- {rapida_python-0.1.4a0 → rapida_python-0.1.7}/README.md +0 -0
- {rapida_python-0.1.4a0/rapida/client → rapida_python-0.1.7/rapida/clients}/__init__.py +0 -0
- {rapida_python-0.1.4a0/rapida/tests → rapida_python-0.1.7/rapida/utils}/__init__.py +0 -0
- {rapida_python-0.1.4a0/rapida → rapida_python-0.1.7/rapida/utils}/rapida_environment.py +0 -0
- {rapida_python-0.1.4a0/rapida → rapida_python-0.1.7/rapida/utils}/rapida_region.py +0 -0
- {rapida_python-0.1.4a0 → rapida_python-0.1.7}/rapida_python.egg-info/dependency_links.txt +0 -0
- {rapida_python-0.1.4a0 → rapida_python-0.1.7}/setup.cfg +0 -0
|
@@ -1,19 +1,33 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: rapida-python
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
Version: 0.1.7
|
|
4
|
+
Summary: RapidaAI SDK to integrate rapida.ai APIs
|
|
5
|
+
Author-email: RapidaAI <code@rapida.ai>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/rapidaai/rapida-python
|
|
8
|
+
Project-URL: Bug Reports, https://github.com/rapidaai/rapida-python/issues
|
|
9
|
+
Project-URL: Documentation, https://rapida.ai/docs
|
|
10
|
+
Project-URL: Source, https://github.com/rapidaai/rapida-python
|
|
9
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
-
Classifier: Environment :: Web Environment
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
13
20
|
Requires-Python: >=3.9
|
|
14
21
|
Description-Content-Type: text/markdown
|
|
22
|
+
Requires-Dist: protobuf
|
|
23
|
+
Requires-Dist: grpcio
|
|
24
|
+
Requires-Dist: grpcio-tools
|
|
15
25
|
Provides-Extra: dev
|
|
16
|
-
|
|
26
|
+
Requires-Dist: pytest; extra == "dev"
|
|
27
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
28
|
+
Requires-Dist: flake8; extra == "dev"
|
|
29
|
+
Requires-Dist: black; extra == "dev"
|
|
30
|
+
Requires-Dist: mypy; extra == "dev"
|
|
17
31
|
|
|
18
32
|
## Table Of Contents
|
|
19
33
|
|
|
@@ -62,4 +76,3 @@ Use this space to show useful examples of how a project can be used. Additional
|
|
|
62
76
|
|
|
63
77
|
_For more examples, please refer to the [Documentation](https://docs.rapida.ai/api-reference/introduction)
|
|
64
78
|
# gxs-demo
|
|
65
|
-
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rapida-python"
|
|
7
|
+
version = "0.1.7"
|
|
8
|
+
description = "RapidaAI SDK to integrate rapida.ai APIs"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [{name = "RapidaAI", email = "code@rapida.ai"}]
|
|
11
|
+
license = "MIT"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 5 - Production/Stable",
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
"Programming Language :: Python",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.9",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
22
|
+
]
|
|
23
|
+
requires-python = ">=3.9"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"protobuf",
|
|
26
|
+
"grpcio",
|
|
27
|
+
"grpcio-tools",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[project.optional-dependencies]
|
|
31
|
+
dev = [
|
|
32
|
+
"pytest",
|
|
33
|
+
"pytest-cov",
|
|
34
|
+
"flake8",
|
|
35
|
+
"black",
|
|
36
|
+
"mypy",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[project.urls]
|
|
40
|
+
Homepage = "https://github.com/rapidaai/rapida-python"
|
|
41
|
+
"Bug Reports" = "https://github.com/rapidaai/rapida-python/issues"
|
|
42
|
+
Documentation = "https://rapida.ai/docs"
|
|
43
|
+
Source = "https://github.com/rapidaai/rapida-python"
|
|
44
|
+
|
|
45
|
+
[tool.setuptools]
|
|
46
|
+
packages = [
|
|
47
|
+
"rapida",
|
|
48
|
+
"rapida.clients",
|
|
49
|
+
"rapida.clients.protos",
|
|
50
|
+
"rapida.configs",
|
|
51
|
+
"rapida.connections",
|
|
52
|
+
"rapida.utils"
|
|
53
|
+
# Add any other packages that should be included
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[tool.setuptools.package-data]
|
|
57
|
+
"rapida" = ["py.typed"]
|
|
58
|
+
"rapida.clients.protos" = ["*.py"]
|
|
59
|
+
|
|
60
|
+
[tool.setuptools.exclude-package-data]
|
|
61
|
+
"*" = ["tests", "examples"]
|