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    
faust-streaming / faust / models / __init__.py
Size: Mime:
"""Models."""
from .base import Model, ModelOptions, maybe_model, registry
from .fields import FieldDescriptor, StringField
from .record import Record

__all__ = [
    "FieldDescriptor",
    "Model",
    "ModelOptions",
    "Record",
    "StringField",
    "maybe_model",
    "registry",
]