From 12cf076118570eebbff08c6b3090e0d4798447a1 Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Wed, 3 Apr 2024 03:17:55 -0400 Subject: no venv --- .../msgspec-0.18.6.dist-info/METADATA | 181 --------------------- 1 file changed, 181 deletions(-) delete mode 100644 venv/lib/python3.11/site-packages/msgspec-0.18.6.dist-info/METADATA (limited to 'venv/lib/python3.11/site-packages/msgspec-0.18.6.dist-info/METADATA') diff --git a/venv/lib/python3.11/site-packages/msgspec-0.18.6.dist-info/METADATA b/venv/lib/python3.11/site-packages/msgspec-0.18.6.dist-info/METADATA deleted file mode 100644 index 00ddf38..0000000 --- a/venv/lib/python3.11/site-packages/msgspec-0.18.6.dist-info/METADATA +++ /dev/null @@ -1,181 +0,0 @@ -Metadata-Version: 2.1 -Name: msgspec -Version: 0.18.6 -Summary: A fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML. -Home-page: https://jcristharif.com/msgspec/ -Maintainer: Jim Crist-Harif -Maintainer-email: jcristharif@gmail.com -License: BSD -Project-URL: Documentation, https://jcristharif.com/msgspec/ -Project-URL: Source, https://github.com/jcrist/msgspec/ -Project-URL: Issue Tracker, https://github.com/jcrist/msgspec/issues -Keywords: JSON msgpack MessagePack TOML YAML serialization validation schema -Classifier: License :: OSI Approved :: BSD License -Classifier: Development Status :: 4 - Beta -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 -Requires-Python: >=3.8 -Description-Content-Type: text/markdown -License-File: LICENSE -Provides-Extra: dev -Requires-Dist: pre-commit ; extra == 'dev' -Requires-Dist: coverage ; extra == 'dev' -Requires-Dist: gcovr ; extra == 'dev' -Requires-Dist: sphinx ; extra == 'dev' -Requires-Dist: furo ; extra == 'dev' -Requires-Dist: sphinx-copybutton ; extra == 'dev' -Requires-Dist: sphinx-design ; extra == 'dev' -Requires-Dist: ipython ; extra == 'dev' -Requires-Dist: pytest ; extra == 'dev' -Requires-Dist: mypy ; extra == 'dev' -Requires-Dist: pyright ; extra == 'dev' -Requires-Dist: msgpack ; extra == 'dev' -Requires-Dist: attrs ; extra == 'dev' -Requires-Dist: pyyaml ; extra == 'dev' -Requires-Dist: tomli-w ; extra == 'dev' -Requires-Dist: tomli ; (python_version < "3.11") and extra == 'dev' -Provides-Extra: doc -Requires-Dist: sphinx ; extra == 'doc' -Requires-Dist: furo ; extra == 'doc' -Requires-Dist: sphinx-copybutton ; extra == 'doc' -Requires-Dist: sphinx-design ; extra == 'doc' -Requires-Dist: ipython ; extra == 'doc' -Provides-Extra: test -Requires-Dist: pytest ; extra == 'test' -Requires-Dist: mypy ; extra == 'test' -Requires-Dist: pyright ; extra == 'test' -Requires-Dist: msgpack ; extra == 'test' -Requires-Dist: attrs ; extra == 'test' -Requires-Dist: pyyaml ; extra == 'test' -Requires-Dist: tomli-w ; extra == 'test' -Requires-Dist: tomli ; (python_version < "3.11") and extra == 'test' -Provides-Extra: toml -Requires-Dist: tomli-w ; extra == 'toml' -Requires-Dist: tomli ; (python_version < "3.11") and extra == 'toml' -Provides-Extra: yaml -Requires-Dist: pyyaml ; extra == 'yaml' - -

- - msgspec - -

- -

- - - - - - - - - - - - - - - - - - -

- - -`msgspec` is a *fast* serialization and validation library, with builtin -support for [JSON](https://json.org), [MessagePack](https://msgpack.org), -[YAML](https://yaml.org), and [TOML](https://toml.io). It features: - -- 🚀 **High performance encoders/decoders** for common protocols. The JSON and - MessagePack implementations regularly - [benchmark](https://jcristharif.com/msgspec/benchmarks.html) as the fastest - options for Python. - -- 🎉 **Support for a wide variety of Python types**. Additional types may be - supported through - [extensions](https://jcristharif.com/msgspec/extending.html). - -- 🔍 **Zero-cost schema validation** using familiar Python type annotations. In - [benchmarks](https://jcristharif.com/msgspec/benchmarks.html) `msgspec` - decodes *and* validates JSON faster than - [orjson](https://github.com/ijl/orjson) can decode it alone. - -- ✨ **A speedy Struct type** for representing structured data. If you already - use [dataclasses](https://docs.python.org/3/library/dataclasses.html) or - [attrs](https://www.attrs.org), - [structs](https://jcristharif.com/msgspec/structs.html) should feel familiar. - However, they're - [5-60x faster](https://jcristharif.com/msgspec/benchmarks.html#benchmark-structs>) - for common operations. - -All of this is included in a -[lightweight library](https://jcristharif.com/msgspec/benchmarks.html#benchmark-library-size) -with no required dependencies. - ---- - -`msgspec` may be used for serialization alone, as a faster JSON or -MessagePack library. For the greatest benefit though, we recommend using -`msgspec` to handle the full serialization & validation workflow: - -**Define** your message schemas using standard Python type annotations. - -```python ->>> import msgspec - ->>> class User(msgspec.Struct): -... """A new type describing a User""" -... name: str -... groups: set[str] = set() -... email: str | None = None -``` - -**Encode** messages as JSON, or one of the many other supported protocols. - -```python ->>> alice = User("alice", groups={"admin", "engineering"}) - ->>> alice -User(name='alice', groups={"admin", "engineering"}, email=None) - ->>> msg = msgspec.json.encode(alice) - ->>> msg -b'{"name":"alice","groups":["admin","engineering"],"email":null}' -``` - -**Decode** messages back into Python objects, with optional schema validation. - -```python ->>> msgspec.json.decode(msg, type=User) -User(name='alice', groups={"admin", "engineering"}, email=None) - ->>> msgspec.json.decode(b'{"name":"bob","groups":[123]}', type=User) -Traceback (most recent call last): - File "", line 1, in -msgspec.ValidationError: Expected `str`, got `int` - at `$.groups[0]` -``` - -`msgspec` is designed to be as performant as possible, while retaining some of -the nicities of validation libraries like -[pydantic](https://pydantic-docs.helpmanual.io/). For supported types, -encoding/decoding a message with `msgspec` can be -[~10-80x faster than alternative libraries](https://jcristharif.com/msgspec/benchmarks.html). - -

- - - -

- -See [the documentation](https://jcristharif.com/msgspec/) for more information. - - -## LICENSE - -New BSD. See the -[License File](https://github.com/jcrist/msgspec/blob/main/LICENSE). -- cgit v1.2.3