Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
coreschema / __init__.py
Size: Mime:
from coreschema.schemas import (
    Object, Array, Integer, Number, String, Boolean, Null,
    Enum, Anything, Ref, RefSpace,
    Union, Intersection, ExclusiveUnion, Not
)
from coreschema.encodings.html import render_to_form


__version__ = '0.0.4'

__all__ = [
    Object, Array, Integer, Number, String, Boolean, Null,
    Enum, Anything, Ref, RefSpace,
    Union, Intersection, ExclusiveUnion, Not,
    render_to_form
]