provide-foundation 0.0.0.dev0__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.
- provide_foundation-0.0.0.dev0/LICENSE +201 -0
- provide_foundation-0.0.0.dev0/PKG-INFO +469 -0
- provide_foundation-0.0.0.dev0/README.md +429 -0
- provide_foundation-0.0.0.dev0/VERSION +1 -0
- provide_foundation-0.0.0.dev0/pyproject.toml +242 -0
- provide_foundation-0.0.0.dev0/setup.cfg +4 -0
- provide_foundation-0.0.0.dev0/src/provide/__init__.py +15 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/__init__.py +155 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/_version.py +58 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/__init__.py +67 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/__init__.py +3 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/deps.py +71 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/logs/__init__.py +63 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/logs/generate.py +357 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/logs/generate_old.py +569 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/logs/query.py +174 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/logs/send.py +166 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/commands/logs/tail.py +112 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/decorators.py +262 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/main.py +65 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/testing.py +220 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/cli/utils.py +210 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/__init__.py +106 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/base.py +295 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/env.py +369 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/loader.py +311 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/manager.py +387 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/schema.py +284 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/sync.py +281 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/types.py +78 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/config/validators.py +80 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/console/__init__.py +29 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/console/input.py +364 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/console/output.py +178 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/context/__init__.py +12 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/context/core.py +356 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/core.py +20 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/__init__.py +182 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/algorithms.py +111 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/certificates.py +896 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/checksums.py +301 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/constants.py +57 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/hashing.py +265 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/keys.py +188 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/signatures.py +144 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/crypto/utils.py +164 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/__init__.py +96 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/auth.py +73 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/base.py +81 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/config.py +103 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/context.py +299 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/decorators.py +484 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/handlers.py +360 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/integration.py +105 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/platform.py +37 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/process.py +140 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/resources.py +133 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/runtime.py +160 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/safe_decorators.py +133 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/errors/types.py +276 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/file/__init__.py +79 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/file/atomic.py +157 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/file/directory.py +134 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/file/formats.py +236 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/file/lock.py +175 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/file/safe.py +179 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/file/utils.py +170 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/__init__.py +88 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/click_builder.py +310 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/commands.py +42 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/components.py +640 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/decorators.py +244 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/info.py +32 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/manager.py +446 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/registry.py +279 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/type_mapping.py +54 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/hub/types.py +28 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/__init__.py +41 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/base.py +22 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/config/__init__.py +16 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/config/base.py +40 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/config/logging.py +394 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/config/telemetry.py +188 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/core.py +239 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/custom_processors.py +172 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/emoji/__init__.py +44 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/emoji/matrix.py +209 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/emoji/sets.py +458 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/emoji/types.py +56 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/factories.py +56 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/processors/__init__.py +13 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/processors/main.py +254 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/processors/trace.py +113 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/ratelimit/__init__.py +31 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/ratelimit/limiters.py +294 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/ratelimit/processor.py +203 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/ratelimit/queue_limiter.py +305 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/setup/__init__.py +29 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/setup/coordinator.py +138 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/setup/emoji_resolver.py +64 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/setup/processors.py +85 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/setup/testing.py +39 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/logger/trace.py +38 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/metrics/__init__.py +119 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/metrics/otel.py +122 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/metrics/simple.py +165 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/__init__.py +53 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/__init__.py +79 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/auth.py +72 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/client.py +307 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/commands.py +357 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/exceptions.py +41 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/formatters.py +298 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/models.py +134 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/otlp.py +320 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/search.py +222 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/observability/openobserve/streaming.py +235 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/platform/__init__.py +44 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/platform/detection.py +193 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/platform/info.py +157 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/process/__init__.py +39 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/process/async_runner.py +373 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/process/lifecycle.py +406 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/process/runner.py +390 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/setup/__init__.py +101 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/streams/__init__.py +44 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/streams/console.py +57 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/streams/core.py +65 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/streams/file.py +104 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/testing/__init__.py +166 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/testing/cli.py +227 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/testing/crypto.py +163 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/testing/fixtures.py +49 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/testing/hub.py +23 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/testing/logger.py +106 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/testing/streams.py +54 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/tracer/__init__.py +49 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/tracer/context.py +115 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/tracer/otel.py +135 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/tracer/spans.py +174 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/types.py +32 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/__init__.py +97 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/deps.py +195 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/env.py +491 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/formatting.py +483 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/parsing.py +235 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/rate_limiting.py +112 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/streams.py +67 -0
- provide_foundation-0.0.0.dev0/src/provide/foundation/utils/timing.py +93 -0
- provide_foundation-0.0.0.dev0/src/provide_foundation.egg-info/PKG-INFO +469 -0
- provide_foundation-0.0.0.dev0/src/provide_foundation.egg-info/SOURCES.txt +158 -0
- provide_foundation-0.0.0.dev0/src/provide_foundation.egg-info/dependency_links.txt +1 -0
- provide_foundation-0.0.0.dev0/src/provide_foundation.egg-info/entry_points.txt +2 -0
- provide_foundation-0.0.0.dev0/src/provide_foundation.egg-info/requires.txt +19 -0
- provide_foundation-0.0.0.dev0/src/provide_foundation.egg-info/top_level.txt +1 -0
- provide_foundation-0.0.0.dev0/tests/test_component_registry.py +882 -0
- provide_foundation-0.0.0.dev0/tests/test_init_coverage.py +288 -0
- provide_foundation-0.0.0.dev0/tests/test_unused_modules.py +45 -0
- provide_foundation-0.0.0.dev0/tests/test_version_coverage.py +296 -0
- provide_foundation-0.0.0.dev0/tests/test_version_simple.py +280 -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 2025 provide.io llc
|
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,469 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: provide-foundation
|
3
|
+
Version: 0.0.0.dev0
|
4
|
+
Summary: Foundation Telemetry: An opinionated, developer-friendly telemetry wrapper for Python.
|
5
|
+
Author-email: Tim Perkins <code@tim.life>
|
6
|
+
Maintainer-email: "provide.io" <code@provide.io>
|
7
|
+
License: Apache-2.0
|
8
|
+
Keywords: telemetry,logging,tracing,python,pyvider
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
17
|
+
Classifier: Topic :: System :: Logging
|
18
|
+
Classifier: Topic :: System :: Monitoring
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
|
+
Classifier: Typing :: Typed
|
21
|
+
Requires-Python: >=3.11
|
22
|
+
Description-Content-Type: text/markdown
|
23
|
+
License-File: LICENSE
|
24
|
+
Requires-Dist: aiofiles>=23.2.1
|
25
|
+
Requires-Dist: attrs>=23.1.0
|
26
|
+
Requires-Dist: structlog>=25.3.0
|
27
|
+
Requires-Dist: tomli_w>=1.0.0
|
28
|
+
Provides-Extra: cli
|
29
|
+
Requires-Dist: click>=8.1.7; extra == "cli"
|
30
|
+
Provides-Extra: crypto
|
31
|
+
Requires-Dist: cryptography>=45.0.7; extra == "crypto"
|
32
|
+
Provides-Extra: opentelemetry
|
33
|
+
Requires-Dist: opentelemetry-api>=1.22.0; extra == "opentelemetry"
|
34
|
+
Requires-Dist: opentelemetry-sdk>=1.22.0; extra == "opentelemetry"
|
35
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc>=1.22.0; extra == "opentelemetry"
|
36
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.22.0; extra == "opentelemetry"
|
37
|
+
Provides-Extra: all
|
38
|
+
Requires-Dist: provide-foundation[cli,crypto,opentelemetry]; extra == "all"
|
39
|
+
Dynamic: license-file
|
40
|
+
|
41
|
+
# provide.foundation
|
42
|
+
|
43
|
+
**A Comprehensive Python Foundation Library for Modern Applications**
|
44
|
+
|
45
|
+
<p align="center">
|
46
|
+
<a href="https://pypi.org/project/provide-foundation/">
|
47
|
+
<img alt="PyPI" src="https://img.shields.io/pypi/v/provide-foundation.svg">
|
48
|
+
</a>
|
49
|
+
<a href="https://github.com/provide-io/provide-foundation/actions/workflows/ci.yml">
|
50
|
+
<img alt="CI Status" src="https://github.com/provide-io/provide-foundation/actions/workflows/ci.yml/badge.svg">
|
51
|
+
</a>
|
52
|
+
<a href="https://codecov.io/gh/provide-io/provide-foundation">
|
53
|
+
<img src="https://codecov.io/gh/provide-io/provide-foundation/branch/main/graph/badge.svg"/>
|
54
|
+
</a>
|
55
|
+
<a href="https://github.com/provide-io/provide-foundation/blob/main/LICENSE">
|
56
|
+
<img alt="License" src="https://img.shields.io/github/license/provide-io/provide-foundation.svg">
|
57
|
+
</a>
|
58
|
+
</p>
|
59
|
+
|
60
|
+
---
|
61
|
+
|
62
|
+
**provide.foundation** is a comprehensive foundation library for Python applications, offering structured logging, CLI utilities, configuration management, error handling, and essential application building blocks. Built with modern Python practices, it provides the core infrastructure that production applications need.
|
63
|
+
|
64
|
+
---
|
65
|
+
|
66
|
+
## Installation
|
67
|
+
|
68
|
+
```bash
|
69
|
+
# Using uv (recommended)
|
70
|
+
uv pip install provide-foundation
|
71
|
+
|
72
|
+
# Using pip
|
73
|
+
pip install provide-foundation
|
74
|
+
```
|
75
|
+
|
76
|
+
### Optional Dependencies
|
77
|
+
|
78
|
+
provide.foundation has optional feature sets that require additional dependencies:
|
79
|
+
|
80
|
+
| Feature | Install Command | Required For |
|
81
|
+
|---------|----------------|--------------|
|
82
|
+
| **Basic logging** | `pip install provide-foundation` | Core logging functionality |
|
83
|
+
| **CLI framework** | `pip install provide-foundation[cli]` | Command-line interface features |
|
84
|
+
| **Cryptography** | `pip install provide-foundation[crypto]` | Hash functions, digital signatures, certificates |
|
85
|
+
| **OpenTelemetry** | `pip install provide-foundation[opentelemetry]` | Distributed tracing and metrics |
|
86
|
+
| **All features** | `pip install provide-foundation[all]` | Everything above |
|
87
|
+
|
88
|
+
> **Quick Start Tip**: For immediate use with just logging, install the base package. Add extras as needed.
|
89
|
+
|
90
|
+
---
|
91
|
+
|
92
|
+
## What's Included
|
93
|
+
|
94
|
+
### Core Components
|
95
|
+
|
96
|
+
#### **Structured Logging**
|
97
|
+
Beautiful, performant logging built on `structlog` with emoji-enhanced visual parsing and zero configuration required.
|
98
|
+
|
99
|
+
```python
|
100
|
+
# Simple usage - works immediately with base install
|
101
|
+
from provide.foundation import logger
|
102
|
+
|
103
|
+
logger.info("Application started", version="1.0.0")
|
104
|
+
logger.error("Database connection failed", host="db.example.com", retry_count=3)
|
105
|
+
|
106
|
+
# Full setup with tracing/metrics (requires [opentelemetry] extra)
|
107
|
+
from provide.foundation import setup_telemetry
|
108
|
+
setup_telemetry() # Configures logging + optional tracing/metrics
|
109
|
+
```
|
110
|
+
|
111
|
+
#### **CLI Framework**
|
112
|
+
Build command-line interfaces with automatic help generation and component registration.
|
113
|
+
|
114
|
+
> **Requires**: `pip install provide-foundation[cli]`
|
115
|
+
|
116
|
+
```python
|
117
|
+
# From examples/12_cli_application.py
|
118
|
+
from provide.foundation.hub import register_command
|
119
|
+
from provide.foundation.cli import echo_success
|
120
|
+
|
121
|
+
@register_command("init", category="project")
|
122
|
+
def init_command(name: str = "myproject", template: str = "default"):
|
123
|
+
"""Initialize a new project."""
|
124
|
+
echo_success(f"Initializing project '{name}' with template '{template}'")
|
125
|
+
```
|
126
|
+
|
127
|
+
#### **Configuration Management**
|
128
|
+
Flexible configuration system supporting environment variables, files, and runtime updates.
|
129
|
+
|
130
|
+
```python
|
131
|
+
# From examples/11_config_management.py
|
132
|
+
from provide.foundation.config import BaseConfig, ConfigManager, field
|
133
|
+
from attrs import define
|
134
|
+
|
135
|
+
@define
|
136
|
+
class AppConfig(BaseConfig):
|
137
|
+
app_name: str = field(default="my-app", description="Application name")
|
138
|
+
port: int = field(default=8080, description="Server port")
|
139
|
+
debug: bool = field(default=False, description="Debug mode")
|
140
|
+
|
141
|
+
manager = ConfigManager()
|
142
|
+
manager.register("app", config=AppConfig())
|
143
|
+
config = manager.get("app")
|
144
|
+
```
|
145
|
+
|
146
|
+
#### **Error Handling**
|
147
|
+
Comprehensive error handling with retry logic and error boundaries.
|
148
|
+
|
149
|
+
```python
|
150
|
+
# From examples/05_exception_handling.py
|
151
|
+
from provide.foundation import logger, with_error_handling
|
152
|
+
|
153
|
+
@with_error_handling
|
154
|
+
def risky_operation():
|
155
|
+
"""Operation that might fail."""
|
156
|
+
result = perform_calculation()
|
157
|
+
logger.info("operation_succeeded", result=result)
|
158
|
+
return result
|
159
|
+
```
|
160
|
+
|
161
|
+
#### **Cryptographic Utilities**
|
162
|
+
Comprehensive cryptographic operations with modern algorithms and secure defaults.
|
163
|
+
|
164
|
+
> **Requires**: `pip install provide-foundation[crypto]`
|
165
|
+
|
166
|
+
```python
|
167
|
+
from provide.foundation.crypto import hash_file, create_self_signed, sign_data
|
168
|
+
|
169
|
+
# File hashing and verification
|
170
|
+
hash_result = hash_file("document.pdf", algorithm="sha256")
|
171
|
+
|
172
|
+
# Digital signatures
|
173
|
+
signature = sign_data(data, private_key, algorithm="ed25519")
|
174
|
+
|
175
|
+
# Certificate generation
|
176
|
+
cert, key = create_self_signed("example.com", key_size=2048)
|
177
|
+
```
|
178
|
+
|
179
|
+
#### **File Operations**
|
180
|
+
Atomic file operations with format support and safety guarantees.
|
181
|
+
|
182
|
+
```python
|
183
|
+
from provide.foundation.file import atomic_write, read_json, safe_copy
|
184
|
+
|
185
|
+
# Atomic file operations
|
186
|
+
atomic_write("config.json", {"key": "value"})
|
187
|
+
data = read_json("config.json")
|
188
|
+
|
189
|
+
# Safe file operations
|
190
|
+
safe_copy("source.txt", "backup.txt")
|
191
|
+
```
|
192
|
+
|
193
|
+
#### **Console I/O**
|
194
|
+
Enhanced console input/output with color support, JSON mode, and interactive prompts.
|
195
|
+
|
196
|
+
```python
|
197
|
+
from provide.foundation import pin, pout, perr
|
198
|
+
|
199
|
+
# Colored output
|
200
|
+
pout("Success!", color="green")
|
201
|
+
perr("Error occurred", color="red")
|
202
|
+
|
203
|
+
# Interactive input
|
204
|
+
name = pin("What's your name?")
|
205
|
+
password = pin("Enter password:", password=True)
|
206
|
+
|
207
|
+
# JSON mode for scripts
|
208
|
+
pout({"status": "ok", "data": results}, json=True)
|
209
|
+
```
|
210
|
+
|
211
|
+
#### **Platform Utilities**
|
212
|
+
Cross-platform detection and system information gathering.
|
213
|
+
|
214
|
+
```python
|
215
|
+
from provide.foundation import platform
|
216
|
+
|
217
|
+
# Platform detection
|
218
|
+
if platform.is_linux():
|
219
|
+
logger.info("Running on Linux")
|
220
|
+
|
221
|
+
system_info = platform.get_system_info()
|
222
|
+
logger.info("System info", **system_info.to_dict())
|
223
|
+
```
|
224
|
+
|
225
|
+
#### **Process Execution**
|
226
|
+
Safe subprocess execution with streaming and async support.
|
227
|
+
|
228
|
+
```python
|
229
|
+
from provide.foundation import process
|
230
|
+
|
231
|
+
# Synchronous execution
|
232
|
+
result = process.run_command(["git", "status"])
|
233
|
+
if result.returncode == 0:
|
234
|
+
logger.info("Git status", output=result.stdout)
|
235
|
+
|
236
|
+
# Streaming output
|
237
|
+
for line in process.stream_command(["tail", "-f", "app.log"]):
|
238
|
+
logger.info("Log line", line=line)
|
239
|
+
```
|
240
|
+
|
241
|
+
#### **Registry Pattern**
|
242
|
+
Flexible registry system for managing components and commands.
|
243
|
+
|
244
|
+
```python
|
245
|
+
# From examples/12_cli_application.py
|
246
|
+
from provide.foundation.hub import Hub
|
247
|
+
|
248
|
+
class DatabaseResource:
|
249
|
+
def __init__(self, name: str) -> None:
|
250
|
+
self.name = name
|
251
|
+
self.connected = False
|
252
|
+
|
253
|
+
def __enter__(self):
|
254
|
+
"""Initialize database connection."""
|
255
|
+
self.connected = True
|
256
|
+
return self
|
257
|
+
|
258
|
+
hub = Hub()
|
259
|
+
hub.add_component(DatabaseResource, name="database", dimension="resource", version="1.0.0")
|
260
|
+
db_class = hub.get_component("database", dimension="resource")
|
261
|
+
```
|
262
|
+
|
263
|
+
See [examples/](examples/) for more comprehensive examples.
|
264
|
+
|
265
|
+
---
|
266
|
+
|
267
|
+
## Quick Start Examples
|
268
|
+
|
269
|
+
### Building a CLI Application
|
270
|
+
|
271
|
+
```python
|
272
|
+
# From examples/12_cli_application.py
|
273
|
+
from provide.foundation.hub import Hub, register_command
|
274
|
+
from provide.foundation.cli import echo_info, echo_success
|
275
|
+
|
276
|
+
@register_command("status", aliases=["st", "info"])
|
277
|
+
def status_command(verbose: bool = False):
|
278
|
+
"""Show system status."""
|
279
|
+
hub = Hub()
|
280
|
+
echo_info(f"Registered components: {len(hub.list_components())}")
|
281
|
+
echo_info(f"Registered commands: {len(hub.list_commands())}")
|
282
|
+
|
283
|
+
if __name__ == "__main__":
|
284
|
+
hub = Hub()
|
285
|
+
cli = hub.create_cli(name="myapp", version="1.0.0")
|
286
|
+
cli()
|
287
|
+
```
|
288
|
+
|
289
|
+
### Configuration-Driven Application
|
290
|
+
|
291
|
+
```python
|
292
|
+
# From examples/11_config_management.py and examples/08_env_variables_config.py
|
293
|
+
from provide.foundation import setup_telemetry, logger
|
294
|
+
from provide.foundation.config import RuntimeConfig, env_field, ConfigManager
|
295
|
+
from attrs import define
|
296
|
+
|
297
|
+
@define
|
298
|
+
class DatabaseConfig(RuntimeConfig):
|
299
|
+
"""Database configuration from environment."""
|
300
|
+
host: str = env_field(default="localhost", env_var="DB_HOST")
|
301
|
+
port: int = env_field(default=5432, env_var="DB_PORT", parser=int)
|
302
|
+
database: str = env_field(default="mydb", env_var="DB_NAME")
|
303
|
+
|
304
|
+
# Setup logging from environment
|
305
|
+
setup_telemetry() # Uses PROVIDE_* env vars automatically
|
306
|
+
|
307
|
+
# Load configuration
|
308
|
+
db_config = DatabaseConfig.from_env()
|
309
|
+
logger.info("Database configured", host=db_config.host, port=db_config.port)
|
310
|
+
```
|
311
|
+
|
312
|
+
### Production Patterns
|
313
|
+
|
314
|
+
```python
|
315
|
+
# From examples/10_production_patterns.py
|
316
|
+
from provide.foundation import logger, error_boundary
|
317
|
+
import asyncio
|
318
|
+
|
319
|
+
class ProductionService:
|
320
|
+
def __init__(self):
|
321
|
+
self.logger = logger.bind(component="production_service")
|
322
|
+
|
323
|
+
async def process_batch(self, items):
|
324
|
+
"""Process items with error boundaries."""
|
325
|
+
results = []
|
326
|
+
for item in items:
|
327
|
+
with error_boundary(self.logger, f"item_{item['id']}"):
|
328
|
+
result = await self.process_item(item)
|
329
|
+
results.append(result)
|
330
|
+
return results
|
331
|
+
```
|
332
|
+
|
333
|
+
---
|
334
|
+
|
335
|
+
## Configuration
|
336
|
+
|
337
|
+
### Environment Variables
|
338
|
+
|
339
|
+
All configuration can be controlled through environment variables:
|
340
|
+
|
341
|
+
| Variable | Description | Default |
|
342
|
+
|----------|-------------|---------|
|
343
|
+
| `PROVIDE_SERVICE_NAME` | Service identifier in logs | `None` |
|
344
|
+
| `PROVIDE_LOG_LEVEL` | Minimum log level | `DEBUG` |
|
345
|
+
| `PROVIDE_LOG_CONSOLE_FORMATTER` | Output format (`key_value` or `json`) | `key_value` |
|
346
|
+
| `PROVIDE_LOG_OMIT_TIMESTAMP` | Remove timestamps from console | `false` |
|
347
|
+
| `PROVIDE_LOG_FILE` | Log to file path | `None` |
|
348
|
+
| `PROVIDE_LOG_MODULE_LEVELS` | Per-module log levels | `""` |
|
349
|
+
| `PROVIDE_CONFIG_PATH` | Configuration file path | `None` |
|
350
|
+
| `PROVIDE_ENV` | Environment (dev/staging/prod) | `dev` |
|
351
|
+
| `PROVIDE_DEBUG` | Enable debug mode | `false` |
|
352
|
+
| `PROVIDE_JSON_OUTPUT` | Force JSON output | `false` |
|
353
|
+
| `PROVIDE_NO_COLOR` | Disable colored output | `false` |
|
354
|
+
|
355
|
+
### Configuration Files
|
356
|
+
|
357
|
+
Support for YAML, JSON, TOML, and .env files:
|
358
|
+
|
359
|
+
```yaml
|
360
|
+
# config.yaml
|
361
|
+
service_name: my-app
|
362
|
+
environment: production
|
363
|
+
|
364
|
+
logging:
|
365
|
+
level: INFO
|
366
|
+
formatter: json
|
367
|
+
file: /var/log/myapp.log
|
368
|
+
|
369
|
+
database:
|
370
|
+
host: db.example.com
|
371
|
+
port: 5432
|
372
|
+
pool_size: 20
|
373
|
+
```
|
374
|
+
|
375
|
+
---
|
376
|
+
|
377
|
+
## Advanced Features
|
378
|
+
|
379
|
+
### Contextual Logging
|
380
|
+
|
381
|
+
```python
|
382
|
+
# From examples/06_trace_logging.py
|
383
|
+
from provide.foundation import logger
|
384
|
+
|
385
|
+
# Add context via structured fields
|
386
|
+
logger.info("request_processing",
|
387
|
+
request_id="req-123",
|
388
|
+
user_id="user-456",
|
389
|
+
method="GET",
|
390
|
+
path="/api/users")
|
391
|
+
```
|
392
|
+
|
393
|
+
### Timing and Profiling
|
394
|
+
|
395
|
+
```python
|
396
|
+
from provide.foundation import timed_block
|
397
|
+
|
398
|
+
with timed_block(logger, "database_query"):
|
399
|
+
results = db.query("SELECT * FROM users")
|
400
|
+
# Automatically logs: "database_query completed duration_seconds=0.123"
|
401
|
+
```
|
402
|
+
|
403
|
+
### Async Support
|
404
|
+
|
405
|
+
```python
|
406
|
+
import asyncio
|
407
|
+
from provide.foundation import logger, process
|
408
|
+
|
409
|
+
async def process_items(items):
|
410
|
+
for item in items:
|
411
|
+
logger.info("Processing", item_id=item.id)
|
412
|
+
await process_item(item)
|
413
|
+
|
414
|
+
# Async process execution
|
415
|
+
result = await process.async_run_command(["curl", "-s", "api.example.com"])
|
416
|
+
logger.info("API response", status=result.returncode)
|
417
|
+
|
418
|
+
# Thread-safe and async-safe logging
|
419
|
+
asyncio.run(process_items(items))
|
420
|
+
```
|
421
|
+
|
422
|
+
### Example Files
|
423
|
+
|
424
|
+
Complete working examples are available in the [examples/](examples/) directory:
|
425
|
+
|
426
|
+
- `00_simple_start.py` - Zero-setup logging (base install)
|
427
|
+
- `01_quick_start.py` - Full telemetry setup (requires [opentelemetry])
|
428
|
+
- `02_custom_configuration.py` - Custom telemetry configuration
|
429
|
+
- `03_named_loggers.py` - Module-specific loggers
|
430
|
+
- `04_das_logging.py` - Domain-Action-Status pattern
|
431
|
+
- `05_exception_handling.py` - Error handling patterns
|
432
|
+
- `06_trace_logging.py` - Distributed tracing
|
433
|
+
- `07_module_filtering.py` - Log filtering by module
|
434
|
+
- `08_env_variables_config.py` - Environment-based config
|
435
|
+
- `09_async_usage.py` - Async logging patterns
|
436
|
+
- `10_production_patterns.py` - Production best practices
|
437
|
+
- `11_config_management.py` - Complete configuration system
|
438
|
+
- `12_cli_application.py` - Full CLI application example
|
439
|
+
|
440
|
+
---
|
441
|
+
|
442
|
+
## Performance
|
443
|
+
|
444
|
+
- **Logging**: 14,000+ messages/second with emoji processing and structured logging
|
445
|
+
- **Configuration**: Lazy loading with multi-source caching for optimal performance
|
446
|
+
- **File Operations**: Atomic writes with format detection prevent corruption
|
447
|
+
- **Process Management**: Efficient streaming with async support and backpressure handling
|
448
|
+
- **Cryptography**: Hardware-accelerated operations with secure algorithm defaults
|
449
|
+
- **Platform Detection**: Cached system information for minimal overhead
|
450
|
+
|
451
|
+
---
|
452
|
+
|
453
|
+
## Contributing
|
454
|
+
|
455
|
+
We welcome contributions! Please see:
|
456
|
+
- [DEVELOPMENT.md](DEVELOPMENT.md) - Development setup and guidelines
|
457
|
+
- [GitHub Issues](https://github.com/provide-io/provide-foundation/issues) - Bug reports and feature requests
|
458
|
+
|
459
|
+
---
|
460
|
+
|
461
|
+
## License
|
462
|
+
|
463
|
+
MIT License - see [LICENSE](LICENSE) file for details.
|
464
|
+
|
465
|
+
---
|
466
|
+
|
467
|
+
<p align="center">
|
468
|
+
Built by <a href="https://provide.io">Provide</a>
|
469
|
+
</p>
|