All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.comect.misc.dataschema.languages.python.settings.json Maven / Gradle / Ivy

Go to download

Library for transforming data files into data class-equivalents in various languages

The newest version!
{
  "name": "python",
  "extension": "py",

  "nullable_prefix": "typing.Optional[",
  "nullable_suffix": "]",

  "types": {
	"String": "str",
	"Int": "int",
	"Long": "int",
	"Float": "float",
	"Double": "float",
	"Boolean": "bool",

	"ImmutableList": "list[$1]",
	"ImmutableMap": "dict[$1, $2]",
	"ImmutableSet": "set[$1]",

	"MutableList": "list[$1]",
	"MutableMap": "dict[$1, $2]",
	"MutableSet": "set[$1]"
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy