GithubHelp home page GithubHelp logo

Comments (2)

Tinche avatar Tinche commented on June 9, 2024

Howdy!

You're right, the structure hook for lists (and sequences, mutablesequences, homogenous tuples) is very simple; you can see it here. In the case of no detailed validation, it boils down to a single list comprehension. This is for a comple of reasons:

  • performance
  • if we were to check, it's a little unclear what to check for. A certain JSON library might be guaranteed to return only lists, but we support a wide variety of formats and libraries

Also the docs don't list Iterable as something that gets structured to a list

We don't actually check if the input type is an iterable. We just iterate over it. But I get your point.

is there a way to make it more strict

This is a very good question. In my mind the core job of cattrs is for this to be easy to do.

Here's how you would do this today (let's say you decide to perform an additional validation step with an isinstance against a Sequence):

from collections.abc import Sequence

from cattrs import Converter
from cattrs._compat import is_sequence

c = Converter()


def seq_hook(val, type):
    if not isinstance(val, Sequence):
        raise ValueError(f"Not a {type}")
    return c._structure_list(val, type)


c.register_structure_hook_func(is_sequence, seq_hook)

c.structure({}, list[int])

This will be composable: it will affect all lists. That said it kinda sucks.

  • The predicate in an internal module (cattrs._compat) for historical reasons. It'd be better if it was in a public place.
  • The structure hook is, again, a private method. It's pretty old and hasn't gotten modernized since it was "good enough". It'd be better if it was a hook factory and documented.
  • There's no documentation for it. It'd be better if there was a note about this in the docs.

These are all pretty easy fixes and will make the library materially better, so I'm going to assign this issue to the next release to ensure these get done.

from cattrs.

fjarri avatar fjarri commented on June 9, 2024

Thank you for a detailed response! It may also be worth noting in the docs that all Iterables and not just Sequences are structured into lists by default.

from cattrs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.