Giter Site home page Giter Site logo

Comments (4)

dcczi avatar dcczi commented on May 18, 2024 4

For those of you who found your way to this issue when attempting to structure self-referential types, here is a demonstration of how to make it work:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from typing import List, Optional, ForwardRef

import attr
from cattr import structure, unstructure, register_structure_hook


@attr.s
class Subattr(object):
    a: int = attr.ib()


@attr.s
class Node(object):
    value: int = attr.ib()
    subattr: Optional[Subattr] = attr.ib(default=None)
    children: List['Node'] = attr.ib(default=[])


def main():
    child_with_attr_field = Node(value=1, children=[Node(value=2, subattr=Subattr(a=2))])
    print(child_with_attr_field)
    print(unstructure(child_with_attr_field))
    print(structure(unstructure(child_with_attr_field), Node))


register_structure_hook(
    ForwardRef("Node"), lambda d, t: structure(d, Node),
)

Notably, if you use the structure hook from the sample code in the issue description:

register_structure_hook(
    ForwardRef("Node"), lambda d, t: Node(**d),  # wrong
)

... then attributes that are themselves attr types will not structure as their attr classes.

Edited: The previous incorrect comment has been replaced with a useful one.

from cattrs.

Tinche avatar Tinche commented on May 18, 2024

Hi! Thanks for the detailed write up. I'll brood on this and get back to you.

from cattrs.

johnwlockwood avatar johnwlockwood commented on May 18, 2024

This script demos the issue:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from typing import List, Optional
from cattr import structure, unstructure
import attr


@attr.s
class Node(object):
    value: int = attr.ib()
    children: Optional[List['Node']] = attr.ib(default=None)


def main():
    g = {
        'value': 1,
        'children': [
            {'value': 3},
            {'value': 4, 'children': [{'value':44}]},
            {'value': 5, 'children': [{'value':55}]}
        ]
    }
    n = structure(g, Node)
    print(n)


if __name__ == "__main__":
    main()

from cattrs.

Tinche avatar Tinche commented on May 18, 2024

Apart from this issue being almost 6 years old, this actually works out of the box nowadays!

from __future__ import annotations

from attrs import Factory, define

from cattrs import structure, unstructure


@define
class Subattr:
    a: int


@define
class Node:
    value: int
    subattr: Subattr | None = None
    children: list[Node] = Factory(list)


child_with_attr_field = Node(value=1, children=[Node(value=2, subattr=Subattr(a=2))])
print(child_with_attr_field)
print(unstructure(child_with_attr_field))
print(structure(unstructure(child_with_attr_field), Node))

Also super cool to see how attrs, cattrs and Python typing in general have come a long way!

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.