robosystems-client 0.1.16__py3-none-any.whl → 0.1.17__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.

Potentially problematic release.


This version of robosystems-client might be problematic. Click here for more details.

Files changed (96) hide show
  1. robosystems_client/api/agent/auto_select_agent.py +0 -18
  2. robosystems_client/api/agent/batch_process_queries.py +0 -18
  3. robosystems_client/api/agent/execute_specific_agent.py +0 -18
  4. robosystems_client/api/agent/get_agent_metadata.py +0 -18
  5. robosystems_client/api/agent/list_agents.py +0 -18
  6. robosystems_client/api/agent/recommend_agent.py +0 -18
  7. robosystems_client/api/auth/forgot_password.py +191 -0
  8. robosystems_client/api/auth/generate_sso_token.py +18 -0
  9. robosystems_client/api/auth/get_current_auth_user.py +4 -22
  10. robosystems_client/api/auth/logout_user.py +17 -17
  11. robosystems_client/api/auth/{refresh_session.py → refresh_auth_session.py} +21 -21
  12. robosystems_client/api/auth/resend_verification_email.py +222 -0
  13. robosystems_client/api/auth/reset_password.py +177 -0
  14. robosystems_client/api/auth/validate_reset_token.py +171 -0
  15. robosystems_client/api/auth/verify_email.py +177 -0
  16. robosystems_client/api/backup/create_backup.py +0 -18
  17. robosystems_client/api/backup/export_backup.py +0 -18
  18. robosystems_client/api/backup/get_backup_download_url.py +0 -18
  19. robosystems_client/api/backup/get_backup_stats.py +0 -18
  20. robosystems_client/api/backup/list_backups.py +0 -18
  21. robosystems_client/api/backup/restore_backup.py +0 -18
  22. robosystems_client/api/connections/create_connection.py +0 -18
  23. robosystems_client/api/connections/create_link_token.py +0 -18
  24. robosystems_client/api/connections/delete_connection.py +0 -18
  25. robosystems_client/api/connections/exchange_link_token.py +0 -18
  26. robosystems_client/api/connections/get_connection.py +0 -18
  27. robosystems_client/api/connections/get_connection_options.py +0 -18
  28. robosystems_client/api/connections/init_o_auth.py +0 -18
  29. robosystems_client/api/connections/list_connections.py +0 -18
  30. robosystems_client/api/connections/oauth_callback.py +4 -22
  31. robosystems_client/api/connections/sync_connection.py +0 -18
  32. robosystems_client/api/copy/copy_data_to_graph.py +0 -18
  33. robosystems_client/api/create/create_graph.py +0 -18
  34. robosystems_client/api/graph_analytics/get_graph_metrics.py +0 -18
  35. robosystems_client/api/graph_analytics/get_graph_usage_stats.py +0 -18
  36. robosystems_client/api/graph_billing/get_current_graph_bill.py +0 -18
  37. robosystems_client/api/graph_billing/get_graph_billing_history.py +0 -18
  38. robosystems_client/api/graph_billing/get_graph_monthly_bill.py +0 -18
  39. robosystems_client/api/graph_billing/get_graph_usage_details.py +0 -18
  40. robosystems_client/api/graph_credits/check_credit_balance.py +0 -18
  41. robosystems_client/api/graph_credits/check_storage_limits.py +0 -18
  42. robosystems_client/api/graph_credits/get_credit_summary.py +0 -18
  43. robosystems_client/api/graph_credits/get_storage_usage.py +0 -18
  44. robosystems_client/api/graph_credits/list_credit_transactions.py +0 -18
  45. robosystems_client/api/graph_health/get_database_health.py +0 -18
  46. robosystems_client/api/graph_info/get_database_info.py +0 -18
  47. robosystems_client/api/graph_limits/get_graph_limits.py +0 -18
  48. robosystems_client/api/mcp/call_mcp_tool.py +0 -18
  49. robosystems_client/api/mcp/list_mcp_tools.py +0 -18
  50. robosystems_client/api/operations/cancel_operation.py +0 -18
  51. robosystems_client/api/operations/get_operation_status.py +0 -18
  52. robosystems_client/api/operations/stream_operation_events.py +0 -18
  53. robosystems_client/api/query/execute_cypher_query.py +0 -18
  54. robosystems_client/api/schema/export_graph_schema.py +0 -18
  55. robosystems_client/api/schema/get_graph_schema_info.py +0 -18
  56. robosystems_client/api/schema/list_schema_extensions.py +0 -18
  57. robosystems_client/api/schema/validate_schema.py +0 -18
  58. robosystems_client/api/subgraphs/create_subgraph.py +0 -18
  59. robosystems_client/api/subgraphs/delete_subgraph.py +0 -18
  60. robosystems_client/api/subgraphs/get_subgraph_info.py +0 -18
  61. robosystems_client/api/subgraphs/get_subgraph_quota.py +0 -18
  62. robosystems_client/api/subgraphs/list_subgraphs.py +0 -18
  63. robosystems_client/api/user/create_user_api_key.py +0 -18
  64. robosystems_client/api/user/get_all_credit_summaries.py +0 -18
  65. robosystems_client/api/user/get_current_user.py +0 -18
  66. robosystems_client/api/user/get_user_graphs.py +0 -18
  67. robosystems_client/api/user/list_user_api_keys.py +0 -18
  68. robosystems_client/api/user/revoke_user_api_key.py +0 -18
  69. robosystems_client/api/user/select_user_graph.py +0 -18
  70. robosystems_client/api/user/update_user.py +0 -18
  71. robosystems_client/api/user/update_user_api_key.py +0 -18
  72. robosystems_client/api/user/update_user_password.py +0 -18
  73. robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -18
  74. robosystems_client/api/user_analytics/get_user_usage_overview.py +0 -18
  75. robosystems_client/api/user_limits/get_all_shared_repository_limits.py +0 -18
  76. robosystems_client/api/user_limits/get_shared_repository_limits.py +0 -18
  77. robosystems_client/api/user_limits/get_user_limits.py +0 -18
  78. robosystems_client/api/user_limits/get_user_usage.py +0 -18
  79. robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +0 -18
  80. robosystems_client/api/user_subscriptions/get_repository_credits.py +0 -18
  81. robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +0 -18
  82. robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -18
  83. robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +0 -18
  84. robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +0 -18
  85. robosystems_client/models/__init__.py +16 -0
  86. robosystems_client/models/email_verification_request.py +60 -0
  87. robosystems_client/models/forgot_password_request.py +60 -0
  88. robosystems_client/models/forgot_password_response_forgotpassword.py +44 -0
  89. robosystems_client/models/resend_verification_email_response_resendverificationemail.py +44 -0
  90. robosystems_client/models/reset_password_request.py +68 -0
  91. robosystems_client/models/reset_password_validate_response.py +82 -0
  92. robosystems_client-0.1.17.dist-info/METADATA +89 -0
  93. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/RECORD +95 -83
  94. robosystems_client-0.1.17.dist-info/licenses/LICENSE +21 -0
  95. robosystems_client-0.1.16.dist-info/METADATA +0 -302
  96. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/WHEEL +0 -0
