rapida-python 0.1.3a0__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.
Files changed (100) hide show
  1. {rapida-python-0.1.3a0 → rapida_python-0.1.7}/PKG-INFO +25 -11
  2. rapida_python-0.1.7/pyproject.toml +61 -0
  3. rapida_python-0.1.7/rapida/__init__.py +976 -0
  4. rapida_python-0.1.7/rapida/clients/call.py +26 -0
  5. rapida_python-0.1.7/rapida/clients/protos/assistant_analysis_pb2.py +95 -0
  6. rapida_python-0.1.7/rapida/clients/protos/assistant_analysis_pb2.pyi +156 -0
  7. rapida_python-0.1.7/rapida/clients/protos/assistant_analysis_pb2_grpc.py +24 -0
  8. rapida_python-0.1.7/rapida/clients/protos/assistant_api_pb2.py +142 -0
  9. rapida_python-0.1.7/rapida/clients/protos/assistant_api_pb2.pyi +364 -0
  10. rapida_python-0.1.7/rapida/clients/protos/assistant_api_pb2_grpc.py +1611 -0
  11. rapida_python-0.1.7/rapida/clients/protos/assistant_deployment_pb2.py +111 -0
  12. rapida_python-0.1.7/rapida/clients/protos/assistant_deployment_pb2.pyi +337 -0
  13. rapida_python-0.1.7/rapida/clients/protos/assistant_deployment_pb2_grpc.py +484 -0
  14. rapida_python-0.1.7/rapida/clients/protos/assistant_knowledge_pb2.py +83 -0
  15. rapida_python-0.1.7/rapida/clients/protos/assistant_knowledge_pb2.pyi +139 -0
  16. rapida_python-0.1.7/rapida/clients/protos/assistant_knowledge_pb2_grpc.py +24 -0
  17. rapida_python-0.1.7/rapida/clients/protos/assistant_tool_pb2.py +74 -0
  18. rapida_python-0.1.7/rapida/clients/protos/assistant_tool_pb2.pyi +122 -0
  19. rapida_python-0.1.7/rapida/clients/protos/assistant_tool_pb2_grpc.py +24 -0
  20. rapida_python-0.1.7/rapida/clients/protos/assistant_webhook_pb2.py +136 -0
  21. rapida_python-0.1.7/rapida/clients/protos/assistant_webhook_pb2.pyi +290 -0
  22. rapida_python-0.1.7/rapida/clients/protos/assistant_webhook_pb2_grpc.py +24 -0
  23. rapida_python-0.1.7/rapida/clients/protos/audit_logging_api_pb2.py +78 -0
  24. rapida_python-0.1.7/rapida/clients/protos/audit_logging_api_pb2.pyi +121 -0
  25. rapida_python-0.1.7/rapida/clients/protos/audit_logging_api_pb2_grpc.py +183 -0
  26. rapida_python-0.1.7/rapida/clients/protos/common_pb2.py +171 -0
  27. rapida_python-0.1.7/rapida/clients/protos/common_pb2.pyi +477 -0
  28. rapida_python-0.1.7/rapida/clients/protos/common_pb2_grpc.py +24 -0
  29. rapida_python-0.1.7/rapida/clients/protos/connect_api_pb2.py +67 -0
  30. rapida_python-0.1.7/rapida/clients/protos/connect_api_pb2.pyi +120 -0
  31. rapida_python-0.1.7/rapida/clients/protos/connect_api_pb2_grpc.py +226 -0
  32. rapida_python-0.1.7/rapida/clients/protos/document_api_pb2.py +45 -0
  33. rapida_python-0.1.7/rapida/clients/protos/document_api_pb2.pyi +25 -0
  34. rapida_python-0.1.7/rapida/clients/protos/document_api_pb2_grpc.py +97 -0
  35. rapida_python-0.1.7/rapida/clients/protos/endpoint_api_pb2.py +193 -0
  36. rapida_python-0.1.7/rapida/clients/protos/endpoint_api_pb2.pyi +451 -0
  37. rapida_python-0.1.7/rapida/clients/protos/endpoint_api_pb2_grpc.py +616 -0
  38. rapida_python-0.1.7/rapida/clients/protos/integration_api_pb2.py +146 -0
  39. rapida_python-0.1.7/rapida/clients/protos/integration_api_pb2.pyi +305 -0
  40. rapida_python-0.1.7/rapida/clients/protos/integration_api_pb2_grpc.py +2122 -0
  41. rapida_python-0.1.7/rapida/clients/protos/invoker_api_pb2.py +72 -0
  42. rapida_python-0.1.7/rapida/clients/protos/invoker_api_pb2.pyi +107 -0
  43. rapida_python-0.1.7/rapida/clients/protos/invoker_api_pb2_grpc.py +183 -0
  44. rapida_python-0.1.7/rapida/clients/protos/knowledge_api_pb2.py +114 -0
  45. rapida_python-0.1.7/rapida/clients/protos/knowledge_api_pb2.pyi +339 -0
  46. rapida_python-0.1.7/rapida/clients/protos/knowledge_api_pb2_grpc.py +486 -0
  47. rapida_python-0.1.7/rapida/clients/protos/marketplace_api_pb2.py +48 -0
  48. rapida_python-0.1.7/rapida/clients/protos/marketplace_api_pb2.pyi +74 -0
  49. rapida_python-0.1.7/rapida/clients/protos/marketplace_api_pb2_grpc.py +97 -0
  50. rapida_python-0.1.7/rapida/clients/protos/provider_api_pb2.py +54 -0
  51. rapida_python-0.1.7/rapida/clients/protos/provider_api_pb2.pyi +71 -0
  52. rapida_python-0.1.7/rapida/clients/protos/provider_api_pb2_grpc.py +140 -0
  53. rapida_python-0.1.7/rapida/clients/protos/sendgrid_api_pb2.py +51 -0
  54. rapida_python-0.1.7/rapida/clients/protos/sendgrid_api_pb2.pyi +70 -0
  55. rapida_python-0.1.7/rapida/clients/protos/sendgrid_api_pb2_grpc.py +183 -0
  56. rapida_python-0.1.7/rapida/clients/protos/talk_api_pb2.py +110 -0
  57. rapida_python-0.1.7/rapida/clients/protos/talk_api_pb2.pyi +245 -0
  58. rapida_python-0.1.7/rapida/clients/protos/talk_api_pb2_grpc.py +357 -0
  59. rapida_python-0.1.7/rapida/clients/protos/vault_api_pb2.py +76 -0
  60. rapida_python-0.1.7/rapida/clients/protos/vault_api_pb2.pyi +116 -0
  61. rapida_python-0.1.7/rapida/clients/protos/vault_api_pb2_grpc.py +355 -0
  62. rapida_python-0.1.7/rapida/clients/protos/web_api_pb2.py +193 -0
  63. rapida_python-0.1.7/rapida/clients/protos/web_api_pb2.pyi +564 -0
  64. rapida_python-0.1.7/rapida/clients/protos/web_api_pb2_grpc.py +1190 -0
  65. rapida_python-0.1.7/rapida/configs/__init__.py +37 -0
  66. rapida_python-0.1.7/rapida/connections/__init__.py +234 -0
  67. rapida_python-0.1.7/rapida/utils/rapida_header.py +47 -0
  68. {rapida-python-0.1.3a0/rapida → rapida_python-0.1.7/rapida/utils}/rapida_source.py +17 -44
  69. rapida_python-0.1.7/rapida/utils/rapida_value.py +244 -0
  70. {rapida-python-0.1.3a0 → rapida_python-0.1.7}/rapida/version.py +1 -1
  71. {rapida-python-0.1.3a0 → rapida_python-0.1.7}/rapida_python.egg-info/PKG-INFO +25 -11
  72. rapida_python-0.1.7/rapida_python.egg-info/SOURCES.txt +81 -0
  73. rapida_python-0.1.7/rapida_python.egg-info/requires.txt +10 -0
  74. {rapida-python-0.1.3a0 → rapida_python-0.1.7}/rapida_python.egg-info/top_level.txt +0 -1
  75. rapida_python-0.1.7/setup.py +6 -0
  76. rapida-python-0.1.3a0/bin/__init__.py +0 -3
  77. rapida-python-0.1.3a0/rapida/__init__.py +0 -62
  78. rapida-python-0.1.3a0/rapida/artifacts/__init__.py +0 -3
  79. rapida-python-0.1.3a0/rapida/client/grpc_bridge.py +0 -205
  80. rapida-python-0.1.3a0/rapida/client/rapida_bridge.py +0 -451
  81. rapida-python-0.1.3a0/rapida/client/response_wrapper.py +0 -275
  82. rapida-python-0.1.3a0/rapida/constants.py +0 -33
  83. rapida-python-0.1.3a0/rapida/exceptions/__init__.py +0 -35
  84. rapida-python-0.1.3a0/rapida/exceptions/exceptions.py +0 -128
  85. rapida-python-0.1.3a0/rapida/rapida_client.py +0 -455
  86. rapida-python-0.1.3a0/rapida/rapida_client_options.py +0 -77
  87. rapida-python-0.1.3a0/rapida/tests/test_rapida_client.py +0 -131
  88. rapida-python-0.1.3a0/rapida/tests/test_rapida_client_options.py +0 -67
  89. rapida-python-0.1.3a0/rapida/tests/test_values.py +0 -49
  90. rapida-python-0.1.3a0/rapida/values.py +0 -371
  91. rapida-python-0.1.3a0/rapida_python.egg-info/SOURCES.txt +0 -29
  92. rapida-python-0.1.3a0/rapida_python.egg-info/requires.txt +0 -6
  93. rapida-python-0.1.3a0/setup.py +0 -44
  94. {rapida-python-0.1.3a0 → rapida_python-0.1.7}/README.md +0 -0
  95. {rapida-python-0.1.3a0/rapida/client → rapida_python-0.1.7/rapida/clients}/__init__.py +0 -0
  96. {rapida-python-0.1.3a0/rapida/tests → rapida_python-0.1.7/rapida/utils}/__init__.py +0 -0
  97. {rapida-python-0.1.3a0/rapida → rapida_python-0.1.7/rapida/utils}/rapida_environment.py +0 -0
  98. {rapida-python-0.1.3a0/rapida → rapida_python-0.1.7/rapida/utils}/rapida_region.py +0 -0
  99. {rapida-python-0.1.3a0 → rapida_python-0.1.7}/rapida_python.egg-info/dependency_links.txt +0 -0
  100. {rapida-python-0.1.3a0 → rapida_python-0.1.7}/setup.cfg +0 -0
@@ -1,18 +1,33 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: rapida-python
3
- Version: 0.1.3a0
4
- Summary: rapidaAi sdk to integrate rapida.ai api's
5
- Home-page: https://github.com/rapidaai/rapida-python
6
- Author-email: code@rapida.ai
7
- License: UNKNOWN
8
- Platform: POSIX
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
15
- Provides-Extra: grpcio-tools
22
+ Requires-Dist: protobuf
23
+ Requires-Dist: grpcio
24
+ Requires-Dist: grpcio-tools
25
+ Provides-Extra: dev
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"
16
31
 
17
32
  ## Table Of Contents
18
33
 
@@ -61,4 +76,3 @@ Use this space to show useful examples of how a project can be used. Additional
61
76
 
62
77
  _For more examples, please refer to the [Documentation](https://docs.rapida.ai/api-reference/introduction)
63
78
  # gxs-demo
64
-
@@ -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"]