jsonschema2popo
jsonschema2popo copied to clipboard
Converts a JSON Schema to a Plain Old Python Object class
NetworkX no longer supports a `reverse` option for `topological_sort`. SO lists the replacement as: list(reversed(list(topological_sort(x))) Making that replacement fixed things for me.
When I ran the attached file through `jsonschema2popo` it did not produce any enumerations, even though there are several in the Schema. Looks like perhaps the `enum` property is not...
Bumps [jinja2](https://github.com/pallets/jinja) from 2.10 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...
Hi. This project looks fresh but just what I need. I was going to do the same but created a SO question first and this was linked. Is there anything...
# Since I haven't seen the author commit or reply to anything here since before October 2018, I have forked the project with several added features and future support. See...
didn't work on the first try. did some code changes but i'm new to python so i cannot estimate the impact on the project: line 60 changed : for model_name...
Hello, Some of my enum values are like so "\_whatever_", which is not supported by enum.Enum. See https://docs.python.org/3.6/library/enum.html#allowed-members-and-attributes-of-enumerations > The rules for what is allowed are as follows: names that...
This proposed change will make sure that the parameters of the \_\_init__ of a class respects the order of the definitions in the schema.
When an object has no property, the produced \_\_init__ for the class is empty. This fix add "pass" in that case so that the produced python code is correct.
…ween 2 runs on the same schema The topological sort of the model dependency graph is not stable. By setting the nbunch parameter it is "more" stable. It is useful...