@@ -85,6 +85,7 @@ from .detailed_transactions_response_date_range import (
85
85
  DetailedTransactionsResponseDateRange,
86
86
  )
87
87
  from .detailed_transactions_response_summary import DetailedTransactionsResponseSummary
88
+ from .email_verification_request import EmailVerificationRequest
88
89
  from .enhanced_credit_transaction_response import EnhancedCreditTransactionResponse
89
90
  from .enhanced_credit_transaction_response_metadata import (
90
91
  EnhancedCreditTransactionResponseMetadata,
@@ -92,6 +93,10 @@ from .enhanced_credit_transaction_response_metadata import (
92
93
  from .error_response import ErrorResponse
93
94
  from .exchange_token_request import ExchangeTokenRequest
94
95
  from .exchange_token_request_metadata_type_0 import ExchangeTokenRequestMetadataType0
96
+ from .forgot_password_request import ForgotPasswordRequest
97
+ from .forgot_password_response_forgotpassword import (
98
+ ForgotPasswordResponseForgotpassword,
99
+ )
95
100
  from .get_all_credit_summaries_response_getallcreditsummaries import (
96
101
  GetAllCreditSummariesResponseGetallcreditsummaries,
97
102
  )
@@ -185,6 +190,11 @@ from .register_request import RegisterRequest
185
190
  from .repository_credits_response import RepositoryCreditsResponse
186
191
  from .repository_plan import RepositoryPlan
187
192
  from .repository_type import RepositoryType
193
+ from .resend_verification_email_response_resendverificationemail import (
194
+ ResendVerificationEmailResponseResendverificationemail,
195
+ )
196
+ from .reset_password_request import ResetPasswordRequest
197
+ from .reset_password_validate_response import ResetPasswordValidateResponse
188
198
  from .response_mode import ResponseMode
189
199
  from .s3_copy_request import S3CopyRequest
190
200
  from .s3_copy_request_file_format import S3CopyRequestFileFormat
@@ -330,11 +340,14 @@ __all__ = (
330
340
  "DetailedTransactionsResponse",
331
341
  "DetailedTransactionsResponseDateRange",
332
342
  "DetailedTransactionsResponseSummary",
343
+ "EmailVerificationRequest",
333
344
  "EnhancedCreditTransactionResponse",
334
345
  "EnhancedCreditTransactionResponseMetadata",
335
346
  "ErrorResponse",
336
347
  "ExchangeTokenRequest",
337
348
  "ExchangeTokenRequestMetadataType0",
349
+ "ForgotPasswordRequest",
350
+ "ForgotPasswordResponseForgotpassword",
338
351
  "GetAllCreditSummariesResponseGetallcreditsummaries",
339
352
  "GetAllSharedRepositoryLimitsResponseGetallsharedrepositorylimits",
340
353
  "GetBackupDownloadUrlResponseGetbackupdownloadurl",
@@ -392,6 +405,9 @@ __all__ = (
392
405
  "RepositoryCreditsResponse",
393
406
  "RepositoryPlan",
394
407
  "RepositoryType",
408
+ "ResendVerificationEmailResponseResendverificationemail",
409
+ "ResetPasswordRequest",
410
+ "ResetPasswordValidateResponse",
395
411
  "ResponseMode",
396
412
  "S3CopyRequest",
397
413
  "S3CopyRequestFileFormat",
@@ -0,0 +1,60 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="EmailVerificationRequest")
8
+
9
+
10
+ @_attrs_define
11
+ class EmailVerificationRequest:
12
+ """Email verification request model.
13
+
14
+ Attributes:
15
+ token (str): Email verification token from email link
16
+ """
17
+
18
+ token: str
19
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
20
+
21
+ def to_dict(self) -> dict[str, Any]:
22
+ token = self.token
23
+
24
+ field_dict: dict[str, Any] = {}
25
+ field_dict.update(self.additional_properties)
26
+ field_dict.update(
27
+ {
28
+ "token": token,
29
+ }
30
+ )
31
+
32
+ return field_dict
33
+
34
+ @classmethod
35
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
36
+ d = dict(src_dict)
37
+ token = d.pop("token")
38
+
39
+ email_verification_request = cls(
40
+ token=token,
41
+ )
42
+
43
+ email_verification_request.additional_properties = d
44
+ return email_verification_request
45
+
46
+ @property
47
+ def additional_keys(self) -> list[str]:
48
+ return list(self.additional_properties.keys())
49
+
50
+ def __getitem__(self, key: str) -> Any:
51
+ return self.additional_properties[key]
52
+
53
+ def __setitem__(self, key: str, value: Any) -> None:
54
+ self.additional_properties[key] = value
55
+
56
+ def __delitem__(self, key: str) -> None:
57
+ del self.additional_properties[key]
58
+
59
+ def __contains__(self, key: str) -> bool:
60
+ return key in self.additional_properties
@@ -0,0 +1,60 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="ForgotPasswordRequest")
8
+
9
+
10
+ @_attrs_define
11
+ class ForgotPasswordRequest:
12
+ """Forgot password request model.
13
+
14
+ Attributes:
15
+ email (str): Email address to send reset link
16
+ """
17
+
18
+ email: str
19
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
20
+
21
+ def to_dict(self) -> dict[str, Any]:
22
+ email = self.email
23
+
24
+ field_dict: dict[str, Any] = {}
25
+ field_dict.update(self.additional_properties)
26
+ field_dict.update(
27
+ {
28
+ "email": email,
29
+ }
30
+ )
31
+
32
+ return field_dict
33
+
34
+ @classmethod
35
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
36
+ d = dict(src_dict)
37
+ email = d.pop("email")
38
+
39
+ forgot_password_request = cls(
40
+ email=email,
41
+ )
42
+
43
+ forgot_password_request.additional_properties = d
44
+ return forgot_password_request
45
+
46
+ @property
47
+ def additional_keys(self) -> list[str]:
48
+ return list(self.additional_properties.keys())
49
+
50
+ def __getitem__(self, key: str) -> Any:
51
+ return self.additional_properties[key]
52
+
53
+ def __setitem__(self, key: str, value: Any) -> None:
54
+ self.additional_properties[key] = value
55
+
56
+ def __delitem__(self, key: str) -> None:
57
+ del self.additional_properties[key]
58
+
59
+ def __contains__(self, key: str) -> bool:
60
+ return key in self.additional_properties
@@ -0,0 +1,44 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="ForgotPasswordResponseForgotpassword")
8
+
9
+
10
+ @_attrs_define
11
+ class ForgotPasswordResponseForgotpassword:
12
+ """ """
13
+
14
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
15
+
16
+ def to_dict(self) -> dict[str, Any]:
17
+ field_dict: dict[str, Any] = {}
18
+ field_dict.update(self.additional_properties)
19
+
20
+ return field_dict
21
+
22
+ @classmethod
23
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
24
+ d = dict(src_dict)
25
+ forgot_password_response_forgotpassword = cls()
26
+
27
+ forgot_password_response_forgotpassword.additional_properties = d
28
+ return forgot_password_response_forgotpassword
29
+
30
+ @property
31
+ def additional_keys(self) -> list[str]:
32
+ return list(self.additional_properties.keys())
33
+
34
+ def __getitem__(self, key: str) -> Any:
35
+ return self.additional_properties[key]
36
+
37
+ def __setitem__(self, key: str, value: Any) -> None:
38
+ self.additional_properties[key] = value
39
+
40
+ def __delitem__(self, key: str) -> None:
41
+ del self.additional_properties[key]
42
+
43
+ def __contains__(self, key: str) -> bool:
44
+ return key in self.additional_properties
@@ -0,0 +1,44 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="ResendVerificationEmailResponseResendverificationemail")
8
+
9
+
10
+ @_attrs_define
11
+ class ResendVerificationEmailResponseResendverificationemail:
12
+ """ """
13
+
14
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
15
+
16
+ def to_dict(self) -> dict[str, Any]:
17
+ field_dict: dict[str, Any] = {}
18
+ field_dict.update(self.additional_properties)
19
+
20
+ return field_dict
21
+
22
+ @classmethod
23
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
24
+ d = dict(src_dict)
25
+ resend_verification_email_response_resendverificationemail = cls()
26
+
27
+ resend_verification_email_response_resendverificationemail.additional_properties = d
28
+ return resend_verification_email_response_resendverificationemail
29
+
30
+ @property
31
+ def additional_keys(self) -> list[str]:
32
+ return list(self.additional_properties.keys())
33
+
34
+ def __getitem__(self, key: str) -> Any:
35
+ return self.additional_properties[key]
36
+
37
+ def __setitem__(self, key: str, value: Any) -> None:
38
+ self.additional_properties[key] = value
39
+
40
+ def __delitem__(self, key: str) -> None:
41
+ del self.additional_properties[key]
42
+
43
+ def __contains__(self, key: str) -> bool:
44
+ return key in self.additional_properties
@@ -0,0 +1,68 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="ResetPasswordRequest")
8
+
9
+
10
+ @_attrs_define
11
+ class ResetPasswordRequest:
12
+ """Reset password request model.
13
+
14
+ Attributes:
15
+ token (str): Password reset token from email link
16
+ new_password (str): New password (must meet security requirements)
17
+ """
18
+
19
+ token: str
20
+ new_password: str
21
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
22
+
23
+ def to_dict(self) -> dict[str, Any]:
24
+ token = self.token
25
+
26
+ new_password = self.new_password
27
+
28
+ field_dict: dict[str, Any] = {}
29
+ field_dict.update(self.additional_properties)
30
+ field_dict.update(
31
+ {
32
+ "token": token,
33
+ "new_password": new_password,
34
+ }
35
+ )
36
+
37
+ return field_dict
38
+
39
+ @classmethod
40
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
41
+ d = dict(src_dict)
42
+ token = d.pop("token")
43
+
44
+ new_password = d.pop("new_password")
45
+
46
+ reset_password_request = cls(
47
+ token=token,
48
+ new_password=new_password,
49
+ )
50
+
51
+ reset_password_request.additional_properties = d
52
+ return reset_password_request
53
+
54
+ @property
55
+ def additional_keys(self) -> list[str]:
56
+ return list(self.additional_properties.keys())
57
+
58
+ def __getitem__(self, key: str) -> Any:
59
+ return self.additional_properties[key]
60
+
61
+ def __setitem__(self, key: str, value: Any) -> None:
62
+ self.additional_properties[key] = value
63
+
64
+ def __delitem__(self, key: str) -> None:
65
+ del self.additional_properties[key]
66
+
67
+ def __contains__(self, key: str) -> bool:
68
+ return key in self.additional_properties
@@ -0,0 +1,82 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar, Union, cast
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ from ..types import UNSET, Unset
8
+
9
+ T = TypeVar("T", bound="ResetPasswordValidateResponse")
10
+
11
+
12
+ @_attrs_define
13
+ class ResetPasswordValidateResponse:
14
+ """Password reset token validation response model.
15
+
16
+ Attributes:
17
+ valid (bool): Whether the token is valid
18
+ email (Union[None, Unset, str]): Masked email address if token is valid
19
+ """
20
+
21
+ valid: bool
22
+ email: Union[None, Unset, str] = UNSET
23
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
24
+
25
+ def to_dict(self) -> dict[str, Any]:
26
+ valid = self.valid
27
+
28
+ email: Union[None, Unset, str]
29
+ if isinstance(self.email, Unset):
30
+ email = UNSET
31
+ else:
32
+ email = self.email
33
+
34
+ field_dict: dict[str, Any] = {}
35
+ field_dict.update(self.additional_properties)
36
+ field_dict.update(
37
+ {
38
+ "valid": valid,
39
+ }
40
+ )
41
+ if email is not UNSET:
42
+ field_dict["email"] = email
43
+
44
+ return field_dict
45
+
46
+ @classmethod
47
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
48
+ d = dict(src_dict)
49
+ valid = d.pop("valid")
50
+
51
+ def _parse_email(data: object) -> Union[None, Unset, str]:
52
+ if data is None:
53
+ return data
54
+ if isinstance(data, Unset):
55
+ return data
56
+ return cast(Union[None, Unset, str], data)
57
+
58
+ email = _parse_email(d.pop("email", UNSET))
59
+
60
+ reset_password_validate_response = cls(
61
+ valid=valid,
62
+ email=email,
63
+ )
64
+
65
+ reset_password_validate_response.additional_properties = d
66
+ return reset_password_validate_response
67
+
68
+ @property
69
+ def additional_keys(self) -> list[str]:
70
+ return list(self.additional_properties.keys())
71
+
72
+ def __getitem__(self, key: str) -> Any:
73
+ return self.additional_properties[key]
74
+
75
+ def __setitem__(self, key: str, value: Any) -> None:
76
+ self.additional_properties[key] = value
77
+
78
+ def __delitem__(self, key: str) -> None:
79
+ del self.additional_properties[key]
80
+
81
+ def __contains__(self, key: str) -> bool:
82
+ return key in self.additional_properties
@@ -0,0 +1,89 @@
1
+ Metadata-Version: 2.4
2
+ Name: robosystems-client
3
+ Version: 0.1.17
4
+ Summary: Python Client for RoboSystems financial graph database API
5
+ Author: RFS LLC
6
+ License: MIT
7
+ License-File: LICENSE
8
+ Keywords: api,client,financial,graph,kuzu,robosystems,sdk
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Framework :: AsyncIO
11
+ Classifier: Framework :: Pydantic
12
+ Classifier: Framework :: Pydantic :: 2
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Financial and Insurance Industry
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Natural Language :: English
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Database :: Front-Ends
23
+ Classifier: Topic :: Internet :: WWW/HTTP
24
+ Classifier: Topic :: Office/Business :: Financial
25
+ Classifier: Topic :: Office/Business :: Financial :: Accounting
26
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
27
+ Classifier: Typing :: Typed
28
+ Requires-Python: >=3.10
29
+ Requires-Dist: attrs>=23.0.0
30
+ Requires-Dist: httpx>=0.28.1
31
+ Requires-Dist: pydantic>=2.11.7
32
+ Requires-Dist: python-dateutil>=2.8.0
33
+ Requires-Dist: typing-extensions>=4.0.0
34
+ Provides-Extra: all
35
+ Requires-Dist: httpx>=0.28.1; extra == 'all'
36
+ Requires-Dist: pandas>=1.5.0; extra == 'all'
37
+ Provides-Extra: dev
38
+ Requires-Dist: build>=1.0.0; extra == 'dev'
39
+ Requires-Dist: openapi-python-client>=0.21.8; extra == 'dev'
40
+ Requires-Dist: pyright>=1.1.402; extra == 'dev'
41
+ Requires-Dist: pytest-asyncio>=0.26.0; extra == 'dev'
42
+ Requires-Dist: pytest-httpx>=0.30.0; extra == 'dev'
43
+ Requires-Dist: pytest>=8.3.5; extra == 'dev'
44
+ Requires-Dist: ruff>=0.12; extra == 'dev'
45
+ Requires-Dist: twine>=5.0.0; extra == 'dev'
46
+ Provides-Extra: extensions
47
+ Requires-Dist: httpx>=0.28.1; extra == 'extensions'
48
+ Requires-Dist: pandas>=1.5.0; extra == 'extensions'
49
+ Description-Content-Type: text/markdown
50
+
51
+ # RoboSystems Python Client
52
+
53
+ [![PyPI version](https://badge.fury.io/py/robosystems-client.svg)](https://pypi.org/project/robosystems-client/)
54
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
55
+
56
+ Official Python Client for the RoboSystems Financial Knowledge Graph API. Access comprehensive financial data including accounting transactions, financial reports, and advanced graph analytics through a type-safe, async-ready Python interface.
57
+
58
+ ## Features
59
+
60
+ - **Type-safe API client** with full type hints and Pydantic models
61
+ - **Async/await support** for high-performance applications
62
+ - **Streaming support** for memory-efficient processing of large result sets
63
+ - **Financial AI Agent** integration for natural language queries
64
+ - **Comprehensive error handling** with custom exceptions
65
+
66
+ ## Installation
67
+
68
+ ```bash
69
+ pip install robosystems-client
70
+ ```
71
+
72
+ ## API Reference
73
+
74
+ - API reference: [https://api.robosystems.ai](https://api.robosystems.ai)
75
+ - API documentation: [https://api.robosystems.ai/docs](https://api.robosystems.ai/docs)
76
+ - OpenAPI specification: [https://api.robosystems.ai/openapi.json](https://api.robosystems.ai/openapi.json)
77
+
78
+ ## Support
79
+
80
+ - Issues: [Issues](https://github.com/RoboFinSystems/robosystems-python-client/issues)
81
+ - Discussions: [Discussions](https://github.com/RoboFinSystems/robosystems-python-client/discussions)
82
+ - Projects: [Projects](https://github.com/RoboFinSystems/robosystems-python-client/projects)
83
+ - Wiki: [Wiki](https://github.com/RoboFinSystems/robosystems-python-client/wiki)
84
+
85
+ ## License
86
+
87
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
88
+
89
+ MIT © 2025 RFS LLC