Conversation
Adds a method for dynamically defining new struct types. This is helpful for situations where types aren't known until runtime, but you still want to provide type validation when encoding/decoding.
Recent mypy upgrade broke the CI setup.
Member
Author
|
One use of this is for dynamically defining a type used exclusively for extracting a few known fields from a larger structure. In code where the necessary fields are static, a classic struct definition would suffice. But for code where the fields aren't known until runtime, For example, here's a small script that parses and queries the current from operator import attrgetter
import msgspec
def top10_packages(sort_field):
# Dynamically define a new type with only the required fields
Package = msgspec.defstruct("Package", ["name", sort_field])
RepoData = msgspec.defstruct("RepoData", [("packages", dict[str, Package])])
# Load and parse the data into this new type
with open("current_repodata.json", "rb") as f:
repo_data = msgspec.json.decode(f.read(), type=RepoData)
# Sort by the designated field
packages = list(repo_data.packages.values())
getter = attrgetter(sort_field)
packages.sort(key=getter, reverse=True)
# Return the results
return [(p.name, getter(p)) for p in packages[:10]]
for name, size in top10_packages("size"):
print(f"- {name}: {size / (2 ** 20):.2f} MiB")Results: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a method for dynamically defining new struct types. This is helpful
for situations where types aren't known until runtime, but you still
want to provide type validation when encoding/decoding.