This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,148 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: structlog
|
||||
Version: 25.4.0
|
||||
Summary: Structured Logging for Python
|
||||
Project-URL: Documentation, https://www.structlog.org/
|
||||
Project-URL: Changelog, https://github.com/hynek/structlog/blob/main/CHANGELOG.md
|
||||
Project-URL: GitHub, https://github.com/hynek/structlog
|
||||
Project-URL: Funding, https://github.com/sponsors/hynek
|
||||
Project-URL: Tidelift, https://tidelift.com?utm_source=lifter&utm_medium=referral&utm_campaign=hynek
|
||||
Project-URL: Mastodon, https://mastodon.social/@hynek
|
||||
Project-URL: Bluesky, https://bsky.app/profile/hynek.me
|
||||
Project-URL: Twitter, https://twitter.com/hynek
|
||||
Author-email: Hynek Schlawack <hs@ox.cx>
|
||||
License-Expression: MIT OR Apache-2.0
|
||||
License-File: LICENSE-APACHE
|
||||
License-File: LICENSE-MIT
|
||||
License-File: NOTICE
|
||||
Keywords: log,logging,structure,structured
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: License :: OSI Approved :: Apache Software License
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Programming Language :: Python :: 3.14
|
||||
Classifier: Topic :: System :: Logging
|
||||
Classifier: Typing :: Typed
|
||||
Requires-Python: >=3.8
|
||||
Requires-Dist: typing-extensions; python_version < '3.11'
|
||||
Description-Content-Type: text/markdown
|
||||
|
||||
<p align="center">
|
||||
<img
|
||||
src="https://www.structlog.org/en/stable/_static/structlog_logo_small.png"
|
||||
alt="structlog mascot"
|
||||
/>
|
||||
</p>
|
||||
|
||||
*structlog* is *the* production-ready logging solution for Python:
|
||||
|
||||
- **Simple**: Everything is about **functions** that take and return **dictionaries** – all hidden behind **familiar APIs**.
|
||||
- **Powerful**: Functions and dictionaries aren’t just simple but also powerful.
|
||||
*structlog* leaves *you* in control.
|
||||
- **Fast**: *structlog* is not hamstrung by designs of yore.
|
||||
Its flexibility comes not at the price of performance.
|
||||
|
||||
Thanks to its flexible design, *you* choose whether you want *structlog* to take care of the **output** of your log entries or whether you prefer to **forward** them to an existing logging system like the standard library's `logging` module.
|
||||
|
||||
The output format is just as flexible and *structlog* comes with support for JSON, [*logfmt*](https://brandur.org/logfmt), as well as pretty console output out-of-the-box:
|
||||
|
||||
[](https://github.com/hynek/structlog/blob/main/docs/_static/console_renderer.png?raw=true)
|
||||
|
||||
|
||||
## Sponsors
|
||||
|
||||
*structlog* would not be possible without our [amazing sponsors](https://github.com/sponsors/hynek).
|
||||
Especially those generously supporting us at the *The Organization* tier and higher:
|
||||
|
||||
<!-- pause-short -->
|
||||
|
||||
<p align="center">
|
||||
|
||||
<!-- [[[cog
|
||||
import pathlib, tomllib
|
||||
|
||||
for sponsor in tomllib.loads(pathlib.Path("pyproject.toml").read_text())["tool"]["sponcon"]["sponsors"]:
|
||||
print(f'<a href="{sponsor["url"]}"><img title="{sponsor["title"]}" src="https://www.structlog.org/en/25.4.0/_static/sponsors/{sponsor["img"]}" width="190" /></a>')
|
||||
]]] -->
|
||||
<a href="https://www.variomedia.de/"><img title="Variomedia AG" src="https://www.structlog.org/en/25.4.0/_static/sponsors/Variomedia.svg" width="190" /></a>
|
||||
<a href="https://tidelift.com/?utm_source=lifter&utm_medium=referral&utm_campaign=hynek"><img title="Tidelift" src="https://www.structlog.org/en/25.4.0/_static/sponsors/Tidelift.svg" width="190" /></a>
|
||||
<a href="https://klaviyo.com/"><img title="Klaviyo" src="https://www.structlog.org/en/25.4.0/_static/sponsors/Klaviyo.svg" width="190" /></a>
|
||||
<a href="https://privacy-solutions.org/"><img title="Privacy Solutions" src="https://www.structlog.org/en/25.4.0/_static/sponsors/Privacy-Solutions.svg" width="190" /></a>
|
||||
<a href="https://www.emsys-renewables.com/"><img title="emsys renewables" src="https://www.structlog.org/en/25.4.0/_static/sponsors/emsys-renewables.svg" width="190" /></a>
|
||||
<a href="https://filepreviews.io/"><img title="FilePreviews" src="https://www.structlog.org/en/25.4.0/_static/sponsors/FilePreviews.svg" width="190" /></a>
|
||||
<a href="https://polar.sh/"><img title="Polar" src="https://www.structlog.org/en/25.4.0/_static/sponsors/Polar.svg" width="190" /></a>
|
||||
<!-- [[[end]]] -->
|
||||
|
||||
</p>
|
||||
|
||||
<!-- continue-short -->
|
||||
|
||||
<p align="center">
|
||||
<strong>Please consider <a href="https://github.com/sponsors/hynek">joining them</a> to help make <em>structlog</em>’s maintenance more sustainable!</strong>
|
||||
</p>
|
||||
|
||||
## Introduction
|
||||
|
||||
*structlog* has been successfully used in production at every scale since **2013**, while embracing cutting-edge technologies like *asyncio*, context variables, or type hints as they emerged.
|
||||
Its paradigms proved influential enough to [help design](https://twitter.com/sirupsen/status/638330548361019392) structured logging [packages across ecosystems](https://github.com/sirupsen/logrus).
|
||||
|
||||
## Project Links
|
||||
|
||||
- [**Get Help**](https://stackoverflow.com/questions/tagged/structlog) (use the *structlog* tag on Stack Overflow)
|
||||
- [**PyPI**](https://pypi.org/project/structlog/)
|
||||
- [**GitHub**](https://github.com/hynek/structlog)
|
||||
- [**Documentation**](https://www.structlog.org/)
|
||||
- [**Changelog**](https://github.com/hynek/structlog/tree/main/CHANGELOG.md)
|
||||
- [**Third-party Extensions**](https://github.com/hynek/structlog/wiki/Third-party-Extensions)
|
||||
|
||||
|
||||
## *structlog* for Enterprise
|
||||
|
||||
Available as part of the [Tidelift Subscription](https://tidelift.com/?utm_source=lifter&utm_medium=referral&utm_campaign=hynek).
|
||||
|
||||
The maintainers of *structlog* and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications.
|
||||
Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.
|
||||
|
||||
|
||||
## Release Information
|
||||
|
||||
### Added
|
||||
|
||||
- Support for Python 3.14 and Python 3.13.4.
|
||||
|
||||
Python 3.14 has an backwards-incompatible change to `logging.Logger.isEnabledFor()` (it now always returns False if a log entry is in flight) that has been backported to 3.13.4 (expected on 2025-06-03).
|
||||
It mainly affects `structlog.stdlib.filter_by_level()`.
|
||||
[#723](https://github.com/hynek/structlog/pull/723)
|
||||
|
||||
- `structlog.tracebacks` now handles [exception groups](https://docs.python.org/3/library/exceptions.html#exception-groups).
|
||||
`structlog.tracebacks.Stack` has two new fields, `is_group: bool` and `exceptions: list[Trace]`.
|
||||
This works similarly to what Rich v14.0.0 does.
|
||||
[#720](https://github.com/hynek/structlog/pull/720)
|
||||
|
||||
|
||||
### Fixed
|
||||
|
||||
- `structlog.processors.ExceptionPrettyPrinter` now respects the *exception_formatter* arguments instead of always using the default formatter.
|
||||
[#724](https://github.com/hynek/structlog/pull/724)
|
||||
|
||||
|
||||
---
|
||||
|
||||
[Full Changelog →](https://www.structlog.org/en/stable/changelog.html)
|
||||
|
||||
|
||||
## Credits
|
||||
|
||||
*structlog* is written and maintained by [Hynek Schlawack](https://hynek.me/).
|
||||
The idea of bound loggers is inspired by previous work by [Jean-Paul Calderone](https://github.com/exarkun) and [David Reid](https://github.com/dreid).
|
||||
|
||||
The development is kindly supported by my employer [Variomedia AG](https://www.variomedia.de/), *structlog*’s [Tidelift subscribers](https://tidelift.com/?utm_source=lifter&utm_medium=referral&utm_campaign=hynek), and all my amazing [GitHub Sponsors](https://github.com/sponsors/hynek).
|
||||
|
||||
The logs-loving beaver logo has been contributed by [Lynn Root](https://www.roguelynn.com).
|
||||
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
structlog-25.4.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
structlog-25.4.0.dist-info/METADATA,sha256=VA475oaBSjyGIQQkIXOPiPn0K3K6gdUG9gcFuXDZHmk,7636
|
||||
structlog-25.4.0.dist-info/RECORD,,
|
||||
structlog-25.4.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
structlog-25.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
||||
structlog-25.4.0.dist-info/licenses/LICENSE-APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
||||
structlog-25.4.0.dist-info/licenses/LICENSE-MIT,sha256=K8EruU7sLM6iEdrrt2MjW-wxaSdhl6e-H4WJY9sxxd0,1113
|
||||
structlog-25.4.0.dist-info/licenses/NOTICE,sha256=J0pxrgZCdahzePKpOtLPNRspKfAW4oCjP8PINqPw-Ew,72
|
||||
structlog/__init__.py,sha256=s6OxO8GhwzijJv6a6wtENPbVo-VvKbQDpztNIj76oJI,2911
|
||||
structlog/__pycache__/__init__.cpython-312.pyc,,
|
||||
structlog/__pycache__/_base.cpython-312.pyc,,
|
||||
structlog/__pycache__/_config.cpython-312.pyc,,
|
||||
structlog/__pycache__/_frames.cpython-312.pyc,,
|
||||
structlog/__pycache__/_generic.cpython-312.pyc,,
|
||||
structlog/__pycache__/_greenlets.cpython-312.pyc,,
|
||||
structlog/__pycache__/_log_levels.cpython-312.pyc,,
|
||||
structlog/__pycache__/_native.cpython-312.pyc,,
|
||||
structlog/__pycache__/_output.cpython-312.pyc,,
|
||||
structlog/__pycache__/_utils.cpython-312.pyc,,
|
||||
structlog/__pycache__/contextvars.cpython-312.pyc,,
|
||||
structlog/__pycache__/dev.cpython-312.pyc,,
|
||||
structlog/__pycache__/exceptions.cpython-312.pyc,,
|
||||
structlog/__pycache__/processors.cpython-312.pyc,,
|
||||
structlog/__pycache__/stdlib.cpython-312.pyc,,
|
||||
structlog/__pycache__/testing.cpython-312.pyc,,
|
||||
structlog/__pycache__/threadlocal.cpython-312.pyc,,
|
||||
structlog/__pycache__/tracebacks.cpython-312.pyc,,
|
||||
structlog/__pycache__/twisted.cpython-312.pyc,,
|
||||
structlog/__pycache__/types.cpython-312.pyc,,
|
||||
structlog/__pycache__/typing.cpython-312.pyc,,
|
||||
structlog/_base.py,sha256=2FBUGsjGxqsLV00bnYbSEpaull8fIMC-a1AL6IZE2oY,7337
|
||||
structlog/_config.py,sha256=-_4nwDAT49VBNuzYKkMKuuTekym8C1zdjKoXsy_0lgU,13893
|
||||
structlog/_frames.py,sha256=asEZExAffAqlTQCIYhaT1MAuBqK2FtpmjL3u6zJNxSU,2060
|
||||
structlog/_generic.py,sha256=bUo-j6DREPSUmx6qC2m_EBdqeGE0u9sSDx7h637eQq8,1636
|
||||
structlog/_greenlets.py,sha256=uqXVXXDxBQIB342RsOFA4y-I4_jJtrkBtfV2LwKLoII,1206
|
||||
structlog/_log_levels.py,sha256=mlxIlL4GB7J5Pxgd0YYfH1DljxPIk_e6bzULWSTf2pc,1973
|
||||
structlog/_native.py,sha256=y7G8WK7ADxc-Q3h6-KEs6mCzQNAXJPsFEZJ7IPH5ZPc,8154
|
||||
structlog/_output.py,sha256=AMF-OuIFA5uFSHhcsYwPyl0EDK47PVQYxxn9nPLM2xs,9115
|
||||
structlog/_utils.py,sha256=xaGDgH2DL9UBfQglAmvHKlI6MnHsuWk19Ns_4vbYXbs,933
|
||||
structlog/contextvars.py,sha256=Omk3Q0xmr7tzHq0rXE8giUk5Pjg0chx2PMaDXvwdo3I,5371
|
||||
structlog/dev.py,sha256=UxXqaEXe3qHDOckds9KuynpJ973lTpcsjg5IvUUWUqs,24080
|
||||
structlog/exceptions.py,sha256=PC6HKMOUqRNDoGaS6C8s1LO6zkFOWe5oW6A2RIn7SaE,503
|
||||
structlog/processors.py,sha256=zeVOSwyIJg6loxiwKVPGKLdKDL4b_Cqugoe1Dhc7fRQ,29744
|
||||
structlog/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
structlog/stdlib.py,sha256=r_G_JgcnbbHqWqV3Htva8l9ThuKmMff5aQQgUyVK7Fs,40243
|
||||
structlog/testing.py,sha256=rT1gXke6IXFziKv4qH6Ai-QPOIMily_k1d7dayNxUeQ,5411
|
||||
structlog/threadlocal.py,sha256=HKaas6U3_WtZyNrxD-WmJOx1mLoiCciO2z28Xc6Pmfo,9163
|
||||
structlog/tracebacks.py,sha256=r8Xj3uSbv_WAMDgCMQ6z3zieyuWuWLu9MXepcWO12h0,16250
|
||||
structlog/twisted.py,sha256=DjoUu0QDzJecxgRWq_lZHGIDMjeCsTBLHWA0WAo8eVw,10091
|
||||
structlog/types.py,sha256=u8JD9KZ70IwxHjV2cWR-NBHKtYrRt7luItQEFL3hOd0,764
|
||||
structlog/typing.py,sha256=dzSI5PgxdXgOzxqO5KIaYwiFtC78vKLCLysAMikKIeE,8375
|
||||
@@ -0,0 +1,4 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: hatchling 1.27.0
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
@@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2013 Hynek Schlawack and the structlog contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -0,0 +1,2 @@
|
||||
structlog
|
||||
Copyright 2013 Hynek Schlawack and the structlog contributors
|
||||
Reference in New Issue
Block a user