caredaily 1.0.2__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 (63) hide show
  1. caredaily-1.0.2/LICENSE.txt +201 -0
  2. caredaily-1.0.2/PKG-INFO +271 -0
  3. caredaily-1.0.2/README.md +239 -0
  4. caredaily-1.0.2/pyproject.toml +155 -0
  5. caredaily-1.0.2/setup.cfg +4 -0
  6. caredaily-1.0.2/src/caredaily/__init__.py +122 -0
  7. caredaily-1.0.2/src/caredaily/__main__.py +3 -0
  8. caredaily-1.0.2/src/caredaily/apis/__init__.py +94 -0
  9. caredaily-1.0.2/src/caredaily/apis/admin/__init__.py +33 -0
  10. caredaily-1.0.2/src/caredaily/apis/admin/billing.py +433 -0
  11. caredaily-1.0.2/src/caredaily/apis/admin/challenges.py +282 -0
  12. caredaily-1.0.2/src/caredaily/apis/admin/devices.py +90 -0
  13. caredaily-1.0.2/src/caredaily/apis/admin/firmware.py +290 -0
  14. caredaily-1.0.2/src/caredaily/apis/admin/groups.py +142 -0
  15. caredaily-1.0.2/src/caredaily/apis/admin/locations.py +266 -0
  16. caredaily-1.0.2/src/caredaily/apis/admin/narratives.py +108 -0
  17. caredaily-1.0.2/src/caredaily/apis/admin/organizations.py +744 -0
  18. caredaily-1.0.2/src/caredaily/apis/admin/reports.py +548 -0
  19. caredaily-1.0.2/src/caredaily/apis/admin/system.py +97 -0
  20. caredaily-1.0.2/src/caredaily/apis/admin/tags.py +133 -0
  21. caredaily-1.0.2/src/caredaily/apis/admin/user_groups.py +211 -0
  22. caredaily-1.0.2/src/caredaily/apis/admin/users.py +465 -0
  23. caredaily-1.0.2/src/caredaily/apis/api.py +24 -0
  24. caredaily-1.0.2/src/caredaily/apis/app/__init__.py +47 -0
  25. caredaily-1.0.2/src/caredaily/apis/app/ai.py +89 -0
  26. caredaily-1.0.2/src/caredaily/apis/app/app_files.py +208 -0
  27. caredaily-1.0.2/src/caredaily/apis/app/authentication.py +437 -0
  28. caredaily-1.0.2/src/caredaily/apis/app/cloud_connectivity.py +130 -0
  29. caredaily-1.0.2/src/caredaily/apis/app/clouds_integration.py +627 -0
  30. caredaily-1.0.2/src/caredaily/apis/app/device_files.py +587 -0
  31. caredaily-1.0.2/src/caredaily/apis/app/device_measurements.py +436 -0
  32. caredaily-1.0.2/src/caredaily/apis/app/device_types_and_parameters.py +856 -0
  33. caredaily-1.0.2/src/caredaily/apis/app/devices.py +1297 -0
  34. caredaily-1.0.2/src/caredaily/apis/app/energy_management.py +193 -0
  35. caredaily-1.0.2/src/caredaily/apis/app/locations.py +1168 -0
  36. caredaily-1.0.2/src/caredaily/apis/app/paid_services.py +489 -0
  37. caredaily-1.0.2/src/caredaily/apis/app/professional_monitoring.py +217 -0
  38. caredaily-1.0.2/src/caredaily/apis/app/rag.py +212 -0
  39. caredaily-1.0.2/src/caredaily/apis/app/rules.py +326 -0
  40. caredaily-1.0.2/src/caredaily/apis/app/system_and_user_properties.py +220 -0
  41. caredaily-1.0.2/src/caredaily/apis/app/user_accounts.py +620 -0
  42. caredaily-1.0.2/src/caredaily/apis/app/user_communication.py +895 -0
  43. caredaily-1.0.2/src/caredaily/apis/app/weather.py +154 -0
  44. caredaily-1.0.2/src/caredaily/apis/app/websocket.py +653 -0
  45. caredaily-1.0.2/src/caredaily/apis/bot/__init__.py +17 -0
  46. caredaily-1.0.2/src/caredaily/apis/bot/analytic.py +1492 -0
  47. caredaily-1.0.2/src/caredaily/apis/bot/bot_developer.py +555 -0
  48. caredaily-1.0.2/src/caredaily/apis/bot/bot_store.py +382 -0
  49. caredaily-1.0.2/src/caredaily/apis/bot/developer_teams.py +261 -0
  50. caredaily-1.0.2/src/caredaily/apis/bot/execution.py +57 -0
  51. caredaily-1.0.2/src/caredaily/caredaily.py +258 -0
  52. caredaily-1.0.2/src/caredaily/cli/__init__.py +9 -0
  53. caredaily-1.0.2/src/caredaily/cli/app.py +135 -0
  54. caredaily-1.0.2/src/caredaily/cli/configure.py +676 -0
  55. caredaily-1.0.2/src/caredaily/exceptions.py +10 -0
  56. caredaily-1.0.2/src/caredaily/http.py +296 -0
  57. caredaily-1.0.2/src/caredaily/models.py +242 -0
  58. caredaily-1.0.2/src/caredaily.egg-info/PKG-INFO +271 -0
  59. caredaily-1.0.2/src/caredaily.egg-info/SOURCES.txt +61 -0
  60. caredaily-1.0.2/src/caredaily.egg-info/dependency_links.txt +1 -0
  61. caredaily-1.0.2/src/caredaily.egg-info/entry_points.txt +2 -0
  62. caredaily-1.0.2/src/caredaily.egg-info/requires.txt +16 -0
  63. caredaily-1.0.2/src/caredaily.egg-info/top_level.txt +1 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright {yyyy} {name of copyright owner}
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,271 @@
1
+ Metadata-Version: 2.4
2
+ Name: caredaily
3
+ Version: 1.0.2
4
+ Summary: CLI and API interface for CareDaily applications.
5
+ Author-email: Destry Teeter <destry@caredaily.ai>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: homepage, https://github.com/peoplepower/python-core
8
+ Project-URL: documentation, https://app.peoplepowerco.com/cloud/apidocs/cloud.html
9
+ Keywords: caredaily,smart-home,iot,api-client,sdk,cli,home-automation,caregiving,monitoring,devices
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE.txt
18
+ Requires-Dist: click
19
+ Requires-Dist: python-dotenv
20
+ Requires-Dist: tabulate
21
+ Requires-Dist: requests>=2.32.3
22
+ Requires-Dist: pydantic>=2.0.0
23
+ Provides-Extra: dev
24
+ Requires-Dist: pytest-cov; extra == "dev"
25
+ Requires-Dist: pyyaml; extra == "dev"
26
+ Requires-Dist: ruff; extra == "dev"
27
+ Provides-Extra: websockets
28
+ Requires-Dist: websockets>=12.0; extra == "websockets"
29
+ Provides-Extra: rsa
30
+ Requires-Dist: cryptography; extra == "rsa"
31
+ Dynamic: license-file
32
+
33
+ <!--
34
+ Licensed to the Apache Software Foundation (ASF) under one
35
+ or more contributor license agreements. See the NOTICE file
36
+ distributed with this work for additional information
37
+ regarding copyright ownership. The ASF licenses this file
38
+ to you under the Apache License, Version 2.0 (the
39
+ "License"); you may not use this file except in compliance
40
+ with the License. You may obtain a copy of the License at
41
+
42
+ http://www.apache.org/licenses/LICENSE-2.0
43
+
44
+ Unless required by applicable law or agreed to in writing,
45
+ software distributed under the License is distributed on an
46
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
47
+ KIND, either express or implied. See the License for the
48
+ specific language governing permissions and limitations
49
+ under the License.
50
+ -->
51
+
52
+ # CareDaily
53
+
54
+ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/license/apache-2-0)
55
+ [![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/peoplepower/python-core?sort=semver)](https://github.com/peoplepower/python-core/tree/latest)
56
+ [![Documentation](https://img.shields.io/badge/docs-apidocs-blue.svg)](https://app.peoplepowerco.com/cloud/apidocs/html/cloud.html)
57
+
58
+ Python SDK and CLI tool for interacting with the CareDaily API platform.
59
+
60
+ [**CareDaily**](#caredaily) |
61
+ [**Just Watch It Work**](#just-watch-it-work) |
62
+ [**Getting Started**](#getting-started) |
63
+ [**Explore the docs**](#explore-the-docs) |
64
+ [**Sign Up**](https://app.caredaily.ai/signup)
65
+
66
+ ## About
67
+
68
+ The CareDaily Python SDK provides a comprehensive interface to the CareDaily cloud platform (powered by People Power Company). It offers both programmatic access through Python classes and a command-line interface for managing smart home devices, user accounts, locations, and AI-powered services.
69
+
70
+ This package enables developers to:
71
+ - Build applications that integrate with CareDaily services
72
+ - Manage user authentication and authorization
73
+ - Control and monitor IoT devices
74
+ - Access AI and machine learning capabilities
75
+ - Manage administrative tasks and analytics
76
+
77
+ ## Just watch it work
78
+
79
+ ```bash
80
+ # Install the package
81
+ pip install caredaily
82
+
83
+ # Initialize your configuration
84
+ caredaily configure init
85
+
86
+ # Test connectivity
87
+ caredaily ping
88
+ ```
89
+
90
+ ## Getting Started
91
+
92
+ ### Installation
93
+
94
+ Install from PyPI (when published):
95
+ ```bash
96
+ pip install caredaily
97
+ ```
98
+
99
+ Or install from source:
100
+ ```bash
101
+ git clone https://github.com/peoplepower/python-core.git
102
+ cd python-core
103
+ pip install -e ".[dev]"
104
+ ```
105
+
106
+ ### Configuration
107
+
108
+ Before using the SDK or CLI, you need to configure your credentials:
109
+
110
+ ```bash
111
+ # Initialize configuration (creates ~/.caredaily/config and ~/.caredaily/credentials)
112
+ caredaily configure init
113
+
114
+ # Set up a profile interactively
115
+ caredaily configure interactive --profile myprofile
116
+
117
+ # Or use environment variable to specify profile
118
+ export CAREDAILY_PROFILE=myprofile
119
+ ```
120
+
121
+ Your configuration files will be stored in `~/.caredaily/`:
122
+ - `config`: Hostname, SSL settings, proxy configuration
123
+ - `credentials`: API keys (kept separate for security)
124
+
125
+ ### Using the CLI
126
+
127
+ ```bash
128
+ # Check cloud connectivity
129
+ caredaily cloud-connectivity --check-availability
130
+
131
+ # Login with username and password
132
+ caredaily login --username myuser --password mypass
133
+
134
+ # Get cloud version
135
+ caredaily cloud-connectivity --version
136
+
137
+ # Use a specific profile
138
+ caredaily --profile production ping
139
+ ```
140
+
141
+ ### Using the SDK
142
+
143
+ ```python
144
+ from caredaily import CareDaily, Authentication, CloudConnectivity
145
+
146
+ # Initialize with default profile
147
+ client = CareDaily()
148
+
149
+ # Or use a specific profile
150
+ client = CareDaily(profile="production")
151
+
152
+ # Check cloud connectivity
153
+ result = client.app_api(CloudConnectivity).check_availability()
154
+ print(result.data)
155
+
156
+ # Login with credentials
157
+ auth_result = client.app_api(Authentication).login_by_username(
158
+ username="myuser",
159
+ password="mypass"
160
+ )
161
+ print(auth_result.data)
162
+
163
+ # Access different API types
164
+ from caredaily import Locations, Devices
165
+
166
+ # Get user information
167
+ user_information = client.app_api(UserAccounts).get_user_information()
168
+
169
+ # Get devices
170
+ devices = client.app_api(Devices).get_devices()
171
+ ```
172
+
173
+ ### API Examples
174
+
175
+ #### Working with Locations
176
+ ```python
177
+ from caredaily import CareDaily, Locations
178
+
179
+ client = CareDaily()
180
+ locations_api = client.app_api(Locations)
181
+
182
+ # Get all locations for the user
183
+ result = locations_api.get_user_information()
184
+ for location in result.data.get('locations', []):
185
+ print(f"Location: {location['name']}")
186
+ ```
187
+
188
+ #### Working with Devices
189
+ ```python
190
+ from caredaily import CareDaily, Devices
191
+
192
+ client = CareDaily()
193
+ devices_api = client.app_api(Devices)
194
+
195
+ # Get all devices
196
+ result = devices_api.get_devices()
197
+ for device in result.data.get('devices', []):
198
+ print(f"Device: {device['id']} - {device['type']}")
199
+ ```
200
+
201
+ #### Admin Operations
202
+ ```python
203
+ from caredaily import CareDaily, Users, Organizations
204
+
205
+ client = CareDaily() # Must use admin API key
206
+
207
+ # Get organization users
208
+ users_api = client.admin_api(Users)
209
+ result = users_api.get_users(organizationId=123)
210
+
211
+ # Get organization details
212
+ orgs_api = client.admin_api(Organizations)
213
+ result = orgs_api.get_organization(organizationId=123)
214
+ ```
215
+
216
+ ### Development
217
+
218
+ For development setup and testing:
219
+
220
+ ```bash
221
+ # Install with development dependencies
222
+ pip install -e ".[dev]"
223
+
224
+ # Run tests
225
+ pytest
226
+
227
+ # Run tests with coverage
228
+ pytest --cov=caredaily --cov-report=html
229
+
230
+ # Run linter
231
+ ruff check src/
232
+
233
+ # Format code
234
+ ruff format src/
235
+ ```
236
+
237
+ ## Explore the Docs
238
+
239
+ CareDaily provides several API documentation resources to help you build and integrate with the platform:
240
+
241
+ - **[Cloud API Docs](https://app.peoplepowerco.com/cloud/apidocs/cloud.html)**
242
+ Comprehensive reference for the main CareDaily cloud API, including endpoints for device management, user accounts, locations, and core platform services.
243
+ - **[Admin API Docs](https://app.peoplepowerco.com/cloud/apidocs/admin.html)**
244
+ Documentation for administrative APIs, covering organization management, user administration, analytics, and advanced configuration options for enterprise use.
245
+ - **[Bots API Docs](https://app.peoplepowerco.com/cloud/apidocs/bots.html)**
246
+ Details on the Bots API, which enables automation, custom bot creation, and integration with CareDaily's AI-powered services for smart home and IoT workflows.
247
+
248
+ ## Get Involved
249
+
250
+ - Ask and answer questions on [StackOverflow](https://stackoverflow.com/questions/tagged/caredaily-python) using the **caredaily-python** tag
251
+
252
+ - Help find and fix issues by [**reporting bugs**](https://github.com/peoplepower/python-core/issues/new?labels=bug&template=bug-report---.md).
253
+ - Have a new idea? Have a suggestion? [**Request a feature**](https://github.com/peoplepower/python-core/issues/new?labels=enhancement&template=feature-request---.md) to get our attention.
254
+
255
+ ## Contributor Guide
256
+
257
+ Interested in contributing? Check out our
258
+ [CONTRIBUTING.md](https://github.com/peoplepower/python-core/blob/master/CONTRIBUTING.md)
259
+ to find resources around contributing along with a detailed guide on
260
+ how to set up a development environment.
261
+
262
+ ## Activity
263
+
264
+ <a href="https://next.ossinsight.io/widgets/official/compose-org-active-contributors?period=past_12_months&activity=active&owner_id=113403165" target="_blank" style="display: block" align="center">
265
+ <picture>
266
+ <source media="(prefers-color-scheme: dark)" srcset="https://next.ossinsight.io/widgets/official/compose-org-active-contributors/thumbnail.png?owner_id=113403165&period=past_12_months&activity=active&image_size=2x3&color_scheme=dark" width="273" height="auto">
267
+ <img alt="Active participants of pingcap - past 28 days" src="https://next.ossinsight.io/widgets/official/compose-org-active-contributors/thumbnail.png?owner_id=113403165&period=past_12_months&activity=active&image_size=2x3&color_scheme=light" width="273" height="auto">
268
+ </picture>
269
+ </a>
270
+
271
+ <!-- Made with [OSS Insight](https://ossinsight.io/) -->